Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > General > Audio encoding

Reply
 
Thread Tools Search this Thread Display Modes
Old 6th November 2009, 01:33   #21  |  Link
AlanHK
Registered User
 
Join Date: May 2006
Posts: 237
Quote:
Originally Posted by krabapple View Post
The links to guides in English, and only English, are broken on this page

http://besweet.notrace.dk/guides.htm

Is there a reason for that?
I pointed that out three years ago, if you look earlier in the thread.
DSPguru hasn't posted anything since 2005.

I think we can assume that Besweet has been abandoned.
AlanHK is offline   Reply With Quote
Old 12th January 2010, 21:58   #22  |  Link
Tiziano
Registered User
 
Join Date: Jan 2010
Posts: 15
Is it possible with BeSweet to convert an AC3 into a MP3 or WAV file stereo downwmixed as Dolby Pro Logic II ?
Tiziano is offline   Reply With Quote
Old 13th January 2010, 02:35   #23  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
Yes, use:
-azid( -s dplii )
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Old 13th January 2010, 18:06   #24  |  Link
Tiziano
Registered User
 
Join Date: Jan 2010
Posts: 15
Thank you tebasuna51
Could you give me an example please ?

I'm new user of BeSweet, I downloaded it and its GUI after your answer.

Well suppose I have a file called:

C:\source.wav

it's a 6 channels interleaved WAV file.
I would like to donwmix it into c:\destination.wav file that's stereo Dolby Pro Logic II file ... what to I have to do ?
Because I saw a lot of settings but I think I will need few of them.

I thank you very much
Tiziano is offline   Reply With Quote
Old 14th January 2010, 01:11   #25  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
You can't use BeSweet to downmix a wav file, only the ac3 azid decoder can downmix.
Besweet has been abandoned, use Foobar2000 or BeHappy.
Check this thread http://forum.doom9.org/showthread.ph...73#post1362873

To know how BeSweet work: http://brother-john.net/besweet-reference.html

Maybe a moderator can close this thread.
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Old 14th January 2010, 12:26   #26  |  Link
Tiziano
Registered User
 
Join Date: Jan 2010
Posts: 15
Thank you very much tebasuna, I'm following now that topic and I made up there some question.
Tiziano is offline   Reply With Quote
Old 16th February 2010, 13:21   #27  |  Link
MoFoQ
Registered User
 
Join Date: Oct 2001
Posts: 68
For those looking for Msvbvm50.dll, the official MS link is here
Msvbvm60.dll is here

Though, I haven't had luck getting BeSweetGUI to work on Windows 7.
MoFoQ is offline   Reply With Quote
Old 21st April 2010, 23:04   #28  |  Link
elbarto1
Registered User
 
Join Date: Apr 2010
Posts: 1
thanks for that file MoFoQ!

Quote:
Though, I haven't had luck getting BeSweetGUI to work on Windows 7.
How to get this working on windows 7:
you just have to turn off the Aero interface or text doesnt display in the tabs correctly.

right click on the besweet gui exe icon
select "properties"
select "compatibility" tab
check box "disable visual themes"

that should do it.

Kudos to my friend nOmArch for this useful tip.
elbarto1 is offline   Reply With Quote
Old 6th June 2010, 23:08   #29  |  Link
diimaan
Registered User
 
Join Date: Jun 2010
Posts: 106
Hi,

I have some 300 mp3 songs in various folders!

say Rock is the top most folder and there are various sub-folders under the Rock folder!

