My application is making API calls to Facebook and returning video URLs, for example:
The video uses the H.264 codec.
Is there a way I can get this video to play from the URL in WPF without having to download the video locally?
My application is making API calls to Facebook and returning video URLs, for example:
The video uses the H.264 codec.
Is there a way I can get this video to play from the URL in WPF without having to download the video locally?
2
Answers
Yes you use MediaElement to display videos without downloading. Please check this url http://www.wpf-tutorial.com/audio-video/playing-video/
Give a try on WebBrowser control.
In xaml:
In CodeBehind:
Hope that helps.