|
Astro29
Posts: 180
|
 |
« Reply #2240 on: 12 Dec '11 - 16:50 » |
Quote
|
GOOD WORK!! Can't wait to see it 
|
|
|
|
|
Logged
|
|
|
|
|
bensam56
Posts: 65
|
 |
« Reply #2241 on: 12 Dec '11 - 22:20 » |
Quote
|
Hello Ionut, Any updates for my request?
|
|
|
|
|
Logged
|
|
|
|
|
ken
Posts: 630
|
 |
« Reply #2242 on: 12 Dec '11 - 22:38 » |
Quote
|
1) stream a channel to a virtual webcam(this virtual webcam can be used with adobe flash,YM,Skype, and any other software that work with capture devices).
Ionut, I hope I can use the "output" (in mix mode) not only a single channel. Look forward to test it. /Ken
|
|
|
|
|
Logged
|
|
|
|
|
Subbu
Posts: 40
|
 |
« Reply #2243 on: 13 Dec '11 - 05:36 » |
Quote
|
Hi Ionut ,
i want to change the audio in video stream, how can i change the audios
|
|
|
|
|
Logged
|
|
|
|
|
subh
Posts: 159
|
 |
« Reply #2244 on: 13 Dec '11 - 13:42 » |
Quote
|
Hi Ionut need new code for xVideo media player add any new funtion please puload latest version or demo (example) code
yours ever Subh
|
|
|
|
|
Logged
|
|
|
|
|
Ionut Cristea
Posts: 1382
|
 |
« Reply #2245 on: 13 Dec '11 - 14:12 » |
Quote
|
It will be available when i release the new version 
|
|
|
|
|
Logged
|
|
|
|
|
bsoft1
Posts: 4
|
 |
« Reply #2246 on: 14 Dec '11 - 07:26 » |
Quote
|
Una chiamata alla funzione PInvoke 'Bass.Net!Un4seen.Bass.AddOn.DShow.BassDShow::BASS_DSHOW_ChannelSetAttribute' ha sbilanciato lo stack. Questo problema puņ verificarsi quando la firma PInvoke gestita non corrisponde alla firma di destinazione non gestita. Verificare che la convenzione di chiamata e i parametri della firma PInvoke corrispondano alla firma di destinazione non gestita.
A call to PInvoke function 'Bass.Net! Un4seen.Bass.AddOn.DShow.BassDShow: BASS_DSHOW_ChannelSetAttribute' has unbalanced the stack. This problem can occur when the managed PInvoke signature does not match the unmanaged target signature. Verify that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.
I was not able to resolve this error. please help me
|
|
|
|
|
Logged
|
|
|
|
|
Astro29
Posts: 180
|
 |
« Reply #2247 on: 14 Dec '11 - 07:27 » |
Quote
|
I was not able to resolve this error. please help me
Edit: changed my answer. What language are you using? VB or C#? How are you using the call, what are you passing to it, etc?
|
|
|
|
« Last Edit: 14 Dec '11 - 07:29 by Astro29 »
|
Logged
|
|
|
|
|
bsoft1
Posts: 4
|
 |
« Reply #2248 on: 14 Dec '11 - 08:02 » |
Quote
|
Sorry,
use visual studio 2010 win 7 64bit
the error code is:
BASS_DSHOW_ChannelSetAttribute(HandleVideo, BASSDSHOWAttribute.BASS_DSHOW_ATTRIB_VOL, (vVolume / 100))
HandleVideo is integer (Vvolume/100) is double
grazie
|
|
|
|
|
Logged
|
|
|
|
|
Astro29
Posts: 180
|
 |
« Reply #2249 on: 14 Dec '11 - 08:04 » |
Quote
|
Sorry, use visual studio 2010 win 7 64bit
Ok, well, it might be an error in DSHOW but, if you're using BASS.DLL, you can pass that attribute back to BASS (as BASS handles the audio decoding anyway)
|
|
|
|
|
Logged
|
|
|
|
|
radio42
Posts: 4030
|
 |
