Cefsharp and video tag WebRTC

后端 未结 2 2013
闹比i
闹比i 2021-02-10 21:50

I\'m trying to write a wpf with webrtc support. The access to the camera works but the display of the from the page doesn\'t. Can anyone help?

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-10 22:27

    I assume you want to display video from your camera via WebRTC so I think it requires a call to .getUserMedia() to get hold of your camera. For that to work you must use CefSharp based on Chromium 30 or later. So either:

    • Use the latest CefSharp.Wpf NuGet. Right now you need latest -Pre release
    • or build from source with the current master branch.

    I just did a quick test again using CefSharp.MinimalExample so here are the steps:

    1. Make sure your MinimalExample uses Chromium 31 or higher - see this PR - unless it already got merged by the time you are reading this.

    2. In MainView.xaml modify the attribute to "https://simpl.info/getusermedia/sources/index.html"

    3. Build and when running add the --enable-media-stream command line flag.

    That's it! With your camera connected and a bit of luck you should see your own face - or whatever the camera points to - on the screen.

    Bonus info: Hopefully soon PR #365 can get a bit of extra love to allow for passing flags too and get merged into CefSharp. With that you can set the flag in code instead of having to pass it in as a command line parameter.

提交回复
热议问题