INTERACT FORUM

More => Old Versions => JRiver Media Center 32 for Windows => Topic started by: nathanchavez on March 11, 2024, 01:35:56 pm

Title: Renaming Files
Post by: nathanchavez on March 11, 2024, 01:35:56 pm
Is it possible to replace the first X number of characters from a filename?  I can't see how to do that.  I can use find and replace, using the name category, but I'm not sure if I can use variables there.
Title: Re: Renaming Files
Post by: zybex on March 11, 2024, 02:33:51 pm
Sure. You can use the F6 tool or an expression on the [Filename] tag. Can you give an example of a before/after filename?
Also, you want to change the [Name] field or the actual filename on disk?
Title: Re: Renaming Files
Post by: nathanchavez on March 11, 2024, 03:01:22 pm
I found the entire red green show at archive.org.  It's 300 episodes.  But the file names are not done by season, like the reason of my library; for example, S15E13 - 294 The Big Retreat as opposed to S15E13 - The Big Retreat.  The total episode count was added, and I'm trying to rename them without that.  So, I need to erase the three numbered characters from the name field and then use f6 to rename the file.  The file currently on the disk in named using the the total episode count.
Title: Re: Renaming Files
Post by: zybex on March 11, 2024, 03:12:50 pm
If that pattern is valid for all files, this should work:
Code: [Select]
=regex([Name],/#(.+?)\s*-\s*\d+\s*(.+)#/,-1)[R1] - [R2]
You could instead use the "Fill Properties From Filename" tool to fill in the [Season], [Episode] and [Name] fields, then use that info to rename the files. This way you could do a Get Movie&TV Info too.

On the F12 tool, use a rule like:
S[Season]E[Episode] - [] [Name]
Title: Re: Renaming Files
Post by: nathanchavez on March 11, 2024, 03:33:20 pm
That doesn't work.    Using: "=regex([Name],/#(.+?)\s*-\s*\d+\s*(.+)#/,-1)[R1] - [R2]" results in all names now becoming "-".
Title: Re: Renaming Files
Post by: zybex on March 11, 2024, 03:37:12 pm
Then your [Name] field is not in the "S15E13 - 294 The Big Retreat" format.
You can test the expression in an Expression column to avoid changing [Name].
Title: Re: Renaming Files
Post by: nathanchavez on March 11, 2024, 03:44:18 pm
No.  It's slightly different; S15E13 - Ep 294 - The Big Retreat.  I need to get rid of "Ep 294 - ", for example.  I think I was off.
Title: Re: Renaming Files
Post by: zybex on March 11, 2024, 04:09:42 pm
OK, try this then:
Code: [Select]
=regex([Name],/#(.+?)-.+?-(.+)#/,-1)trim([R1]) - trim([R2])
Title: Re: Renaming Files
Post by: nathanchavez on March 11, 2024, 04:19:31 pm
Thanks!  That worked.