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
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
/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
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