mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 21:33:19 +00:00
Update README and fix IE documentation typo
This commit is contained in:
parent
c6246594cf
commit
dca6384283
|
@ -1379,11 +1379,12 @@ # OUTPUT TEMPLATE
|
||||||
- `track` (string): Title of the track
|
- `track` (string): Title of the track
|
||||||
- `track_number` (numeric): Number of the track within an album or a disc
|
- `track_number` (numeric): Number of the track within an album or a disc
|
||||||
- `track_id` (string): Id of the track
|
- `track_id` (string): Id of the track
|
||||||
- `artist` (string): Artist(s) of the track
|
- `artists` (list): Artist(s) of the track
|
||||||
- `genre` (string): Genre(s) of the track
|
- `composers` (list): Composer(s) of the piece
|
||||||
|
- `genres` (list): Genre(s) of the track
|
||||||
- `album` (string): Title of the album the track belongs to
|
- `album` (string): Title of the album the track belongs to
|
||||||
- `album_type` (string): Type of the album
|
- `album_type` (string): Type of the album
|
||||||
- `album_artist` (string): List of all artists appeared on the album
|
- `album_artists` (list): List of all artists appeared on the album
|
||||||
- `disc_number` (numeric): Number of the disc or other physical medium the track belongs to
|
- `disc_number` (numeric): Number of the disc or other physical medium the track belongs to
|
||||||
|
|
||||||
Available only when using `--download-sections` and for `chapter:` prefix when using `--split-chapters` for videos with internal chapters:
|
Available only when using `--download-sections` and for `chapter:` prefix when using `--split-chapters` for videos with internal chapters:
|
||||||
|
|
|
@ -423,7 +423,7 @@ class InfoExtractor:
|
||||||
track_id: Id of the track (useful in case of custom indexing, e.g. 6.iii),
|
track_id: Id of the track (useful in case of custom indexing, e.g. 6.iii),
|
||||||
as a unicode string.
|
as a unicode string.
|
||||||
artists: List of artists of the track.
|
artists: List of artists of the track.
|
||||||
composers: List of composers of the piece
|
composers: List of composers of the piece.
|
||||||
genres: List of genres of the track.
|
genres: List of genres of the track.
|
||||||
album: Title of the album the track belongs to.
|
album: Title of the album the track belongs to.
|
||||||
album_type: Type of the album (e.g. "Demo", "Full-length", "Split", "Compilation", etc).
|
album_type: Type of the album (e.g. "Demo", "Full-length", "Split", "Compilation", etc).
|
||||||
|
|
Loading…
Reference in a new issue