Log in

View Full Version : ffmpeg questions


adaml
29th November 2005, 20:31
I am trying to mux a raw h263 file into an .avi file using ffmpeg and i am using the following command

C:\msys\1.0\ffmpeg>ffmpeg -i raw.h263 -target h263 myvideo.avi

and get the following output

ffmpeg version CVS, build 3277056, Copyright (c) 2000-2004 Fabrice Bellard
configuration: --enable-memalign-hack
built on Nov 18 2005 14:03:39, gcc: 3.4.2 (mingw-special)
Input #0, h263, from 'raw.h263':
Duration: N/A, bitrate: N/A
Stream #0.0, 29.97 fps: Video: h263, yuv420p, 352x288
Assuming NTSC for target.
Unknown target: h263

ive done this before using "-target vcd" and "-target dvd" and it works fine, I just keep getting the "Unknown target:" error with h263

any ideas?

adaml
29th November 2005, 20:38
i was using it wrong i got it to work by using the command

C:\msys\1.0\ffmpeg>ffmpeg -i raw.h263 -vcodec h263 myvideo.avi