dr lopez Posted December 18, 2015 Report Share Posted December 18, 2015 shoot Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide dr lopez's signature Hide all signatures On 11/24/2015 at 12:29 PM, Salvatorin said: I feel there is a baobab tree growing out of my head, its leaves stretch up to the heavens Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/ Share on other sites More sharing options...
KovalainenFanBoy Posted December 18, 2015 Report Share Posted December 18, 2015 I remember doing it with Foobar and LAME. Otherwise I guess you could even write a batch file or something. Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide KovalainenFanBoy's signature Hide all signatures Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402609 Share on other sites More sharing options...
YO303 Posted December 18, 2015 Report Share Posted December 18, 2015 Okay we get it, you own FLACs, stop bragging about it jeez Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402610 Share on other sites More sharing options...
dr lopez Posted December 18, 2015 Author Report Share Posted December 18, 2015 On 12/18/2015 at 11:12 PM, ThatSpanishGuy said: I remember doing it with Foobar and LAME. Otherwise I guess you could even write a batch file or something. i'll try to figure this out soon lol Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide dr lopez's signature Hide all signatures On 11/24/2015 at 12:29 PM, Salvatorin said: I feel there is a baobab tree growing out of my head, its leaves stretch up to the heavens Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402617 Share on other sites More sharing options...
Cheeez Posted December 18, 2015 Report Share Posted December 18, 2015 https://www.dbpoweramp.com/ Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402618 Share on other sites More sharing options...
th555 Posted December 19, 2015 Report Share Posted December 19, 2015 I use this, works well. http://www.cuetools.net Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide th555's signature Hide all signatures https://www.youtube.com/user/THkaas/videos https://thisjepisje.bandcamp.com/ https://soundcloud.com/th555 Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402629 Share on other sites More sharing options...
Chris Toffer Posted December 19, 2015 Report Share Posted December 19, 2015 xrecode II Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402630 Share on other sites More sharing options...
JS20 Posted December 19, 2015 Report Share Posted December 19, 2015 (edited) if you want the mp3 files to be in the same folder as the original flacs (and optionally delete the flacs when done) it would be super easy with ffmpeg.exe and a "for loop" in Windows batch: :ASSUMES THIS BATCH FILE IS IN A FOLDER THAT CONTAINS ONLY THE FLACS YOU WANT TO CONVERT :ASSUMES FFMPEG.EXE EXISTS ALONGSIDE THIS BATCH FILE :LIBMP3LAME IS SET FOR MAXIMUM QUALITY VBR0 OUTPUT @echo off if not exist ffmpeg.exe goto BAIL :CONVERT echo Converting FLACs to MP3... for /f "delims=" %%A in ('dir /s /b "%~dp0*.flac"') do ( echo Converting %%~nA%%~xA start /b "" ffmpeg -loglevel error -y -i "%%A" -acodec libmp3lame -joint_stereo 0 -compression_level 0 -q 0 -map_metadata 0 "%%~pA\%%~nA.mp3" tasklist /FI "IMAGENAME eq ffmpeg.exe" 2>NUL | find /i /c "ffmpeg.exe" >threadcount.txt for /f "tokens=*" %%B in (threadcount.txt) do ( if "%%B" GTR "6" ping 1.1.1.1 -n 1 -w %%B000 >NUL ) ) endlocal :DELETE_PREP echo. echo Done converting. echo Going to delete FLACs... echo Waiting for ffmpeg threads to finish... :TASKCHECK echo ffmpegs are not done yet... ping 1.1.1.1 -n 1 -w 5000 >nul tasklist /FI "IMAGENAME eq ffmpeg.exe" 2>NUL | find /i /n "ffmpeg.exe">NUL if "%ERRORLEVEL%"=="0" goto TASKCHECK GOTO DELETE_NOW :DELETE_NOW del /f /q threadcount.txt echo. echo ffmpeg threads are done! echo To keep FLACs, close this window WITHOUT pressing any keys. echo To delete FLACs, pause echo Are you SURE you want to delete FLACs? echo If so, pause echo Ok, deleting FLACs... for /f "delims=" %%A in ('dir /s /b "%~dp0*.flac"') do ( del /f /q "%%A" ) echo All done! pause exit :BAIL echo Error, could not find ffmpeg.exe pause What bitrate/quality are you going for, straight 320, 32-320 variable, etc? Are you trying to make them small to fit on a portable device or something? I can tweak the script to your needs. Edited December 19, 2015 by jsmcpn Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402633 Share on other sites More sharing options...
cwmbrancity Posted December 19, 2015 Report Share Posted December 19, 2015 total audio converter works alreet (cheers for dbpoweramp note too, used to use that all the time and completely forgotten post new comp) Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402641 Share on other sites More sharing options...
iococoi Posted December 19, 2015 Report Share Posted December 19, 2015 http://sector-seven.net/software/flicflac Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402717 Share on other sites More sharing options...
dr lopez Posted December 19, 2015 Author Report Share Posted December 19, 2015 thanks guys!! i love u all Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Hide dr lopez's signature Hide all signatures On 11/24/2015 at 12:29 PM, Salvatorin said: I feel there is a baobab tree growing out of my head, its leaves stretch up to the heavens Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402757 Share on other sites More sharing options...
manmower Posted December 20, 2015 Report Share Posted December 20, 2015 foobar2000 or SoX Thanks Haha Confused Sad Facepalm Burger Farnsworth Big Brain Like × Quote Link to comment https://forum.watmm.com/topic/89562-best-batch-flac-mp3-converter-for-win7/#findComment-2402987 Share on other sites More sharing options...
Recommended Posts