View Full Version : Batch normalize mp2s in Besplit
towknee
28th November 2003, 23:40
Im using BeSplit v0.9b6 to normalize mp2 files.
This is working so well i want to batch normalize mp2s. Any ideas about how i go about doing this? Ive made several attempts with various switches and im not having any luck. Is this even an option?
KpeX
29th November 2003, 00:59
Hi towknee,
I'm assuming your running Windows of some kind - Are you looking to batch rip within the GUI or are you trying to script your own batch file? If you're trying to do the latter, post an example command line and I'll give you an example batch, and post your OS as well. Basically my recommendation would be to create a list file and parse that list file using 'for' to run BeSplit on each file.
towknee
29th November 2003, 01:18
Sure thanks. Id be happy using a batch script.
Heres the command line i use:
BeSplit -core( -input infile.mp2 -output outfile.mp2 -log BeSplit.txt -type mp2 ) -ota( -G max )
Im running windows 2000 pro. Thanks that was fast.
KpeX
29th November 2003, 01:48
Okay, here's how I'd do it. Get all the MP2 files you want to normalize in one directory, then open up a command window in that directory and type dir /b *.mp2>normalize.lst Now open up notepad and type the following code:
for /f "tokens=*" %%D in ('type normalize.lst') do START /wait path\Besplit.exe -core( -input "%%D" -output "%%D_new.mp2" -logfilea BeSplit.txt -type mp2 ) -ota( -G max )
Replacing the word 'path' with your path to BeSplit.exe from that directory, or if you want to simplify things, just put Besplit.exe in the same directory as all the .mp2 files. Then save the file as Anything.bat in that same directory and run it. Let me know if this works, I didn't have time to test it at the moment. Hope this helps,
towknee
29th November 2003, 03:32
Yes sir that worked! Thank you very much, im sure other people will find this post very helpful if they are in a simular situation. Thanks again :D -Tony
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.