How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Bonjour, désoler je ne parle pas l'anglais,
je voudrais changer cela
{ drive }/Media/{ plex.id }
cela : /Media/TV Shows/Firefly {tmdb-1437}/Season 01/Firefly - S01E01 - Serenity
par : /Media/Série TV/Firefly {tmdb-1437}/Saison 01/Firefly - S01E01 - Serenity
et
cela : /Media/Movies/Avatar (2009) {tmdb-19995}/Avatar (2009)
par : /Media/Films/Avatar (2009) {tmdb-19995}/Avatar (2009)
merci pour votre aide
je voudrais changer cela
{ drive }/Media/{ plex.id }
cela : /Media/TV Shows/Firefly {tmdb-1437}/Season 01/Firefly - S01E01 - Serenity
par : /Media/Série TV/Firefly {tmdb-1437}/Saison 01/Firefly - S01E01 - Serenity
et
cela : /Media/Movies/Avatar (2009) {tmdb-19995}/Avatar (2009)
par : /Media/Films/Avatar (2009) {tmdb-19995}/Avatar (2009)
merci pour votre aide
Re: Renommer
e.g.
Please read the {plex} format manual for details.
Format: Select all
{ drive }/Série TV/{ ~plex.id }
Format: Select all
{ drive }/Films/{ ~plex.id }
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Merci beaucoup, cela fonctionne
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
e.g.
Format: Select all
Série TV/{plex.id[1]}/Saison {s.pad 2}/{emby.name}
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Avec un peu de retard, Merci beaucoup rednoah
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
e.g.
Format: Select all
Série TV/{ ~plex.year.id }
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Wow awesome thank you very much, rednoah
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
there is just a small error instead of saison in French it is season in english
and one last request I ask you, is it possible to capitalize the first letter of each word
thank you
and one last request I ask you, is it possible to capitalize the first letter of each word
thank you
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
e.g. taking control over each path component will take a little bit more code:
Format: Select all
Série TV/{ plex.year.id[1] }/{ 'Saison ' + s00 }/{ plex.name.upperInitial() }
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Encore merci tout est comme je veux, au top
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Hello, c'est encore moi,
For the films I have :
I can't add a capital letter to each first word like TV Series, I added .upperInitial() and it doesn't work, a little help please, thank you
For the films I have :
Format: Select all
{ drive }/Films/{n.colon(' - ')} ({y}){' CD'+pi}{subt} (tmdb-{movie.id})
Code: Select all
une lueur d'espoir (2011) (tmdb-52688)
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
e.g.
Format: Select all
{ n.colon(' - ').upperInitial() }
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Wow quelle rapidité, merci beaucoup
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
I just saw that there is a problem with the name of the tv series, each word in the name is not capitalized, after trying to modify it myself I can't do it, can you help me? help thanks
Format: Select all
Série TV/{ plex.year.id[1] }/{ 'Saison ' + s00 }/{ plex.name.upperInitial() } ({y})
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
We could just add .upperInitial() and it'll work, except it'll work for the tvdb-12345 bit too:
It's probably easier to just not use plex[1] since you need more granular control in this case:
Format: Select all
{ plex.year.id[1].upperInitial() }
Code: Select all
7 Jours Pour Agir (1998) {Tvdb-74540}
It's probably easier to just not use plex[1] since you need more granular control in this case:
Format: Select all
Série TV/{ ny.upperInitial() } (tvdb-{ tvdbid })/{ 'Saison ' + s00 }/{ plex.name.upperInitial() } ({airdate})
Code: Select all
Série TV/7 Jours Pour Agir (1998) (tvdb-74540)/Saison 01/7 Jours Pour Agir - S01E01 - État De Siège (1998-10-07)
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Better than I expected, you are a real chef, one last question is there a way to make a backup of all my customisations
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Do you mean to Backup and Restore Settings by any chance?Paolo57120 wrote: ↑08 Nov 2024, 16:53 Better than I expected, you are a real chef, one last question is there a way to make a backup of all my customisations
Please read the FAQ and How to Request Help.
-
- Posts: 13
- Joined: 20 Sep 2023, 13:18
Re: How do I change the folder name of the Movies / TV Shows folder level when using the {plex} binding?
Yes Backup and Restore Settings.
C'est fait merci pour le lien cela fonctionne.
C'est fait merci pour le lien cela fonctionne.