I was implementing xamarin forms Media element. I'm able to play videos from the link provided in xamarin media element official doc. but the problem is i want to play youtube video but it isn't playing. I have set the flag in app.xaml.cs but still nothing happened for youtube videos. It only shows blank screen in both emulator and in physical device.
<MediaElement Source="https://youtu.be/E7Voso411Vs" x:Name="mediaSource"
AutoPlay="True" ShowsPlaybackControls="True"
VerticalOptions="FillAndExpand" />
Hope to get solution.
Thank you.