I am trying to integrate a live feed in my WPF application using DirectShow device. Both audio and video is working fine in VLC.
I have integrated VideoCapturePlayer
from the WPF-MediaKit in a simple application and i am able to see live video feed from the device, but i am unable to get the audio. I am not 100% sure that it is possible to capture both audio and video using the VideoCapturePlayer
.
Any help in getting the audio to work will be appreciated.
How to enable audio when using VideoCapturePlayer?
144 Views Asked by moeed At
1
Probably there's no Audio renderer set up in
VideoCapturePlayer
. Try to pull up theMediaUriBase.InsertAudioRenderer
into theMediaPlayerBase
and use it for theVideoCapturePlayer
. If you succeed, open a new PR with your code.