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
Filebot ID3 Tag
Re: Filebot ID3 Tag
Yes. Plain File Mode will get you sorted.
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.



Re: Filebot ID3 Tag
e.g. match the first number from the file name, and print with 3 digits:
Code: Select all
Chapter { fn.match(/\d+/).pad(3) }