Log in

View Full Version : demux video with FFmpeg with resize


PiPPoNe92
25th September 2009, 16: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, 16: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, 19:14
thanks a lot!

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