23 May '13 - 08:47 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 
   Home   Help Search Login Register  
Pages: 1 ... 88 89 [90] 91 92 ... 135
  Reply  |  Print  
Author Topic: BASS_DSHOW Video Library  (Read 271696 times)
kremk
Posts: 1


« Reply #1780 on: 2 Oct '11 - 19:00 »
Reply with quoteQuote

I'm confused, which one is latest?

surodev link:
http://surodev.com/downloads/BASS_DSHOW2.4.2.zip (15.10.2010)

or

forum link:
http://surodev.com/downloads/BASS_DSHOW.zip (04.08.2011)

 Huh
Logged
zmmaj
Posts: 80


« Reply #1781 on: 2 Oct '11 - 19:46 »
Reply with quoteQuote

We are all waiting for newest version... just 1-2 days more.. I hope, Smiley
Logged
MB_SOFT
Posts: 246


« Reply #1782 on: 5 Oct '11 - 16:45 »
Reply with quoteQuote

I just discovered that BASS_ChannelSlideAttribute(basshandle, BASS_ATTRIB_VOL, -2, 3000) cause bass_Dshow to crash

In this scenario BASS_DSHOW crash:

' setup a mixer
mixerhandle=BASS_Mixer_StreamCreate(44100, 2, 0)
BASS_ChannelPlay(mixerhandle, False)

'open a stream
filehandle1=BASS_StreamCreateFile(False, filename1, 0, 0, BASS_STREAM_DECODE)
' and attach it to a mixer
BASS_Mixer_StreamAddChannel(mixerhandle, filehandle1, BASS_MIXER_DOWNMIX | BASS_STREAM_AUTOFREE)

' now if i slide away the stream ... bass_dshow freeze the application
BASS_ChannelSlideAttribute(filehandle1, BASS_ATTRIB_VOL, -2, 3000)  <--------------- FREEZE AT THE THE OF THE SLIDE
« Last Edit: 5 Oct '11 - 18:34 by MB_SOFT » Logged
Ionut Cristea
Posts: 1374


« Reply #1783 on: 5 Oct '11 - 16:49 »
Reply with quoteQuote

Please try with this update.

* BASS_DSHOW.zip (98.56 KB - downloaded 14 times.)
Logged
Ionut Cristea
Posts: 1374


« Reply #1784 on: 5 Oct '11 - 16:54 »
Reply with quoteQuote

Quote
We are all waiting for newest version... just 1-2 days more.. I hope, Smiley
2 more days...need to finish documentation...sorry for the delay
Logged
bensam56
Posts: 65


« Reply #1785 on: 5 Oct '11 - 17:22 »
Reply with quoteQuote

Hi, I can't able to split the audio listening. I want to listen only on Front speakers or Rear Speakers or Center speakers. If I play MP3 songs its working but If I play video files then its not working. I'm using your DSHOW .NET wrapper which you had provided.
Logged
Ionut Cristea
Posts: 1374


« Reply #1786 on: 5 Oct '11 - 17:27 »
Reply with quoteQuote

 I don't think that i understand what you mean
Logged
Ionut Cristea
Posts: 1374


« Reply #1787 on: 5 Oct '11 - 18:13 »
Reply with quoteQuote

 For those who want to try the new mixing video capability here is a demo. You'll see that the streams can be control independently

* Bin.zip (362.83 KB - downloaded 22 times.)
Logged
MB_SOFT
Posts: 246


« Reply #1788 on: 5 Oct '11 - 18:34 »
Reply with quoteQuote

Please try with this update.

Thank you for the reply. I tried the last version but nothing changes, still freeze when calling:
BASS_ChannelSlideAttribute(basshandle, BASS_ATTRIB_VOL, -2, 3000)
Logged
Ionut Cristea
Posts: 1374


« Reply #1789 on: 5 Oct '11 - 19:27 »
Reply with quoteQuote

I will try to reproduce your problem and see what i can do ab
out this
Logged
MB_SOFT
Posts: 246


