I have a recording of a live broadcast generated by WMS. The broadcast used h.264/AAC.
I have been trying to convert the FLV to MP4 with FFmpeg, without any positive results. This is what I have tried:
ffmpeg -i stream.flv -vcodec copy -acodec copy out.mp4
ffmpeg -i stream.flv -vcodec copy video.ts
ffmpeg -i stream.flv -acodec copy audio.ts
ffmpeg -i video.ts -vcodec copy -i audio.ts -acodec copy out.mp4
Both attempts fail with errors.
Can somebody provide me with a command line for ffmpeg to convert the FLV to an MP4 without having to transcode the video again?
Alternatively, I would also consider any other Linux/Windows tools to perform the format conversion.
Thank you,
Hector