Re: MP3Split, retain some tags; create new tags,
Thank you for this very helpful utility.
I use win7 and WinXP.
I want to use MP3Split in a batch file to:
• remove the first 30 seconds of each mp3 file in source_dir
• move the completed file to dest_dir
• Retain the original file’s title, change the artist tag to NewArtist and change the album to NewAlbum.
In my batch file I use:
mp3splt source_dir 00.30.00 EOF -g#[@O,@a= NewArtist,b= NewAlbum] –d dest_dir –q
This retains the title but it doesn’t create the new artist and album tags.
Could you please suggest a fix?
Hi,
Try to
a) set options before source_dir and before the times
b) use % instead of #
c) use quotes for the -g parameter
d) remove the space before New
e) use @b= instead of b=
Full command should be something like this:
mp3splt -d dest_dir -q -g "%[@o,@a=NewArtist,@b=NewAlbum]" source_dir 00.30.00 EOF
--
Alex