Can I create custom renaming for mp3 (based on tag)?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
chumbo
Posts: 272
Joined: 04 Jan 2015 15:20

Can I create custom renaming for mp3 (based on tag)?

Post by chumbo »

Hi,
The default renaming options for mp3 are not what I was looking for. Is there a way to change that?
I'd like to have Album - track - title
Thanks! :)
Chumbo

highend
Posts: 15004
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Can I create custom renaming for mp3 (based on tag)?

Post by highend »

In the MP3 Special contextmenu? Not possible. Write a script and execute that instead...
One of my scripts helped you out? Please donate via Paypal

chumbo
Posts: 272
Joined: 04 Jan 2015 15:20

Re: Can I create custom renaming for mp3 (based on tag)?

Post by chumbo »

Write a script!?...I wished I knew how, no can do :roll:

highend
Posts: 15004
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Can I create custom renaming for mp3 (based on tag)?

Post by highend »

Code: Select all

    setting "BackgroundFileOps", 0;
    foreach($file, <get SelectedItemsPathNames |>, , "e") {
        if (gpc($file, "ext") LikeI "mp3") {
            renameitem(report("{prop:#mp3.album} - {prop:#mp3.track} - {prop:#mp3.title}", $file), $file, 1+4);
        }
    }
One of my scripts helped you out? Please donate via Paypal

chumbo
Posts: 272
Joined: 04 Jan 2015 15:20

Re: Can I create custom renaming for mp3 (based on tag)?

Post by chumbo »

Awesome, thx! :)
(what's incredible?)

Post Reply