VideoPlayer.PlatformGetTexture () Not Implemented

Hello , I have a problem the VideoPlayer Class.
When I try to Get the Texture of the video for show it in my Apps I have this error:

10-02 11:27:39.918 I/MonoDroid( 6115): UNHANDLED EXCEPTION:
10-02 11:27:39.944 I/MonoDroid( 6115): System.NotImplementedException: The requested feature is not implemented.
10-02 11:27:39.944 I/MonoDroid( 6115): at Microsoft.Xna.Framework.Media.VideoPlayer.PlatformGetTexture () <IL 0x00005, 0x00048>
10-02 11:27:39.944 I/MonoDroid( 6115): at Microsoft.Xna.Framework.Media.VideoPlayer.GetTexture () <IL 0x0001a, 0x000e3>
10-02 11:27:39.944 I/MonoDroid( 6115): at HerraEngine.Android.Source.Objet.Variable.AffichageVideo (int,int) <IL 0x0003b, 0x0022f>
10-02 11:27:39.944 I/MonoDroid( 6115): at HerraEngine.Android.Source.Menu.HerraClient.Draw (Microsoft.Xna.Framework.GameTime) <IL 0x00069, 0x00493>
10-02 11:27:39.944 I/MonoDroid( 6115): at Microsoft.Xna.Framework.Game.DoDraw (Microsoft.Xna.Framework.GameTime) <IL 0x0001e, 0x0010f>
10-02 11:27:39.944 I/MonoDroid( 6115): at Microsoft.Xna.Framework.Game.Tick () <IL 0x001f5, 0x00d2f>
10-02 11:27:39.944 I/MonoDroid( 6115): at Microsoft.Xna.Framework.AndroidGameWindow.OnUpdateFrame (object,OpenTK.FrameEventArgs) <IL 0x00059, 0x00257>
10-02 11:27:39.944 I/MonoDroid( 6115): at OpenTK.GameViewBase.OnUpdateFrame (OpenTK.FrameEventArgs) <IL 0x00014, 0x0008f>
10-02 11:27:39.944 I/MonoDroid( 6115): at OpenTK.Platform.Android.AndroidGameView.UpdateFrameInternal (OpenTK.FrameEventArgs) <IL 0x00013, 0x000b3>
10-02 11:27:39.944 I/MonoDroid( 6115): at OpenTK.Platform.Android.AndroidGameView.RunIteration (System.Threading.CancellationToken) <IL 0x00096, 0x003f3>
10-02 11:27:39.944 I/MonoDroid( 6115): at OpenTK.Platform.Android.AndroidGameView/<StartThread>c__AnonStorey0.<>m__0 (object) <IL 0x0000d, 0x00077>
10-02 11:27:39.944 I/MonoDroid( 6115): at Android.App.SyncContext/<Send>c__AnonStorey1.<>m__0 () <IL 0x0000c, 0x0005b>
10-02 11:27:39.944 I/MonoDroid( 6115): at Java.Lang.IRunnableInvoker.n_Run (intptr,intptr) <IL 0x0000a, 0x000a3>
10-02 11:27:40.062 I/dalvikvm( 6115): Could not find method java.lang.Throwable.<init>, referenced from method md52ce486a14f4bcd95899665e9d932190b.JavaProxyThrowable.<init>
10-02 11:27:39.926 D/NetworkContr10-02 11:27:40.063 W/dalvikvm( 6115): VFY: unable to resolve direct method 163: Ljava/lang/Throwable;.<init> (Ljava/lang/String;Ljava/lang/Throwable;ZZ)V
10-02 11:27:40.093 D/AndroidRuntime( 6115): Shutting down VM
10-02 11:27:40.093 W/dalvikvm( 6115): threadid=1: thread exiting with uncaught exception (group=0x40ff49a8)

I use monogame 3.4 with last xamarin.

Thank in advance for your help.

On Android and iOS this is not supported and not possible to support IIRC. Video playing is handled by the OS.

On Android we use the MediaPlayer
https://github.com/mono/MonoGame/blob/develop/MonoGame.Framework/Media/Video.Android.cs#L16

Looks like it might be possible in new OS versions however:

Thank you , I will try it now