pepak Posted May 14, 2009 Posted May 14, 2009 Can anyone recommend me an audio converter which would satisfy all of these requirements? If any such exists - I just can't seem to find it:- runs under Windows- command-line control; I would prefer a console application, but it is not required provided that the GUI can start, run and close without user's intervention- supports wildcards- converts at least FLAC into MP3- keeps tags (as many of them as possible, including custom tags if the target format can hold them)- if it uses temporary files, they should be created in a temp directory and not in the current working directoryI can do almost everything from this list just using batch files + lame + flac, but that means losing tags.
misterdb Posted May 14, 2009 Posted May 14, 2009 i've been using dBpower AMP music converter for a few years and its never failed me
Martin H Posted May 14, 2009 Posted May 14, 2009 Quick untested NT Command Script where a source folder is dropped upon:@echo offfor /r %1 %%g in (*.flac) do flac -dc "%%g" | lame -V5 --noreplaygain - "%%~dpng.mp3"&tag --fromfile "%%g" "%%~dpng.mp3"TAG.EXE: http://www.synthetic-soul.co.uk/tag/
pepak Posted May 15, 2009 Author Posted May 15, 2009 Thanks - that batch is almost what I need. Unfortunately, Tag doesn't support writing ID3v2 tags, that's about the only thing that bothers me now :-(
Martin H Posted May 16, 2009 Posted May 16, 2009 (edited) Yeah, sorry - i forgot to mention that previously...As i don't know any console apps which can both copy tags from FLAC to MP3 files and also supports ID3v2 tag writting, then i would recommend sticking to TAG.EXE in a NT Command Script like the one i posted above, and then add an '--ape2' switch to TAG.EXE, which then will write only APEv2 tags to the MP3s, and then afterwards download the freeware app Mp3tag, unpack the NSIS installer with e.g. 7-Zip and run Mp3tag.exe. Then you go into the options by pressing CTRL+O, and under 'Tags > Mpeg' you select 'APE' under 'Read' and unselect 'ID3v1' and 'ID3v2' under 'Remove'.Then you add your source folder with CTRL+D(it's recursive, so all sub-folders are added to) and then rewrite the tags with CTRL+S(which will add ID3v2 tags) and then finally remove the redundant APEv2 tags with CTRL+R. Edited May 16, 2009 by Martin H
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now