I am writing a WinUI3 app. I need it to play a .mkv video file using MediaPlayerElement control. Out of box, .mkv file types are not supported. So I came upon a package FFmpegInteropX.FFmpegUWP (current v5.1.100) and installed it to the solution via Visual Studio NuGet Package Manager. The installation went fine and the package is definitely part of the project:
<PackageReference Include="FFmpegInteropX.FFmpegUWP" Version="5.1.100" />
The problem I have is that when I type using FFmpegInteropX;
it is not recognized and I cannot use it. I've noticed there is also a FFmpegInteropX package (so without the ".FFmpegUWP" part) and I tried installing that one too, as I was trying to make the using statement work. However, it appears that that package is not intended for WinUI3 projects and NuGet removed it.
Now, I am clueless on how to use the FFmpegInteropX.FFmpegUWP in the project.