22 May '13 - 03:29 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  Developments / BASS / Bass .NET on: 20 Jul '06 - 09:50
I have a very difficult question for the community...
Well I have a project in my mind to develop using Bass or Bass.NET,
and I don't know how much is the lack of performance I get using the .NET 'wrapper'...
The application I want to create is something regarding Live Performances (and uses also ASIO - VST)...

Can someone help me?

Good Coding to everyone
ReplyReply Reply with quoteQuote
2  Developments / BASS / Re: To Ian: Asio Channel Pause on: 6 Feb '06 - 20:00
Thank you, Ian...
You're always very quick to answer and very precise...
You're doin' a very good work (It's since the very first release I am using BASS)
ReplyReply Reply with quoteQuote
3  Developments / BASS / To Ian: Asio Channel Pause on: 6 Feb '06 - 10:55
I have a question for Ian...
what happened when I pause an ASIO  channel with the ASIO_ChannelPause function?
Does it suspend the playback and after restart it from the point it was paused? Or does it do something like setting to zero the volume?

In other words, if I assign to the channel through the ASIOproc a BASS_stream, and I pause the ASIO channel does it pause also the decoding BASS_stream or I have to pause it with a piece of code? Thanx A lot...
ReplyReply Reply with quoteQuote
4  Developments / BASS / To Ian: Bass 2.2 on: 30 Sep '05 - 12:35
Hi Ian,

what are the new features of "Bass 2.2", which I heard I might be an imminent release??

Thanx for the good Job you are doing...
Alex
ReplyReply Reply with quoteQuote
5  Developments / BASS / Re: Help with ChannelGetData on: 29 Sep '05 - 16:02
Well, it reports no errors, it simply exits from the application I'm testing..., also with the FLOAT flag... thax for you patience
ReplyReply Reply with quoteQuote
6  Developments / BASS / Re: Help with ChannelGetData on: 29 Sep '05 - 12:52
Thanx for the tips but the last function it returns to me a negative value or it ends the execution of the program, like in an" Access memory" violation! Can anyone help me??
Thanx, Alex
ReplyReply Reply with quoteQuote
7  Developments / BASS / Help with ChannelGetData on: 27 Sep '05 - 17:33
I need help because using any language of The VS beta 2
The Bass_ChannelGetData function seems not to load datas into the array!!!!!!


for example the following code that might return the silence part of a stream file giving it a decoding channel and the threshold of noise, it return always something as it doesn't load nothing into the buf array of longs


PLEASE HELP ME, I'M GOING CRAZY!!!!!!!!!!!!!!!!!!!!!!!!!!!!


long UtilClass::DetectSilence(long chan,int threshold){

           
            long count =0;
//            unsigned long chan = 0;
            int a = 0;
            int b=0;
            int errornum =0;

            //chan = BASS_StreamCreateFile(0,&filename,0,0,BASS_STREAM_DECODE);
            errornum = BASS_ErrorGetCode();
            if(chan == 0){return 0;}

        //do{
            float buf[50000];
            b = BASS_ChannelGetData(chan, buf,  20000); //decode some data           
            b = b / 2; //bytes -> samples
            errornum = BASS_ErrorGetCode();
            do{      //count silent samples
                a = a + 1;           
            }while ((a<b) && (abs(buf[a]) <= threshold));
            count = count + (a*2);
            if(a < b){//sound has bagun
                //move back to a quieter sample (to avoid "click")
                do{
                    a = a - 1;
                    count = count - 2;
                }while ((a > 0) & (abs(buf[a]) > threshold / 4));
            }
        //} while (BASS_ChannelIsActive(chan));

        //StartSilence = count;
        return count;

}
ReplyReply Reply with quoteQuote
8  Developments / BASS / Re:Request: VB6 code example: LOOPING on: 28 Sep '03 - 17:20
Hi Autumn_Water can you send also to me your code so I can help you, please?
ReplyReply Reply with quoteQuote
9  Developments / BASS / How Can I merge Streams on: 7 Aug '03 - 17:09
Hi everybody!
I have a question to the world.

1.I need a way to merge two streams into one so i can apply an effect to both the streams without apply it twice.
How can I do this?
can someone help me?
(possibly in Delphi, but it's good in every language)

2.How can I merge all the sample channels into a stream?

Thanx Everybody.
Alexander... Cool
ReplyReply Reply with quoteQuote
Pages: [1]
Powered by SMF 1.1.18 | SMF © 2013, Simple Machines