diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2014-10-24 01:05:00 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2014-10-24 01:05:00 -0700 |
commit | 29a6dfc03d59d80ceb9bb2a88d562fced5718271 (patch) | |
tree | d2494e094caadf24f0a0a4c078b85422c91df461 /source | |
parent | b24db73a4077ce358deaba83aff8fc25f9f17a38 (diff) | |
download | my_new_personal_website-29a6dfc03d59d80ceb9bb2a88d562fced5718271.tar.xz my_new_personal_website-29a6dfc03d59d80ceb9bb2a88d562fced5718271.zip |
fix typo
Diffstat (limited to 'source')
-rw-r--r-- | source/_posts/2014-10-23-ripping-copy-protected-dvd-with-mpv.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/_posts/2014-10-23-ripping-copy-protected-dvd-with-mpv.md b/source/_posts/2014-10-23-ripping-copy-protected-dvd-with-mpv.md index 4ddad5b2..58f55e63 100644 --- a/source/_posts/2014-10-23-ripping-copy-protected-dvd-with-mpv.md +++ b/source/_posts/2014-10-23-ripping-copy-protected-dvd-with-mpv.md @@ -11,7 +11,7 @@ So, can we proceed from here? Most certainly. I noticed that although `mpv` wonâ brew install mpv --with-libdvdnav --with-libdvdread -For better performance and backup, I first cloned the DVD into a `.cdr` image (DVD/CD-R Master Image) using Disk Utilities (I've never tried creating/cloning image with `diskutil` CLI, so nothing to report on that). Then I mount the image, say the mount point is `/Volumes/UPBX_80165`. As said I can hand that mount point to `mpv` and it simply works, but how about extracting the MPEG-2 video stream? The `--stream-capture=<filename>` option is there just for you. In principle `--stream-dump=<filename>` should also work, but without monitoring the output and controlling where to end, I’m not sure if it will ever terminate itself when reading from a DVD (when I stream captured the DVD it just kept repeating itself until I explicitly quit with `q`). So that's it: +For better performance and backup, I first cloned the DVD into a `.cdr` image (DVD/CD-R Master Image) using Disk Utility (I've never tried creating/cloning image with `diskutil` CLI, so nothing to report on that). Then I mount the image, say the mount point is `/Volumes/UPBX_80165`. As said I can hand that mount point to `mpv` and it simply works, but how about extracting the MPEG-2 video stream? The `--stream-capture=<filename>` option is there just for you. In principle `--stream-dump=<filename>` should also work, but without monitoring the output and controlling where to end, I’m not sure if it will ever terminate itself when reading from a DVD (when I stream captured the DVD it just kept repeating itself until I explicitly quit with `q`). So that's it: mpv --stream-capture=dump.mpg /Volumes/UPBX_80165 |