Reputation: 515
Hi was trying to find the command line parameters to pass into FFMPEG to convert raw H.264 file in ANNEX B format to AVCC format but I can't find anything on the internet. I only found the reverse (AVCC to ANNEX B). So I'm asking here Thanks
Upvotes: 3
Views: 2520
Reputation: 8274
Just use the following command line: ffmpeg -i input.h264 -c:v copy output.mp4
Upvotes: 1