LoginSignup
1
1

More than 5 years have passed since last update.

VLCでmovをm4vに変換する。

Posted at

古いほにゃららのCDに含まれているMOVファイルをmp4に変換する道のり。

まずは、VLCで
hoge1.movをhoge1.m4vに
hoge2.movをhoge2.m4vに
変換。

ffmpeg -i hoge1.m4v -c copy -bsf:v h264_mp4toannexb hoge1.ts
ffmpeg -i hoge2.m4v -c copy -bsf:v h264_mp4toannexb hoge2.ts

ffmpeg -i "concat:hoge1.ts|hoge2.ts" -c copy hoge.ts

ffmpeg -i hoge.ts -vcodec libx264 -acodec mp3 hoge.mp4

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1