PDA

View Full Version : demux video with FFmpeg with resize


PiPPoNe92
25th September 2009, 17:08
Hello people, I have another problem:
Is there a way to demux video with resize (544x304) with FFmpeg?

P.S. The compression can be 0% (nothing compression)
I would use it because FFmpeg resize is faster than avisynth.

J_Darnley
25th September 2009, 17:41
You can't resize without decoding. To demux you could do: ffmpeg -i file -vcodec copy -f rawvideo output.file
To resize: ffmpeg -i file -s 544x304 -vcodec something-something-something

PiPPoNe92
25th September 2009, 20:14
thanks a lot!

PiPPoNe92
26th September 2009, 15:30
yes, Work!