I want to convert them using besweet cli(batch conversion)!
I found some code similar to this
Code:
for %%f in (*.mp3) DO (BeSweet.exe -core^( -input "%%f" -output "%%f.ogg" -logfile BeSweet.log ^) -ota( -g max ) -ogg( -q 0.600 ) -boost( /b2=4 /l=0.95 )
is it correct! and what are those %%f means?
can I use the cli for batch conversion? I saw somewhere that I can use besweet GUI for batch mode!
But I want to use cli!

I use this for single file conversions!
Code:
@echo off
"D:\BeSweetv1.5b31\BeSweet.exe" -core( -input "D:\Rock\new.mp3" -output "D:\Rock\new.ogg"  -logfile Besweet.log ) -ota( -g max ) -ogg( -q 0.600 ) -boost( /b2=4 /l=0.95 )
pause
Thanks

Last edited by diimaan; 6th June 2010 at 23:12. Reason: missed the codes
diimaan is offline   Reply With Quote
Old 7th June 2010, 00:57   #30  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
You must run this in each folder:
Code:
@echo off
for %%f in (*.mp3) do "D:\BeSweetv1.5b31\BeSweet.exe" -core( -input "%%f.mp3" -output "%%f.ogg"  -logfile Besweet.log ) -ota( -g max ) -ogg( -q 0.600 ) -boost( /b2=4 /l=0.95 )
pause
The %%f is a variable than take the name of each mp3 in the folder.
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Old 7th June 2010, 01:02   #31  |  Link
diimaan
Registered User
 
Join Date: Jun 2010
Posts: 106
Quote:
Originally Posted by tebasuna51 View Post
You must run this in each folder:
Code:
@echo off
for %%f in (*.mp3) do "D:\BeSweetv1.5b31\BeSweet.exe" -core( -input "%%f.mp3" -output "%%f.ogg"  -logfile Besweet.log ) -ota( -g max ) -ogg( -q 0.600 ) -boost( /b2=4 /l=0.95 )
pause
The %%f is a variable than take the name of each mp3 in the folder.
ohh! is there a way to include sub dirs?
diimaan is offline   Reply With Quote
Old 7th June 2010, 11:47   #32  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
If you have enabled the command extensions try with:
for /R "D:\Rock" %%f in (*.mp3) do ...
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Old 7th June 2010, 11:55   #33  |  Link
diimaan
Registered User
 
Join Date: Jun 2010
Posts: 106
Quote:
Originally Posted by tebasuna51 View Post
If you have enabled the command extensions try with:
for /R "D:\Rock" %%f in (*.mp3) do ...
thanks tebasuna51!

i'll check this one out in a small sample folder and let you know.
diimaan is offline   Reply With Quote
Old 7th June 2010, 12:03   #34  |  Link
diimaan
Registered User
 
Join Date: Jun 2010
Posts: 106
when i run the above command it says
"001 was unexpected at this time"!

i replaced the %%f with 001! am I doing anythign wrong here?
diimaan is offline   Reply With Quote
Old 7th June 2010, 15:04   #35  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
Yes, each msdos variable must be preceded by % when you run a direct command line and by %% when you use in .bat or .cmd batch files (text files with more than one command: echo..., for..., pause).

You can use %%a (in .bat file) or other letter but always preceded by %%, 001 don't make sense.
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Old 9th June 2010, 19:29   #36  |  Link
lindewell
Registered User
 
Join Date: Jun 2007
Posts: 24
Hi I'd like to know how to reset Besweet settings, I messed up directorires and it doesn't work properly now. Even if delete it and reinstall a fresh sopy it's the same. I assume the data is in the registry whoch is pretty stupid for a program like this, keeping data in the ini file is much more appropriated.
lindewell is offline   Reply With Quote
Old 20th April 2014, 06:18   #37  |  Link
junior_l3oss
Registered User
 
Join Date: Aug 2013
Posts: 11
hi.
i'm using this tool...
but i cant convert audio without sizzle...
there is sizzle on audio...

what is perfect settings for ac3 audio?
how can i convert without sizzle...
junior_l3oss is offline   Reply With Quote
Old 21st April 2014, 21:55   #38  |  Link
tebasuna51
Moderator
 
tebasuna51's Avatar
 
Join Date: Feb 2005
Location: Spain
Posts: 6,890
Quote:
Originally Posted by junior_l3oss View Post
i'm using this tool...
How?

This tool is very old, there are others to do the job.
What is your audio source?
__________________
BeHappy, AviSynth audio transcoder.
tebasuna51 is offline   Reply With Quote
Old 2nd May 2014, 04:43   #39  |  Link
junior_l3oss
Registered User
 
Join Date: Aug 2013
Posts: 11
Quote:
Originally Posted by tebasuna51 View Post
How?

This tool is very old, there are others to do the job.
What is your audio source?
thanks for your helps ....
i tested besweet working 25to 23 and standart options..
but not working same 25300 ...
there is option for manual ..but this option breaks audio file.

i wll test you said http://avisynth.nl/index.php/SSRC
junior_l3oss is offline   Reply With Quote
Old 9th May 2014, 00:30   #40  |  Link
turbojet
Registered User
 
Join Date: May 2008
Posts: 1,840
Besweet's AC3 encoders are poor at best. Aften is a much better option these days.
__________________
PC: FX-8320 GTS250 HTPC: G1610 GTX650
PotPlayer/MPC-BE LAVFilters MadVR-Bicubic75AR/Lanczos4AR/Lanczos4AR LumaSharpen -Strength0.9-Pattern3-Clamp0.1-OffsetBias2.0
turbojet is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 16:16.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.