Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revisionNext revisionBoth sides next revision | ||
dvd_info [2014/09/09 04:44] – [dvd_info] beandog | dvd_info [2023/12/26 08:48] – beandog | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== dvd_info ====== | ====== dvd_info ====== | ||
+ | |||
+ | * [[http:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * Portability: | ||
+ | * [[dvd_copy]] | ||
+ | * [[dvd_drive_status]] | ||
+ | * [[dvd_player]] | ||
+ | * [[dvd_trip]] | ||
My own set of C programs that are small utilities for reading DVD info, and managing DVD drives. | My own set of C programs that are small utilities for reading DVD info, and managing DVD drives. | ||
Line 7: | Line 16: | ||
* '' | * '' | ||
* '' | * '' | ||
- | * '' | + | * '' |
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
- | To download, see [[http:// | + | The code is open-source, licensed under GNU GPL v2. |
- | The code is open-source, | + | Source code is available at [[https:// |
- | ==== dvd_info ==== | + | Build requirements: |
- | ** Usage: ** dvd_info [options] [-t track number] [dvd path] | + | === Installation ==== |
- | By default will open ''/ | + | Then you can do standard |
- | Examples: | + | ==== dvd_info ==== |
+ | |||
+ | See '' | ||
< | < | ||
- | dvd_info | + | dvd_info |
- | dvd_info EXCITING_MOVIE.iso | + | |
- | dvd_info | + | Usage: |
+ | |||
+ | Options: | ||
+ | -t, --track < | ||
+ | -j, --json | ||
+ | |||
+ | Detailed information: | ||
+ | -v, --video | ||
+ | -a, --audio | ||
+ | -s, --subtitles | ||
+ | -c, --chapters | ||
+ | -d, --cells | ||
+ | -x, --all | ||
+ | |||
+ | Narrow results: | ||
+ | -l, --longest Track with the longest length | ||
+ | -A, --has-audio | ||
+ | -S, --has-subtitles | ||
+ | -E, --seconds < | ||
+ | -M, --minutes < | ||
+ | -T, --vts < | ||
+ | -L, --valid Track is marked as valid | ||
+ | |||
+ | Other: | ||
+ | -i, --id Display DVD ID only | ||
+ | -u, --volume Display DVD UDF volume name only (for ISO or disc) | ||
+ | -g, --xchap | ||
+ | -h, --help | ||
+ | --version | ||
+ | |||
+ | DVD path can be a device name, a single file, or a directory (default: | ||
</ | </ | ||
Line 32: | Line 77: | ||
< | < | ||
- | $ dvd_info | + | $ dvd_info BATMAN_THE_ANIMATED_SERIES.iso |
Disc Title: BATMAN_ANIMATED_SERIES_DISC1 | Disc Title: BATMAN_ANIMATED_SERIES_DISC1 | ||
Title: 01, Length: 02: | Title: 01, Length: 02: | ||
Line 50: | Line 95: | ||
Longest track: 01 | Longest track: 01 | ||
</ | </ | ||
+ | |||
+ | Specifing a track: | ||
+ | |||
+ | < | ||
+ | $ dvd_info -t BATMAN_THE_ANIMATED_SERIES.iso | ||
+ | Disc Title: BATMAN_ANIMATED_SERIES_DISC1 | ||
+ | Title: 06, Length: 00: | ||
+ | </ | ||
+ | |||
+ | === JSON output === | ||
+ | |||
+ | The JSON output functionality will print *all* the information that '' | ||
+ |