Re: [FFmpeg-user] How to generate h.264 raw data

2014-09-25 Thread Carl Eugen Hoyos
Deron deron at pagestream.org writes: I tried ffmpeg -i test.avi -c:v libx264 -bsf h264_mp4toannexb -f h264 -an -y test.h264 Why did you add h264_mp4toannexb? Did you try without? (Note that you do not have to specify -an, -f h264 and -vcodec libx264 if your output filename ends on

Re: [FFmpeg-user] How to generate h.264 raw data

2014-09-25 Thread Deron
On 9/25/14 10:39 AM, Carl Eugen Hoyos wrote: Deron deron at pagestream.org writes: I tried ffmpeg -i test.avi -c:v libx264 -bsf h264_mp4toannexb -f h264 -an -y test.h264 Why did you add h264_mp4toannexb? Did you try without? (Note that you do not have to specify -an, -f h264 and -vcodec

Re: [FFmpeg-user] How to generate h.264 raw data

2014-09-25 Thread Carl Eugen Hoyos
Deron deron at pagestream.org writes: Last question, is it possible to dump avcc/mp4 stream? The opposite of h264_mp4toannexb? You can write a mov / mp4 file containing h264 and look at the file content. Since nothing can read the frames without the container, I believe it is good that

Re: [FFmpeg-user] How to generate h.264 raw data

2014-09-25 Thread Anatol
Deron, Please explain the data it generated did not look correct Anatol On Thu, Sep 25, 2014 at 7:16 PM, Deron de...@pagestream.org wrote: Is it possible to output just raw h.264 data? Better yet, both AnnexB and AVCC? Or is there a simple muxer that I can use that won't be so hard to look