Filebot ID3 Tag

Any questions? Need some help?
Post Reply
gabloochacqha
Posts: 3
Joined: 21 Mar 2022, 00:41

Filebot ID3 Tag

Post 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
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot ID3 Tag

Post 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
:idea: Please read the FAQ and How to Request Help.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot ID3 Tag

Post 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) }
:idea: Please read the FAQ and How to Request Help.
Post Reply