Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dvd_title [2014/02/17 07:22] – beandog | dvd_title [2018/03/28 05:53] (current) – beandog | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== DVD Title ====== | ====== DVD Title ====== | ||
- | * [[DVD Unique Identifiers]] | + | * [[dvd_info]] |
* [[lsdvd]] | * [[lsdvd]] | ||
* [[volname]] | * [[volname]] | ||
- | Each disc will have a title assigned to it. This is a small string. | + | I used to have a '' |
+ | |||
+ | < | ||
+ | $ dvd_info --title | ||
+ | BATMAN_BEYOND_SEASON_1_DISC_2 | ||
+ | </ | ||
+ | |||
+ | Each disc will have a title assigned to it. This is a small string. | ||
+ | |||
+ | Most of this page content is old, since I have [[dvd_info]] now. | ||
Most programs that access your DVD will at some point usually spit it out as part of displaying the metadata. | Most programs that access your DVD will at some point usually spit it out as part of displaying the metadata. | ||
Line 24: | Line 33: | ||
</ | </ | ||
- | Also, here's a small C program I wrote to get it as well: | + | Or you can use '' |
+ | |||
+ | < | ||
+ | dd if=VIDEO_TS.IFO bs=1 count=32 skip=64 2> /dev/null | ||
+ | </ | ||
+ | |||
+ | Also, here's a small C program I <del>wrote</ | ||
<code c> | <code c> |