Re: [FFmpeg-user] ffmpeg encoding in h264 instead of raw video

2015-03-12 Thread Carl Eugen Hoyos
Moritz Barsnick gmx.net> writes: > > ffmpeg -f u16le -acodec pcm_s16le > What you are doing with your flags is telling > ffmpeg how to interpret the inputs (which it > might do well by itself without these hints) Note that FFmpeg does not auto-detect rawaudio input (it is not easy to detect).

Re: [FFmpeg-user] ffmpeg encoding in h264 instead of raw video

2015-03-12 Thread Carl Eugen Hoyos
Keith Reilly retroreport.com> writes: > ffmpeg -f u16le -acodec pcm_s16le This looks a little schizophrenic: Please write: ffmpeg -f s16le (no need to specify the codec). Note that you cannot write yuv420p rawvideo to mov, this is not a deficiency of FFmpeg but the mov container (rgb24 works

Re: [FFmpeg-user] ffmpeg encoding in h264 instead of raw video

2015-03-12 Thread Moritz Barsnick
Hi Keith, On Thu, Mar 12, 2015 at 17:26:13 -0400, Keith Reilly wrote: > I'm trying to take a raw video file and raw audio and remux them together > still as raw. I don't want any compression. > ffmpeg -f u16le -acodec pcm_s16le -ac 2 -ar 48000 -i /all_a1 -f yuv4mpegpipe > -vcodec rawvideo -i /al

[FFmpeg-user] ffmpeg encoding in h264 instead of raw video

2015-03-12 Thread Keith Reilly
I'm trying to take a raw video file and raw audio and remux them together still as raw. I don't want any compression. I'm doing something wrong but not sure what. It ends up making h264 even though i never asked for it. I got this command from a tutorial on the web on how to concat multiple videos