Search found 3 matches

by fluxtendu
22 Mar 2016, 04:38
Forum: Episode / Movie Naming Scheme
Topic: Keep everything that's not already in the new name?
Replies: 5
Views: 4107

Re: Keep everything that's not already in the new name?

1) Yes I was looking for replaceAll(n, '')
but do you have something like:
fn.replaceAll(y, '')
to replace the year?

I try to adapt the code for movies, but the year is not always in the source name and I don't have other unique separator, so I imagined something like this:
/{n} ({y})/{n} - {y ...
by fluxtendu
20 Mar 2016, 13:08
Forum: Episode / Movie Naming Scheme
Topic: Keep everything that's not already in the new name?
Replies: 5
Views: 4107

Re: Keep everything that's not already in the new name?

Thank you!

The first one is what I was looking for... I ended up with:
{fn.after(/[- ._](S\d+E\d+|\d{3,4}|\d+x\d+)[- ._]/)}
That match anything after those: ".S02E04." " 1x05 " "-108-" "_01X07_" ".s3e5-" etc...

But my quest to find the perfect naming scheme gave me two more questions:

1) Can I ...
by fluxtendu
19 Mar 2016, 21:32
Forum: Episode / Movie Naming Scheme
Topic: Keep everything that's not already in the new name?
Replies: 5
Views: 4107

Keep everything that's not already in the new name?

Hi,

My sample files are:
11.22.63.S01E04.WEBRip.XviD-FUM[ettv].avi
11.22.63.105.hdtv-lol[ettv].mp4
and I would like to get :
/11.22.63/S01/11.22.63 - S01E04 - episode title (WEBRip.XviD-FUM[ettv]) .avi
/11.22.63/S01/11.22.63 - S01E05 - another episode title (hdtv-lol[ettv]) .mp4

The first ...