Show Posts
|
|
Pages: [1] 2 3 ... 18
|
|
1
|
Developments / BASS / Re: BASS_DSHOW Video Library
|
on: 24 Dec '12 - 04:51
|
|
axisdj is there a compelling reason you are still using vb6, instead of vb.net? It's been out for a decade. They have a version of vb.net that is free too (the express edition).
I have had to do some vb6 coding at my work, and I've since upgraded the projects to vb.net since it is a much better IDE. You should consider it. There is nothing you can do in vb6 that you can't do in vb.net.
Sincerely,
Rick
|
Reply
Quote
|
|
|
2
|
Developments / BASS / Re: BASS_DSHOW Video Library
|
on: 13 Dec '12 - 16:00
|
My concerns as well. Ionut, you have potentially a great product in BASS_DSHOW / xVideo - I know because I can't find anything else that does the job so comprehensively. Looking at your web site it seems you are now working on some ASIO renderer - how about getting BASS_DSHOW finished? If you have lost interest in the product then maybe you could sell the source to someone. Everyone who follows this forum is a programmer so I would expect you would find someone willing to take it on.
I agree. Please switch back to dshow. I've paid for it, and I would like a working product. This is seeming like like the second or third time in the last ten years people have started a video addon to bass and have not finished it. Like I said earlier, Please finish the product, don't add new features, or work on other products. I have waited for YEARS to have a working video program. Sincerely, Rick
|
Reply
Quote
|
|
|
4
|
Developments / BASS / Re: Is my code wrong?
|
on: 7 May '12 - 15:43
|
Your code looks fine as far as I can see. So how have you initialized BASS? And did you get the same problem without the Tempo stream?
No, I am trying to use the tempo, so I can change pitch. I initialized bass just fine, with 44100, -1 device. I tried multiple files, and it occassionally works, but most of the time it stutters. I am starting to think it is the computer.
|
Reply
Quote
|
|
|
5
|
Developments / BASS / Is my code wrong?
|
on: 6 May '12 - 20:20
|
It's been a while since I've played with the api, and for some reason I cannot get it to play correctly. It plays only the first couple notes, stuttering. Here's the code int streamId = Un4seen.Bass.Bass.BASS_StreamCreateFile(fileName, 0L, 0L, BASSFlag.BASS_SAMPLE_FLOAT | BASSFlag.BASS_STREAM_DECODE | BASSFlag.BASS_STREAM_PRESCAN); if (streamId != 0) { int fx = Un4seen.Bass.AddOn.Fx.BassFx.BASS_FX_TempoCreate(streamId, BASSFlag.BASS_FX_FREESOURCE | BASSFlag.BASS_STREAM_AUTOFREE);
if (fx != 0) { Un4seen.Bass.Bass.BASS_ChannelPlay(fx, false); } } I am using the bass.net library, and many songs, it is just clicking...
|
Reply
Quote
|
|
|
7
|
Developments / BASS / Re: BASS.NET API 2.4.8.3
|
on: 24 Dec '11 - 04:15
|
HI, i had download BASS.NET API 2.4.8.3 I install and open C# example, i try to run but, i got error can not load bass.dll, basswma.dll
I reconize that BASS.NET just a wraper for bass.dll, ... to run example i must download bass.dll, basswma.dll, ...
But i don't know where to download the whole library. Have any dll file only bass.dll and basswma.dll or have more
Please help me.
You have to download bass.dll and the others, then put them in the bin\debug folder of your example program. Also, if you have a x64 machine, you have to change the project config to x86 so it runs. Rick
|
Reply
Quote
|
|
|
8
|
Developments / BASS / Re: Some questions from a BASS newbee
|
on: 22 Dec '11 - 23:53
|
|
For a position slider, set the max to be the length of the track in seconds, then get the position, convert to seconds with bytes2seconds and then set the slider position in a timer.
ChannelIsActive shows the state of the stream e.g. paused/playing/stalled.
For equality in pos/length convert to seconds like above.
|
Reply
Quote
|
|
|
11
|
Developments / BASS / Re: BASS_DSHOW Video Library
|
on: 21 Nov '11 - 15:47
|
I'm not sure you are using latest version of BASS_DSHOW. All BASS_DSHOW functions start with xVideo_
Ionut, radio42 "trims" the api so it is shorter. so xVideo_ becomes BASS_DSHOW_ Rick
|
Reply
Quote
|
|
|
16
|
Developments / BASS / Re: BASS_DSHOW
|
on: 11 Jun '11 - 18:27
|
|
Hi Ionut,
Here's my thoughts on this new release June 11, 2011 for the demo.exe. I tried wmv files and karaoke cd+g zip files. It played both of them fine. I tried VMR7 Windowed and the EVR renderer, as well as null audio renderer.
1. It should say video renderer/audio renderer not video renderer/video renderer. 2. Volume does not work. Alpha doesn't work. Don't really care about alpha. 3. Pitch and tempo work great, but you can't slow the tempo down, only up. 4. None of the color controls work, but I don't think that's too important vs playback. 5. What is Rate and what is it supposed to do?
So far, so good. Now, if we could just get two things: 1. Video as a decoding channel so we can plug it into bass mixer and do FX on it. 2. Multiple video outputs.
I'm glad you've had time to work on it. I hope you can finish this soon! I am waiting on your project to release mine.
Thank you!
Rick
|
Reply
Quote
|
|
|