Page 1 of 1

Filebot ID3 Tag

Posted: 01 May 2022, 16:54
by gabloochacqha
I've tonnes of Audiobook in Mp3/M4b Format

1. Is it possible to check rename the title of the files to Chapter 01 / Chapter 02 / Chapter 03 etc by FileBot automatically

Re: Filebot ID3 Tag

Posted: 01 May 2022, 17:05
by rednoah
Yes. Plain File Mode will get you sorted.


:idea: You can use MediaInfo properties to generate the new file path, so you'll want to check that first what specific fields are set for your specific files.

Image

Re: Filebot ID3 Tag

Posted: 04 May 2022, 12:28
by rednoah
e.g. match the first number from the file name, and print with 3 digits:

Code: Select all

Chapter { fn.match(/\d+/).pad(3) }