[FFmpeg-devel] #7107 [PATCH] Fix seeking beyond file duration by returning an error when metadata is incorrect

2025-03-01 Thread Haris
Hi, If we try to extract audio from an .mp3 file starting from a point that is beyond its total duration with command: *./ffmpeg -ss 600 -i eye.mp3 -c:a libopus output.opus* We should hit this if statement in libavformat/seek.c: if (min_ts > ts || max_ts < ts) return -1; But if the file's metada

[FFmpeg-devel] Q: QSV filters (state of implementation)

2017-02-21 Thread Haris Zukanovic
able to support a scenario for multiple quality encoding where, for example, when producing 3 qualities I would: 1. decode + deinterlace once + split into 3 2. resize 3 times (each split) 3. encode 3 times (once for each resized output) best regards Haris

[FFmpeg-devel] webvtt in dash

2016-10-11 Thread Haris Zukanovic
/v2.3.0/samples/dash-if-reference-player/index.html What exactly would I need to do? thanx for any pointers -- -- Haris Zukanovic ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] ffmpeg audio data for ploting wave form

2016-04-02 Thread Haris PP
Hi, I need to plot wave form of audio as explained here http://stackoverflow.com/questions/16509906/ffmpeg-can-i-draw-an-audio-channel-as-an-image, I found that some command line option for plotting to image, but my requirement is do from c++ code and draw live waveform on UI. I am able to decode