Platforms to show: All Mac Windows Linux Cross-Platform

/Win/DirectShow/Select and Capture


Required plugins for this example: MBS Win Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Win/DirectShow/Select and Capture

This example is the version from Thu, 31th Jul 2019.

Project "Select and Capture.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
EventHandler Sub Open() if TargetWin32 then // ok else MsgBox "This example requires Windows." quit end if End EventHandler
End Class
Class Window1 Inherits Window
Control Canvas1 Inherits Canvas
ControlInstance Canvas1 Inherits Canvas
End Control
Control List Inherits Listbox
ControlInstance List Inherits Listbox
EventHandler Sub Change() ConnectButton.Enabled = me.ListIndex >= 0 End EventHandler
End Control
Control ConnectButton Inherits BevelButton
ControlInstance ConnectButton Inherits BevelButton
EventHandler Sub Action() dim dev as DirectShowMonikerMBS = List.RowTag(List.ListIndex) dim f as DirectShowBaseFilterMBS // Bind Moniker to a filter object f = dev.BindBaseFilter if f<>Nil then System.DebugLog dev.DisplayName 'Title = "Connected to "+dev.DisplayName CaptureVideo f end if End EventHandler
End Control
EventHandler Sub Close() CloseInterfaces End EventHandler
EventHandler Sub Maximize() if mc<>Nil then mc.run end if End EventHandler
EventHandler Sub Minimize() if mc<>Nil then mc.StopWhenReady end if End EventHandler
EventHandler Sub Open() if TargetWin32 then 'list DirectShowEnumMonikerMBS.CLSID_AudioCompressorCategory, "Audio Compressor" 'list DirectShowEnumMonikerMBS.CLSID_AudioInputDeviceCategory, "Audio Input" 'list DirectShowEnumMonikerMBS.CLSID_AudioRendererCategory, "Audio Renderer" 'list DirectShowEnumMonikerMBS.CLSID_DeviceControlCategory, "Device Control" 'list DirectShowEnumMonikerMBS.CLSID_DVDHWDecodersCategory, "DVD Hardware Decoder" 'list DirectShowEnumMonikerMBS.CLSID_LegacyAmFilterCategory, "Legacy AmFilter" 'list DirectShowEnumMonikerMBS.CLSID_MidiRendererCategory, "Midi Renderer" 'list DirectShowEnumMonikerMBS.CLSID_TransmitCategory, "Transcoder" 'list DirectShowEnumMonikerMBS.CLSID_VideoCompressorCategory, "Video Compressor" list DirectShowEnumMonikerMBS.CLSID_VideoInputDeviceCategory, "Video Input" end if End EventHandler
EventHandler Sub Resized() ResizeVideoWindow End EventHandler
EventHandler Sub Resizing() ResizeVideoWindow End EventHandler
Function AblageRecord() As Boolean dim f as FolderItem = GetSaveFolderItem(FileTypes1.All, "test.avi") if f = nil then Return true mc.stop // record video dim type as DirectShowGUIDMBS = DirectShowFileSinkFilterMBS.MEDIASUBTYPE_Avi dim multiplexer as DirectShowBaseFilterMBS dim sink as DirectShowFileSinkFilterMBS // destination 'dim f as FolderItem = SpecialFolder.Desktop.Child("test.avi") Capture.SetOutputFileName type, f.NativePath, multiplexer, sink Capture.RenderStream(DirectShowPinMBS.PIN_CATEGORY_CAPTURE, Capture.MEDIATYPE_Video, srcfilter, nil, multiplexer) mc.Run Return True End Function
Sub Add(dev As DirectShowMonikerMBS, type as string) // Microsoft calls it Displayname, but it looks more like some UniqueID dim DisplayName as string = dev.DisplayName dim p as DirectShowPropertyBagMBS = dev.Properties if p<>nil then // we show some properties DisplayName = p.FriendlyName end if List.AddRow DisplayName List.RowTag(List.LastIndex) = dev End Sub
Sub CaptureVideo(n as DirectShowBaseFilterMBS) // Get DirectShow interfaces GetInterfaces // Attach the filter graph to the capture graph Capture.SetFiltergraph(graph) // Use the system device enumerator and class enumerator to find // a video capture/preview device, such as a desktop USB video camera. srcfilter = n // Add Capture filter to our graph. Graph.AddFilter srcfilter, "Video Capture" // Render the preview pin on the video capture filter Capture.RenderStream(DirectShowPinMBS.PIN_CATEGORY_PREVIEW, Capture.MEDIATYPE_Video, srcfilter) // Set video window style and position SetupVideoWindow // Start previewing video data mc.Run if mc.Lasterror = 1 then // not yet ready, try again mc.Run end if End Sub
Sub CloseInterfaces() // Stop previewing data if mc<>Nil then mc.StopWhenReady end if // Stop receiving events if mee<>nil then 'mee.SetNotifyWindow( end if // Relinquish ownership (IMPORTANT!) of the video window. // Failing to call Owner setter can lead to assert failures within // the video renderer, as it still assumes that it has a valid // parent window. if vw<>nil then vw.Visible = false vw.Owner = nil end if // Release DirectShow interfaces mc = nil mee = nil vw = nil Graph = nil Capture = nil End Sub
Sub GetInterfaces() // Create the filter graph graph = new DirectShowGraphBuilderMBS // Create the capture graph builder capture = new DirectShowCaptureGraphBuilderMBS // Obtain interfaces for media control and Video Window MC = Graph.MediaControl VW = Graph.VideoWindow MEE = Graph.MediaEventEx End Sub
Sub List(type as DirectShowGUIDMBS, types as string) // Create an enumerator for the video capture devices dim devenum as new DirectShowEnumMonikerMBS(type) if devenum.Handle = 0 then Return end if dim dev as DirectShowMonikerMBS = devenum.NextObject while dev<>nil Add dev, types dev = devenum.NextObject wend End Sub
Sub ResizeVideoWindow() if vw<>Nil then // Resize the video preview window to match owner window size vw.SetWindowPosition canvas1.Left, canvas1.top, canvas1.Width, canvas1.Height end if End Sub
Sub SetupVideoWindow() // Set the video window to be a child of the main window vw.Owner = self // Set video window style vw.WindowStyle = BitwiseOr(vw.WS_CHILD, vw.WS_CLIPCHILDREN) // Use helper function to position video window in client rect // of main application window ResizeVideoWindow // Make the video window visible, now that it is properly positioned vw.Visible = true End Sub
Property Capture As DirectShowCaptureGraphBuilderMBS
Property Graph As DirectShowGraphBuilderMBS
Property MC As DirectShowMediaControlMBS
Property MEE As DirectShowMediaEventExMBS
Property VW As DirectShowVideoWindowMBS
Property srcfilter As DirectShowBaseFilterMBS
End Class
MenuBar MenuBar1
MenuItem FileMenu = "File"
MenuItem AblageRecord = "Record..."
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "Edit"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
FileTypes1
Filetype video/avi
End FileTypes1
End Project

See also:

The items on this page are in the following plugins: MBS Win Plugin.


The biggest plugin in space...