I have video with FLV format i want to covert that videos in to the MP4 format to using it in HTML5 video tag. Can anybody know the command to convert FLV to MP4.
Thanks
I have video with FLV format i want to covert that videos in to the MP4 format to using it in HTML5 video tag. Can anybody know the command to convert FLV to MP4.
Thanks
You should use ffmpeg documentation or search older questions.
This is the example command
ffmpeg -i input.flv -c:v libx264 -crf 23 -c:a libfaac -q:a 100 output.mp4