Convert Media Texture to a Texture2D

Hey guys !
I’m working on an UMG Interface. I have to apply a Media Texture on a Custom Widget witch support only Texture2D, I get this Error if i try to change my texture variable type to Media Texture (or anything else) :
“Error Binding: Property ’ BrushDelegate ’ on Widget ’ Image_0 ': Member:Texture Unable to bind Object Property, unsupported type.”
Is it possible to convert a Video into a Texture 2D ?
If you have any other suggestions to provide it’s great !
Thanks a lot anyway !

Create a Material that uses the media texture. Then assign that material to the widget instead.

UMediaTexture derives from UTexture, so you cannot cast it to a UTexture2D.

Hey ! Thanks !
Unfortunatly it does not work with material either,
Is there no way to make an animation from Texture 2D only, using every frames of the video for example ?