You are not logged in.
Hi
In reference to the previous post, I noticed that many TV series also divide the title in this way:
The.Big.Bang.Theory.S09E01.Il.Momentum.iTA.ENG.DLMux
or
The.Big.Bang.Theory.S19E01.Il.Momentum.iTA.ENG.DLMux
I would always like to remove all the part that does not concern the title and the number, so have only:
01 - Il Momentum
Is it possible? Thanks
Offline
Hi
Rules :
1) Retirer(remove) tous "The.Big.Bang.Theory.S??E" (sauter l'extension)
2) Retirer tous ".iTA.ENG.DLMux" (sauter l'extension)
3) Remplacer tous avec " - " (sauter l'extension)
! Il faut ajouter un compteur sinon : doublons !
4) Sérialiser: Incrémentiel à partir de 1 répéter 1 pas 1 comme suffixe (sauter l'extension)
Results :
01 - Il - Momentuml .txt
01 - Il - Momentum2.txt
01 - Il - Momentum3.txt
Last edited by Jaaacky (2024-09-09 17:38)
Offline
thanks, I didn't understand anything but thanks
I would like to point out that the part after the title is too variable and therefore it is not possible to automate everything.
What interests me is the first part
Offline
Try these rules:
1) Regular Expressions: Replace expression "\A.*\bS\d\dE(\d\d)" with "$1 -" (skip extension)
2) Remove: Remove all ".iTA.ENG.DLMux" (skip extension)
3) Replace: Replace all "." with " " (skip extension)
They will convert this...
The.Big.Bang.Theory.S09E01.Il.Momentum.iTA.ENG.DLMux.avi
into this...
01 - Il Momentum.avi
Offline
it works perfectly, thank you very much!
Offline