25 May '13 - 09:54 *
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 ... 119 120 [121] 122 123 ... 135
  Reply  |  Print  
Author Topic: BASS_DSHOW Video Library  (Read 272112 times)
DeadIsaac
Posts: 11


« Reply #2400 on: 21 Mar '12 - 19:00 »
Reply with quoteQuote

OK I have found the problem!!!! For other proger put this text in Form_Load
BassNet.OmitCheckVersion = True
Logged
bensam56
Posts: 65


« Reply #2401 on: 22 Mar '12 - 06:52 »
Reply with quoteQuote

Hello Ionut, Did you got my code on your inbox? Any reply!

Regards,
Ben
Logged
smoodilo
Guest
« Reply #2402 on: 22 Mar '12 - 07:31 »
Reply with quoteQuote

OK I have found the problem!!!! For other proger put this text in Form_Load
BassNet.OmitCheckVersion = True

Thanks. I was looking for that.

Logged
DeadIsaac
Posts: 11


« Reply #2403 on: 22 Mar '12 - 11:41 »
Reply with quoteQuote

You're welcome


  Grin
« Last Edit: 22 Mar '12 - 11:46 by DeadIsaac » Logged
smoodlio
Guest
« Reply #2404 on: 2 Apr '12 - 15:51 »
Reply with quoteQuote

Ionut,

I found a bug....

Everytime I press pause and do Bass_Channelsetposition the video starts playing. I don't want the video to start playing before I hit play again.

Any idea?

Logged
Ionut Cristea
Posts: 1377


« Reply #2405 on: 2 Apr '12 - 18:16 »
Reply with quoteQuote

  I see... i will post an update as soon as possible
Logged
Ionut Cristea
Posts: 1377


« Reply #2406 on: 2 Apr '12 - 18:32 »
Reply with quoteQuote

  Here is an update. Note that this version require BASSMix addon.

* BASS_DSHOW.zip (108.46 KB - downloaded 30 times.)
Logged
stevenmmm
Posts: 92


« Reply #2407 on: 2 Apr '12 - 20:01 »
Reply with quoteQuote

do you have a list of what has been changed and fixed?
Logged
smodilo
Posts: 47


« Reply #2408 on: 2 Apr '12 - 20:08 »
Reply with quoteQuote

Thanks Ionut for the quick reply,

It's still the same though. I can pause, but as soon as I ChannelSetPosition the track starts playing again.

<EDIT>
Can anybody confirm this issue? I can't continue my work until this is fixed :-(



 Huh
HELP!

Is anybody using DSHOW? And does pausing and SetPosition work correct?Huh
(Meaning you can set the position without playing starting on its own)


Please!
 Huh










« Last Edit: 2 May '12 - 17:16 by smodilo » Logged
Seon
Posts: 1


« Reply #2409 on: 11 Apr '12 - 21:56 »
Reply with quoteQuote

I wonder if the DeckLink is compatible with BASS_DSHOW.

I want to build a playlist and can not have black spaces between the videos.

Thanks for helping
Logged
ken
Posts: 630


« Reply #2410 on: 12 Apr '12 - 12:02 »
Reply with quoteQuote

I wonder if the DeckLink is compatible with BASS_DSHOW.

I want to build a playlist and can not have black spaces between the videos.

Thanks for helping

I think Ionut need to make a special Renderer for DeckLink cards, I have some Intensity Pro but the are not supported. Input from these cards would also be nice.

There is a free API for these cards here: http://www.blackmagic-design.com/support/sdks/
Logged
Ionut Cristea
Posts: 1377


« Reply #2411 on: 13 Apr '12 - 13:28 »
Reply with quoteQuote

Some decklink cards have been tested without problems on BASS_DSHOW. You only need to load its filter via xVideo_LoadPluginDS
Logged
smoodilo
Guest
« Reply #2412 on: 16 Apr '12 - 13:27 »
Reply with quoteQuote

Ionut,

Could you please have a look at why a paused stream starts playing after "SetPosition"?
Thank you!



Logged
Ionut Cristea
Posts: 1377


« Reply #2413 on: 16 Apr '12 - 22:55 »
Reply with quoteQuote

  I;m sorry but i can;t reproduce the problem.
Logged
grab
Guest
« Reply #2414 on: 19 Apr '12 - 08:31 »
Reply with quoteQuote

...
Imports Un4seen.Bass
Imports Un4seen.Bass.AddOn.Fx

Public class FrmMain