« Reply #2250 on: 14 Dec '11 - 08:09 » |
Quote
|
It seems, that the signature of "BASS_DSHOW_ChannelSetAttribute" was changed by Ionut :-(
Currently Bass.Net uses this signature: void BASS_DSHOW_ChannelSetAttribute(int handle, BASSDSHOWAttribute attrib, double newvalue);
This seems with the latest version of BASS_DSHOW incorrect and should instead be: void BASS_DSHOW_ChannelSetAttribute(int handle, BASSDSHOWAttribute attrib, float newvalue);
I must admit, that there is no history of changes available for BASS_DSHOW - so I have no clue when the API is changing or what has changed between the latest versions. So please Ionut - include these changes in a history log, so that I am able to keep track of it. Otherwise it will be quite impossible to keep Bass.Net up to date in respect of BASS_DSHOW!
|
|
|
|
|
Logged
|
|
|
|
|
smoodilo
Guest
|
 |
« Reply #2251 on: 14 Dec '11 - 08:16 » |
Quote
|
Is not necesary in that order: Example: initialize xVideo on main monitor Create a window on a second monitor. create a stream add a new video window on the second monitor. I will make a demo for you.  And what if I drag the video from one screen to another? It will still crash. Any news on this? Just test it and you'll see what I mean.
|
|
|
|
|
Logged
|
|
|
|
|
bsoft1
Posts: 4
|
 |
« Reply #2252 on: 14 Dec '11 - 08:24 » |
Quote
|
Sorry,
float in vs2010 = double
I tried but it does not work always the same error
A call to PInvoke function 'Bass.Net! Un4seen.Bass.AddOn.DShow.BassDShow: BASS_DSHOW_ChannelSetAttribute' has unbalanced the stack. This problem can occur when the managed PInvoke signature does not match the unmanaged target signature. Verify that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.
|
|
|
|
|
Logged
|
|
|
|
|
Astro29
Posts: 180
|
 |
« Reply #2253 on: 14 Dec '11 - 08:41 » |
Quote
|
Sorry,
float in vs2010 = double
No, float in C# == double in VB, i know what it means. It most likely is either you're passing a negative number to the function, or the declaration in Bass.Net.dll is wrong.
|
|
|
|
|
Logged
|
|
|
|
|
bsoft1
Posts: 4
|
 |
« Reply #2254 on: 14 Dec '11 - 08:47 » |
Quote
|
ok grazie
I temporarily solved by disabling the detection of the type of error from the server to debug managed
grazie a tutti e complimenti per queste spendide librerie
thanks to everyone and congratulations on this splendid libraries
|
|
|
|
|
Logged
|
|
|
|
|
Ionut Cristea
Posts: 1382
|
 |
« Reply #2255 on: 14 Dec '11 - 13:26 » |
Quote
|
New BASS_DSHOW version released. Check first post for download and infos 
|
|
|
|
|
Logged
|
|
|
|
|
radio42
Posts: 4030
|
 |
« Reply #2256 on: 14 Dec '11 - 13:36 » |
Quote
|
As said, the declaration in Bass.Net.dll is wrong - due to an unknown API change in BASS_DSHOW.
|
|
|
|
|
Logged
|
|
|
|
|
ken
Posts: 630
|
 |
« Reply #2257 on: 14 Dec '11 - 22:07 » |
Quote
|
New BASS_DSHOW version released. Check first post for download and infos  Ionut, I can't find the "xVirtualCam" filter. /Ken
|
|
|
|
|
Logged
|
|
|
|
|
Ionut Cristea
Posts: 1382
|
 |
« Reply #2258 on: 14 Dec '11 - 22:13 » |
Quote
|
That addon is just on request, and only for registered users. If you want to give it a try drop me a email
|
|
|
|
|
Logged
|
|
|
|
|
Astro29
Posts: 180
|
 |
« Reply #2259 on: 14 Dec '11 - 22:38 » |
Quote
|
As said, the declaration in Bass.Net.dll is wrong - due to an unknown API change in BASS_DSHOW.
Yeah, sorry, I didn't see that post first before his question
|
|
|
|
« Last Edit: 14 Dec '11 - 23:21 by Astro29 »
|
Logged
|
|
|
|
|