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
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);
}
}