Skip to content

Commit

Permalink
Update dvdremux.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wiwaz committed May 25, 2024
1 parent e2477b8 commit dfbf958
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions docs/tutorials/dvdremux.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Remux DVDs using FFmpeg

# DVD Remuxing

This guide can be used to remux DVDs using FFmpeg and MPC-HC.
This guide can be used to remux DVDs using MPC-HC, FFmpeg, Vapoursynth, and MKVToolNix.

!!!
Assistance is available in [this Discord server](https://discord.gg/XTpc6Fa9eB) if required.
Expand Down Expand Up @@ -129,7 +129,9 @@ This will be an integer from 1—9.
If you have multiple episodes per title,
you need to add:

`-chapter_start <start_chap> -chapter_end <end_chap>`
```shell
-chapter_start <start_chap> -chapter_end <end_chap>
```

Replace \<start_chap\> with the first chapter of the episode you are remuxing.
Replace \<end_chap\> with the last chapter of the episode, inclusive.
Expand All @@ -145,13 +147,17 @@ you can exclude the respective argument.
After you have added the rest of the required flags,
you can end the command with:

`-i <path_to_dvd> -map 0 -c copy <filename>.mkv`
```shell
-i <path_to_dvd> -map 0 -c copy <filename>.mkv
```

==- DVDs with PCM Audio

If your disc has PCM Audio, add:

`-codec:<stream_id> flac`
```shell
-codec:<stream_id> flac
```

**After** `-c copy` in the final part of the command.

Expand All @@ -169,7 +175,9 @@ Replace:

Here is an example of a working command:

`ffmpeg -f dvdvideo -preindex True -title 2 -angle 2 -chapter_start 4 -chapter_end 8 -i example.iso -map 0 -c copy -codec:1 flac test.mkv`
```shell
ffmpeg -f dvdvideo -preindex True -title 2 -angle 2 -chapter_start 4 -chapter_end 8 -i example.iso -map 0 -c copy -codec:1 flac test.mkv
```

## Correcting SAR/PAR

Expand Down

0 comments on commit dfbf958

Please sign in to comment.