Update assets.md

Add more to the media path examples
pull/1919/head
Chaz Larson 8 months ago committed by GitHub
parent c3c22bd789
commit fc8c258407
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -98,84 +98,84 @@ Assets can be stored anywhere on the host system that PMM has visibility of (i.e
For example, given this movie: For example, given this movie:
``` ```
/path/to/media/movies/Star Wars (1977)/Star Wars (1977) [1080p].mp4 /path/to/media/movies/Star Wars (1977) {imdb-tt0076759} {tmdb-11}/Star Wars (1977) [1080p].mp4
^^^^^^^^^^^^^^^^ -- THIS IS ASSET_NAME ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- THIS IS ASSET_NAME
``` ```
The asset names that PMM will look for are: The asset names that PMM will look for are:
ASSET_FOLDERS=True: ASSET_FOLDERS=True:
``` ```
config/assets/Star Wars (1977)/poster.ext config/assets/Star Wars (1977) {imdb-tt0076759} {tmdb-11}/poster.ext
config/assets/Star Wars (1977)/background.ext config/assets/Star Wars (1977) {imdb-tt0076759} {tmdb-11}/background.ext
``` ```
ASSET_FOLDERS=False: ASSET_FOLDERS=False:
``` ```
config/assets/Star Wars (1977).ext config/assets/Star Wars (1977) {imdb-tt0076759} {tmdb-11}.ext
config/assets/Star Wars (1977)_background.ext config/assets/Star Wars (1977) {imdb-tt0076759} {tmdb-11}_background.ext
``` ```
* For **Shows**, **Seasons**, and **Episodes** replace `ASSET_NAME` with the exact name of the folder for the show as a whole. * For **Shows**, **Seasons**, and **Episodes** replace `ASSET_NAME` with the exact name of the folder for the show as a whole.
For example, given this show: For example, given this show:
``` ```
/path/to/media/tv/The Expanse (2015)/Season 01/The Expanse (2015) - S01E01 - Dulcinea.mkv /path/to/media/tv/The Expanse (2015) {tvdb-280619}/Season 01/The Expanse (2015) - S01E01 - Dulcinea.mkv
^^^^^^^^^^^^^^^^^^ -- THIS IS ASSET_NAME ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- THIS IS ASSET_NAME
``` ```
The asset names that PMM will look for are: The asset names that PMM will look for are:
ASSET_FOLDERS=True: ASSET_FOLDERS=True:
``` ```
config/assets/The Expanse (2015)/poster.ext config/assets/The Expanse (2015) {tvdb-280619}/poster.ext
config/assets/The Expanse (2015)/background.ext config/assets/The Expanse (2015) {tvdb-280619}/background.ext
``` ```
ASSET_FOLDERS=False: ASSET_FOLDERS=False:
``` ```
config/assets/The Expanse (2015).ext config/assets/The Expanse (2015) {tvdb-280619}.ext
config/assets/The Expanse (2015)_background.ext config/assets/The Expanse (2015) {tvdb-280619}_background.ext
``` ```
* For **Seasons** replace `##` with the zero padded season number (00 for specials) * For **Seasons** replace `##` with the zero padded season number (00 for specials)
For example, given this show: For example, given this show:
``` ```
/path/to/media/tv/The Expanse (2015)/Season 01/The Expanse (2015) - S01E01 - Dulcinea.mkv /path/to/media/tv/The Expanse (2015) {tvdb-280619}/Season 01/The Expanse (2015) - S01E01 - Dulcinea.mkv
``` ```
The asset names that PMM will look for are: The asset names that PMM will look for are:
ASSET_FOLDERS=True: ASSET_FOLDERS=True:
``` ```
config/assets/The Expanse (2015)/Season01.ext config/assets/The Expanse (2015) {tvdb-280619}/Season01.ext
config/assets/The Expanse (2015)/Season01_background.ext config/assets/The Expanse (2015) {tvdb-280619}/Season01_background.ext
``` ```
ASSET_FOLDERS=False: ASSET_FOLDERS=False:
``` ```
config/assets/The Expanse (2015)_Season01.ext config/assets/The Expanse (2015) {tvdb-280619}_Season01.ext
config/assets/The Expanse (2015)_Season01_background.ext config/assets/The Expanse (2015) {tvdb-280619}_Season01_background.ext
``` ```
* For **Episodes** replacing the first `##` with the zero padded season number (00 for specials), the second `##` with the zero padded episode number * For **Episodes** replacing the first `##` with the zero padded season number (00 for specials), the second `##` with the zero padded episode number
For example, given this show: For example, given this show:
``` ```
/path/to/media/tv/The Expanse (2015)/Season 01/The Expanse (2015) - S01E01 - Dulcinea.mkv /path/to/media/tv/The Expanse (2015) {tvdb-280619}/Season 01/The Expanse (2015) - S01E01 - Dulcinea.mkv
``` ```
The asset names that PMM will look for are: The asset names that PMM will look for are:
ASSET_FOLDERS=True: ASSET_FOLDERS=True:
``` ```
config/assets/The Expanse (2015)/S01E01.ext config/assets/The Expanse (2015) {tvdb-280619}/S01E01.ext
config/assets/The Expanse (2015)/S01E01_background.ext config/assets/The Expanse (2015) {tvdb-280619}/S01E01_background.ext
``` ```
ASSET_FOLDERS=False: ASSET_FOLDERS=False:
``` ```
config/assets/The Expanse (2015)_S01E01.ext config/assets/The Expanse (2015) {tvdb-280619}_S01E01.ext
config/assets/The Expanse (2015)_S01E01_background.ext config/assets/The Expanse (2015) {tvdb-280619}_S01E01_background.ext
``` ```
* Replace `.ext` with the image extension * Replace `.ext` with the image extension

Loading…
Cancel
Save