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 [2018/03/28 04:59] – beandog | dvd_info [2020/09/27 03:47] – beandog | ||
---|---|---|---|
Line 3: | Line 3: | ||
* [[http:// | * [[http:// | ||
* [[https:// | * [[https:// | ||
+ | * [[http:// | ||
* Portability: | * Portability: | ||
+ | * [[dvd_copy]] | ||
+ | * [[dvd_drive_status]] | ||
+ | * [[dvd_eject]] | ||
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 13: | Line 17: | ||
* '' | * '' | ||
* '' | * '' | ||
- | |||
- | To download, see [[http:// | ||
The code is open-source, | The code is open-source, | ||
- | Build requirements: | + | Build requirements: |
- | ==== dvd_info | + | === Installation |
- | ** Usage: ** dvd_info [options] [-t track number] [dvd path] | + | Based on what release version you get, github or a compiled package, you may need to build your own '' |
- | By default will open '' | + | < |
+ | autoreconf -fi | ||
+ | </code> | ||
- | Examples: | + | Then you can do standard '' |
+ | |||
+ | ==== dvd_info ==== | ||
+ | |||
+ | See '' | ||
< | < | ||
- | dvd_info /dev/sr0 | + | dvd_info |
- | dvd_info | + | |
- | dvd_info | + | Usage: dvd_info [options] [-t track number] [dvd path] |
+ | |||
+ | Options: | ||
+ | -t, --track # Limit to one track number (default: longest) | ||
+ | |||
+ | Detailed information: | ||
+ | -a, --audio audio streams | ||
+ | -v, --video video | ||
+ | -c, --chapters chapters | ||
+ | -s, --subtitles subtitles | ||
+ | -d, --cells cells | ||
+ | -x, --all display all | ||
+ | |||
+ | Formatting: | ||
+ | -j, --json Display output in JSON format | ||
+ | -o, --ogm Display OGM chapter format for track (default: longest) | ||
+ | -i, --id Display DVD id only (from libdvdread) | ||
+ | -T, --title Display DVD title only (path must be device or file) | ||
+ | |||
+ | Other: | ||
+ | -q, --quiet Don' | ||
+ | -h, --help Display these help options | ||
+ | -V, --version Version information | ||
+ | |||
+ | DVD path can be a device name, a single file, or directory. | ||
+ | |||
+ | Examples: | ||
+ | dvd_info # Read default DVD device (/dev/sr0) | ||
+ | dvd_info | ||
+ | dvd_info movie.iso # Read an image file | ||
+ | dvd_info | ||
</ | </ | ||