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.
コマンドラインでFFmpegを使用して*.flvファイルを*.tsファイルに変換するにはどうすればよいですか? これに関する文書はありますか?
よろしくお願いします。
ffmpeg -i abc.flv abc.ts これにより、mpeg2video と mp2 オーディオを含む .ts が生成されます。h264 ビデオを使用して生成するには
ffmpeg -i abc.flv abc.ts
ffmpeg -i abc.flv -vcodec libx264 abc.ts
エンコードしたくない場合は、「ffmpeg -i input.flv -c copy -bsf h264_mp4toannexb output.ts」を使用できます。