Private Sub FrmMain_Load

     initbass  'I put the init in a sub

     Bass.BASS_PluginLoad("bass_aac.dll")
     Bass.BASS_PluginLoad("basswma.dll")
     Bass.BASS_PluginLoad("bass_fx.dll")
     Bass.BASS_PluginLoad("bass_ac3.dll")
     Bass.BASS_PluginLoad("bassmix.dll")
     Bass.BASS_PluginLoad("bass_dshow.dll")

     Un4seen.Bass.AddOn.DShow.BassDShow.BASS_DSHOW_Init(FrmMain.Handle, _
     AddOn.DShow.BASSDSHOWInit.BASS_DSHOW_Default)
End Sub


Public Sub PlayVideo handles button1.click

PL1 = Bass.BASS_StreamCreateFile("c:\test.m4v", 0, 0, _
BASSFlag.BASS_STREAM_AUTOFREE Or OUTPUT)

Bass.BASS_ChannelPlay(PL1, False)
                    
End Class


bassmix implies the need for some changes? I'm confused.

must be loaded bassmix with BASS_PluginLoad? (my bassmix.dll version has no entry for BASSplugin())

or

I have to create the mix and use the bassmix-handle in chan parameter of xVideo_ChannelSetWindow?

thanks.
Logged
Ionut Cristea
Posts: 1377


« Reply #2415 on: 19 Apr '12 - 09:10 »
Reply with quoteQuote

BASSmix is not a input bass plugin, so don't load it with PluginLoad. Use only BASS_PluginLoad("bass_dshow.dll"...) . Anyway, bassmix must be in the same directory as bass_dshow, so don't forget that.
Logged
smoodilo
Guest
« Reply #2416 on: 20 Apr '12 - 22:47 »
Reply with quoteQuote

  I;m sorry but i can;t reproduce the problem.

I'm sorry, but what's not to reproduce? I tested with a simple test application with one small form and only this code:

-------
Imports Un4seen.Bass
Imports System.Net


Public Class Form1
    BASS_PluginLoad("bass_dshow.dll")
    BassDShow.BASS_DSHOW_Init(FrmMain.MyPicturebox1.Handle, _       
    AddOn.DShow.BASSDSHOWInit.BASS_DSHOW_Default)

    Dim testvideo As Integer

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        testvideo = BASS_StreamCreateFile("c:\test.flv", 0, 0, BASSFlag.BASS_SPEAKER_PAIR1)
        BassDShow.BASS_DSHOW_ChannelSetWindow(testvideo, MyPicturebox1.Handle, 1)
    End Sub

    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
        BASS_ChannelPlay(testvideo, False)
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        BASS_ChannelPause(testvideo)
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        BASS_ChannelSetPosition(testvideo, 1)
    End Sub
End Class

-----------------------------------------------------------------


If I run the video and pause it, the video starts playing when I press Button 2. Why???
Logged
ElCamino
Posts: 2


« Reply #2417 on: 25 Apr '12 - 06:34 »
Reply with quoteQuote

first of all, thanks for such a nice plugin.

i have a quiestion, in some post back i see someone asking for youtube videos, they were able to be playerd using "StreamCreateUrl"
.i dont see this function, either on bass.net or with youre .NET example, please confirm if this function is still available, or has been removed. i would really like to try it as is the pice missing from a project im working on. thanks in advance.
Logged
Ryota
Posts: 12


« Reply #2418 on: 25 Apr '12 - 14:27 »
Reply with quoteQuote

Hi, Ionut.

I want to change pitch, tempo using BASS_DSHOW in my C++ windows program.
But is xVideo_FX_PITCHTEMPO flag not available on BASS_DSHOW?
Logged
Ionut Cristea
Posts: 1377


« Reply #2419 on: 25 Apr '12 - 15:27 »
Reply with quoteQuote

Quote
Hi, Ionut.

I want to change pitch, tempo using BASS_DSHOW in my C++ windows program.
But is xVideo_FX_PITCHTEMPO flag not available on BASS_DSHOW?

Nope is not available , but you can use BASS_FX addon for that.

Quote
first of all, thanks for such a nice plugin.

i have a quiestion, in some post back i see someone asking for youtube videos, they were able to be playerd using "StreamCreateUrl"
.i dont see this function, either on bass.net or with youre .NET example, please confirm if this function is still available, or has been removed. i would really like to try it as is the pice missing from a project im working on. thanks in advance.

StreamCreateURL is supported by streamcreateFile
Logged
Pages: 1 ... 119 120 [121] 122 123 ... 135
  Reply  |  Print  
 
Jump to:  

Powered by SMF 1.1.18 | SMF © 2013, Simple Machines