FFmpegInteropX
FFmpegInteropX copied to clipboard
FFmpeg decoding library for Windows 10 UWP and WinUI 3 Apps
- Removed VideoEffect from main lib - Removed Win2d dependency from main nuget package - Moved VideoEffects to separate assembly and added UWP NuGet package plus build script - Renamed...
There are so many duration properties... ```cs var d1 = this.FfmpegMss.FormatInfo.Duration; var d2 = this.FfmpegMss.Duration; var d3 = this.FfmpegMss.GetMediaStreamSource().Duration; var d4 = this.FfmpegMss.PlaybackItem.StartTime; var d5 = this.FfmpegMss.PlaybackItem.Source.Duration; var d6 =...
``` await FFmpegMediaSource.CreateFromUriAsync(new(videoFilePath)); ``` With .NET 8, A COMException is raised with "The data area passed to a system call is too small" message. It wasn't rasied with .NET 7...
Hi, do you have any way to set a padding at the screen or video frame level? We have two values in our config which allow to set a minimum...
Is this working on your side? Initially, I wanted to get it working with a custom font supplied as appx resource, but then I realized, that it's not even working...
Hi! I am implementing this player into my C# UWP project and have encountered an issue with changing audio tracks. This occurs when using the provided sample with using default...
I get weird COM exceptions when on building my UWP app for x64 architecture. But when I build for x86 architecture, it works smoothly. On x64 bit build, the app...
I encountered a problem when using FFmpegInteropX to play some videos. If I choose Automatic or ForceFFmpegSoftwareDecoder, the video color is abnormal and there is a mosaic phenomenon; if I...
`FFmpegMediaSource.CreateFromUriAsync` always throws unspecified error if there is something wrong: ``` System.Exception: Unspecified error (Exception from HRESULT: 0x80004005) ``` It might be HTTP 404/403 or something else and it is...
Hello @lukasf I've been playing around with a new feature: add multiple input files to the FFmpegMediaSource. This PR showcases a working prototype. Some notes and open questions: 1. It...