5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ffmpgでDVDの中身を取り出す

Posted at

RipItでHDDに落とす

DVD Player Media Documentを右クリックで開くとVIDEO_TSがある。
この中のVTS_01_1~9.VOD
が対象になる。 1から4の場合、

ffmpeg -i "concat:VTS_01_0.VOB|VTS_01_1.VOB|VTS_01_2.VOB|VTS_01_3.VOB|VTS_01_4.VOB" -c copy ~/Movies/hogehoge.ts
とすると結合したtsファイルができる。
あとは
ffmpeg -i hogehoge.ts -vcodec libx264 -preset veryfast -acodec ac3 hogehoge.mp4
として圧縮する。

5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?