Skip to content

Commit 3b2581b

Browse files
committed
Added documentation for parallel disc ripping.
1 parent 8cd1256 commit 3b2581b

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ of this parameter has the format `<VARIABLE_NAME>=<VALUE>`.
119119
|`MAKEMKV_KEY`| MakeMKV registration key to use. The key is written to the configuration file during container startup. When set to `BETA`, the latest beta key is automatically used. When set to `UNSET`, no key is automatically written to the configuration file. | `BETA` |
120120
|`AUTO_DISC_RIPPER`| When set to `1`, the automatic disc ripper is enabled. | `0` |
121121
|`AUTO_DISC_RIPPER_EJECT`| When set to `1`, disc is ejected from the drive when ripping is terminated. | `0` |
122+
|`AUTO_DISC_RIPPER_PARALLEL_RIP`| When set to `1`, discs from all available optical drives are ripped in parallel. Else, each disc from optical drives is ripped one at time. | `0` |
122123
|`AUTO_DISC_RIPPER_INTERVAL`| Interval, in seconds, the automatic disc ripper checks for the presence of a DVD/Blu-ray discs. | `5` |
123124
|`AUTO_DISC_RIPPER_MIN_TITLE_LENGTH`| Titles with a length less than this value are ignored. Length is in seconds. By default, no value is set, meaning that value from MakeMKV's configuration file is taken. | (unset) |
124125
|`AUTO_DISC_RIPPER_BD_MODE`| Rip mode of Blu-ray discs. `mkv` is the default mode, where a set of MKV files are produced. When set to `backup`, a copy of the (decrypted) file system is created instead. **NOTE**: This applies to Blu-ray discs only. For DVD discs, MKV files are always produced. | `mkv` |
@@ -496,6 +497,9 @@ To enable the automatic disc ripper, set the environment variable
496497
To eject the disc from the drive when ripping is terminated, set the environment
497498
variable `AUTO_DISC_RIPPER_EJECT` to `1`.
498499

500+
If multiple drives are available, discs can be ripped simultaneously by
501+
setting the environment variable `AUTO_DISC_RIPPER_PARALLEL_RIP` to `1`.
502+
499503
See the [Environment Variables](#environment-variables) section for details
500504
about setting environment variables.
501505

appdefs.xml

+14
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ To enable the automatic disc ripper, set the environment variable
9999
To eject the disc from the drive when ripping is terminated, set the environment
100100
variable `AUTO_DISC_RIPPER_EJECT` to `1`.
101101

102+
If multiple drives are available, discs can be ripped simultaneously by
103+
setting the environment variable `AUTO_DISC_RIPPER_PARALLEL_RIP` to `1`.
104+
102105
See the [Environment Variables](#environment-variables) section for details
103106
about setting environment variables.
104107

@@ -347,6 +350,17 @@ section for more details.
347350
<mask>false</mask>
348351
</unraid_template>
349352
</environment_variable>
353+
<environment_variable>
354+
<name>AUTO_DISC_RIPPER_PARALLEL_RIP</name>
355+
<description>When set to `1`, discs from all available optical drives are ripped in parallel. Else, each disc from optical drives is ripped one at time.</description>
356+
<default>0</default>
357+
<unraid_template>
358+
<title>Automatic Disc Ripper: Parallel</title>
359+
<display>always</display>
360+
<required>false</required>
361+
<mask>false</mask>
362+
</unraid_template>
363+
</environment_variable>
350364
<environment_variable>
351365
<name>AUTO_DISC_RIPPER_INTERVAL</name>
352366
<description>Interval, in seconds, the automatic disc ripper checks for the presence of a DVD/Blu-ray discs.</description>

0 commit comments

Comments
 (0)