Log in

View Full Version : Newbie: BeSweet syntax confusion


jagdriver
14th May 2007, 17:13
I'm having a syntax problem with BeSweet in converting a WAV to MP3 at 192 kbps. Here's my sample:

BESWEET -core( -input "D:\Some Folder\Track01.wav" -output "D:\Some Folder\Track01.mp3") -lame (-b 192)

When I run this, it's reported that the sampling is still the default 128kbps. What am I missing here?

tebasuna51
14th May 2007, 17:59
Check the spaces, must be:
-lame( -b 192 )

jagdriver
14th May 2007, 18:05
That, PLUS I needed a space after the trailing mp3" and before the ) in the -core section.

NOW... can you you give me a clue as to how to employ 48 versus 44.1KHz using the SHIBATCH switches? I want to make sure I get the syntax correct.

tebasuna51
14th May 2007, 19:03
To change samplerate with BeSweet use:
-ssrc( --rate 44100 )
or
-ssrc( --rate 48000 )

Maybe you need the BeSweet Commandline Reference 2006-03-21 (http://brother-john.net/files/besweet_commandline_reference.zip).

jagdriver
14th May 2007, 19:55
Yup....thanks!