-2

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

infinityKK
  • 40
  • 1
  • 5

1 Answers1

0

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

w-w
  • 11
  • 3