« Reply #1790 on: 5 Oct '11 - 23:00 »
Reply with quoteQuote

I will try to reproduce your problem and see what i can do ab
out this

thank you ... just try those lines and you'll see the problem ...

mixerhandle=BASS_Mixer_StreamCreate(44100, 2, 0)
BASS_ChannelPlay(mixerhandle, False)
filehandle1=BASS_StreamCreateFile(False, filename1, 0, 0, BASS_STREAM_DECODE)
BASS_Mixer_StreamAddChannel(mixerhandle, filehandle1, BASS_MIXER_DOWNMIX | BASS_STREAM_AUTOFREE)
BASS_ChannelSlideAttribute(filehandle1, BASS_ATTRIB_VOL, -2, 3000)
Logged
zmmaj
Posts: 80


« Reply #1791 on: 8 Oct '11 - 07:00 »
Reply with quoteQuote

Quote
We are all waiting for newest version... just 1-2 days more.. I hope, Smiley
2 more days...need to finish documentation...sorry for the delay

Nothing yet Sad
Logged
Ionut Cristea
Posts: 1374


« Reply #1792 on: 8 Oct '11 - 13:14 »
Reply with quoteQuote

 For those that can't wait for the official release of BASS_DSHOW/xVIdeo ,here is the "latest" with some C++/Delphi/VB samples.

http://www.2shared.com/file/mlaUByLg/BASS_DSHOW.html
Logged
zmmaj
Posts: 80


« Reply #1793 on: 8 Oct '11 - 18:29 »
Reply with quoteQuote

 Sad(

This
int     xVideoDEF(xVideo_CaptureGetDevices)(DWORD devicetype,CallBackEnumerator *callback,void* user);

and this
xVideoDEF(xVideo_ChannelGetConnectedFilters)(HSTREAM chan,CallBackConnectedFilters * CALLBack,void *user);
and
 xVideoDEF(xVideo_GetAudioRenderers)(CallBackEnumerator *callback,void* user);

are a same... Unusable  Sad((
nothing changed... I can't got one by one conected device... And I can't make a drop-down box in dll..

tnx for your time... Sad((
Logged
Ionut Cristea
Posts: 1374


« Reply #1794 on: 8 Oct '11 - 18:43 »
Reply with quoteQuote

  a new function will be available tommorow...actually 2(1 to get total items from callback, and one that will retrieve the item by index )>
Logged
zmmaj
Posts: 80


« Reply #1795 on: 8 Oct '11 - 19:09 »
Reply with quoteQuote

YESSS !!!
Actualy I was resolved xVideo_CaptureGetDevices()... and I have total numbers of available devices...
 but how to get DeviceProfiles and ConnectedFilters one by one is mystery for me Sad

Tnx very much...
Until tomorrow Smiley)

Logged
maito
Posts: 3


« Reply #1796 on: 8 Oct '11 - 22:22 »
Reply with quoteQuote

where I can find an example souces in vb6? I was so confused... Cry Embarrassed
Logged
Ionut Cristea
Posts: 1374


« Reply #1797 on: 8 Oct '11 - 22:29 »
Reply with quoteQuote

 Here are some samples : http://www.2shared.com/file/mlaUByLg/BASS_DSHOW.html
Logged
Subhendu
Guest
« Reply #1798 on: 9 Oct '11 - 05:10 »
Reply with quoteQuote

some vb6 source code attach in your BASS_DSHOW.zip\ VB\--modxVideo.bas
                                                                            Bin\
                                                                          Demo\
                                                                          FXtest\

Check it, bye
Logged
zmmaj
Posts: 80


« Reply #1799 on: 9 Oct '11 - 19:04 »
Reply with quoteQuote

  a new function will be available tommorow...actually 2(1 to get total items from callback, and one that will retrieve the item by index )>

Now is tommorow... Smiley
Logged
Pages: 1 ... 88 89 [90] 91 92 ... 135
  Reply  |  Print  
 
Jump to:  

Powered by SMF 1.1.18 | SMF © 2013, Simple Machines