Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
FLV 形式のビデオがあり、そのビデオを MP4 形式に変換して、HTML5 ビデオ タグで使用したいと考えています。FLVをMP4に変換するコマンドを知っている人はいますか?
ありがとう
ffmpeg のドキュメントを使用するか、古い質問を検索する必要があります。
これはコマンドの例です
ffmpeg -i input.flv -c:v libx264 -crf 23 -c:a libfaac -q:a 100 output.mp4