Click here to Skip to main content
Licence Public Domain
First Posted 24 Dec 2008
Views 48,629
Downloads 3,800
Bookmarked 33 times

DirectShow VB.NET Example

By | 24 Dec 2008 | Article
A VB.net example to show how to use DirectShow in VB.NET.

Introduction

This application can play almost all media types. DirectShow can play a lot more file types but I haven't got around to writing the code. You can use this in your applications. DirectX is very reliable. I wrote this because there where no VB.NET source code on how to use DirectShow to Play Video (.avi, .mpg, .wmv) and Play Audio (.mp3, .wav). I converted it from a C# Example that was included with the DirectShow SDK. It still needs a lot of work. This is the first one that I know of. I may be wrong.

DirShowPic.JPG

Background

I converted a C# sample from the DirectShow SDK and got started. This is a example and still needs work. I included the DirectShow Library DLL. It's very easy to use.

Using the Code

Make sure DirectShow Library DLL is referenced in your application and loads a new graph. To use this application choose the handle you want the video To be displayed on. And call the Sub OpenFile(FilePath, Handle of Window, Control Name).

    Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object,
        ByVal e As System.ComponentModel.CancelEventArgs) Handles OpenFileDialog1.FileOk
        If e.Cancel = True Then Exit Sub
        'Call The Sub to Open the File. OpenFile(FilePath, Handle of Window, Control Name)
        OpenFile(OpenFileDialog1.FileName, VidScreenBox.Handle, Me)
    End Sub

The Sub OpenFile sets the properties. It sets the owner to the Forms Handle that will play the Video if its a Video File.

Private Sub OpenFile(ByVal fName As String, ByVal VidHand As IntPtr,
    ByVal VidCtrl As System.Windows.Forms.Control)
        ' Make sure everything is closed
        filename = ""
        CloseClip()

        MaxToolStripMenuItem.Enabled = True
        MinToolStripMenuItem.Enabled = True
        CustomToolStripMenuItem.Enabled = True
        NormalPlaybackRateToolStripMenuItem.Enabled = True
        DecreasePlaybackRateToolStripMenuItem.Enabled = False
        IncreasePlaybackRateToolStripMenuItem.Enabled = True
        HalfSpeedToolStripMenuItem.Enabled = True
        DoubleSpeedToolStripMenuItem.Enabled = True
        DoubleSize200ToolStripMenuItem.Enabled = True
        NormalSize100ToolStripMenuItem.Enabled = True
        HalfSize50ToolStripMenuItem.Enabled = True
        Size75ToolStripMenuItem.Enabled = True
        FullScreenToolStripMenuItem.Enabled = True

        UseHand = VidHand 'Handle to Display Video if any
        UseCtrl = VidCtrl 'Control to Display Video if any

        filename = fName
        currentState = PlayState.Stopped 'Reset State to Stopped
        currentVolume = VolumeFull 'Reset Volume

        PlayMedia(fName) 'Call Main Sub
        Call SetFormTitle()
        Timer1.Enabled = True
    End Sub

The next Sub loads the Graph Builder and Loads the interfaces DirectShow uses to Play Audio and Render the Video to the Forms Handle. After you call these subs. You can control the Audio and Video using the DirectShow Interfaces mediaControl, mediaEventEx, basicAudio, basicVideo, videoWindow, MediaPosition...Easy.

Private Sub PlayMedia(ByVal fName As String)
        Dim hr As Integer = 0
        If fName = Nothing Then Exit Sub
        Try
            graphBuilder = DirectCast(New FilterGraph,
                IFilterGraph2) 'Load Graph Builder Device

            hr = graphBuilder.RenderFile(fName, Nothing) ' Initialize Graph Builder
            DsError.ThrowExceptionForHR(hr)

            'Load all Interfaces we will use
            mediaControl = DirectCast(graphBuilder, IMediaControl)
            mediaEventEx = DirectCast(graphBuilder, IMediaEventEx)
            mediaSeeking = DirectCast(graphBuilder, IMediaSeeking)
            mediaPosition = DirectCast(graphBuilder, IMediaPosition)
            videoWindow = DirectCast(graphBuilder, IVideoWindow)
            basicAudio = DirectCast(graphBuilder, IBasicVideo)
            basicVideo = DirectCast(graphBuilder, IBasicAudio)

            Call CheckType() 'Check to See if Audio or Video Call

            If isAudioOnly = False Then
                'Notfy Window of Video
                hr = mediaEventEx.SetNotifyWindow(UseHand, WMGraphNotify, IntPtr.Zero)
                DsError.ThrowExceptionForHR(hr)

                'Set Owner to Display Video
                hr = videoWindow.put_Owner(UseHand)
                DsError.ThrowExceptionForHR(hr)

                'Set Owner Video Style
                hr = videoWindow.put_WindowStyle(
                   WindowStyle.Child And WindowStyle.ClipSiblings And WindowStyle.ClipChildren)
                DsError.ThrowExceptionForHR(hr)
            End If

#If DEBUG Then
            rot = New DsROTEntry(graphBuilder)
#End If

            Me.Focus()
            'Update Form Title
            Call SetFormTitle()

            'Start Media
            hr = mediaControl.Run
            DsError.ThrowExceptionForHR(hr)

            currentState = PlayState.Running

            If isAudioOnly = False Then
                'Set Video Size
                hr = VideoWindowSize(1, 1)
                DsError.ThrowExceptionForHR(hr)
            End If
        Catch ex As Exception
            MsgBox("Error " & ex.Message, MsgBoxStyle.Critical, "Error")
            RaiseEvent MedClose()
        End Try
    End Sub

Points of Interest

Feel free to edit and redistribute the source code.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication

About the Author

lilbiz8

Software Developer
None
United States United States

Member

I live in Southern New Jersey. I started programming when i was 12 on
my old Packard Bell 75Mhz PC(Windows 3.1) with 2MB Ram writing QBasic in Dos. I taught myself everything I know
about writing software. I hope to make a career out of it someday.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionAutoLoop PinmemberNippo23:33 18 Jan '12  
AnswerRe: AutoLoop PinmemberMember 44931213:50 14 Mar '12  
QuestionOn win 7 mp4 is not supported Pinmemberridaria7:47 5 Aug '11  
AnswerRe: On win 7 mp4 is not supported Pinmember_Plutonix15:04 23 Dec '11  
QuestionRepeat a video continuosly Pinmemberridaria5:10 5 Aug '11  
QuestionHow to use IMpegAudioDecoder to change Audio Left/Right Channel in VCD Pinmemberbinary00117:12 13 Dec '10  
GeneralSelecting different sound card PinmemberMember 444431814:51 4 Dec '09  
GeneralRe: Selecting different sound card Pinmemberlilbiz85:48 7 Dec '09  
GeneralSelecting the sound card in Directshow for VB.Net PinmemberJ Lorkers7:18 30 Apr '09  
QuestionRe: Selecting the sound card in Directshow for VB.Net Pinmemberjohnnynine215:14 9 Sep '09  
QuestionHow can you prevent the window from resizing as you load a movie? PinmemberEyal K.5:51 8 Apr '09  
AnswerRe: How can you prevent the window from resizing as you load a movie? Pinmemberlilbiz812:47 6 Dec '09  
GeneralStill images from running video PinmemberMember 30661284:12 30 Dec '08  
GeneralRe: Still images from running video Pinmemberlilbiz818:26 8 Jan '09  
GeneralRe: Still images from running video Pinmemberologbozigee21:18 23 Jul '11  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 24 Dec 2008
Article Copyright 2008 by lilbiz8
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid