Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
dvd_title [2014/02/17 00:23] beandog |
dvd_title [2018/03/27 23: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. The disc title is **not** a unique identifer in itself, but it can be used as an element in creating one if you are archiving your titles. | + | I used to have a ''dvd_title'' binary I wrote, but I merged it into [[dvd_info]] instead. It returns the UDF volume name. It must be an ISO or the DVD itself in the drive to print it. |
+ | |||
+ | <code> | ||
+ | $ dvd_info --title | ||
+ | BATMAN_BEYOND_SEASON_1_DISC_2 | ||
+ | </code> | ||
+ | |||
+ | Each disc will have a title assigned to it. This is a small string. The disc title is **not** a unique identifer in itself, but it can be used as an element in creating one if you are archiving your titles. I recommend using the [[dvd_id|DVD id instead]]. | ||
+ | |||
+ | 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 30: | Line 39: | ||
</code> | </code> | ||
- | Also, here's a small C program I wrote to get it as well: | + | Also, here's a small C program I <del>wrote</del> cobbled together from multiple sources to get it as well: |
<code c> | <code c> |