This project is licensed from Microsoft under the Apache 2.0 License
FFmpegInterop is an open-source project that aims to provide an easy way to use FFmpeg in Windows 10, Windows 8.1, and Windows Phone 8.1 applications for playback of a variety of media contents. FFmpegInterop implements a MediaStreamSource which leverages FFmpeg to process media and uses the Windows media pipeline for playback.
One of the advantages of this approach is that audio and video synchronization is handled by the Windows media pipeline. You can also use the Windows built-in audio and video decoders which allows for better power consumption mobile devices.
- Please naviagate https://github.com/M2Team/FFmpegUniversal.
If you use the build scripts or follow the Wiki instructions as is you should find the appropriate builds of FFmpeg libraries in the FFmpegUniversal/FFmpegUniversalSDK/<architecture\>
folders.
Simply open one of the Microsoft Visual Studio solution file (e.g. FFmpegWin10.sln), set one of the MediaPlayer as StartUp project, and run. FFmpegInterop should build cleanly giving you the interop object as well as the selected sample MediaPlayer (C++, C# or JS) that show how to connect the MediaStreamSource to a MediaElement or Video tag for playback.
Using the FFmpegInterop object is fairly straightforward and can be observed from the sample applications provided.
-
Get a stream for the media you want to playback.
-
Create a new FFmpegInteropObject using FFmpegInteropMSS.CreateFFmpegInteropMSSFromStream() passing it the stream and whether you want to force the decoding of the media (if you don't force decoding of the media, the MediaStreamSource will try to pass the compressed data for playback, this is currently enabled for mp3, aac and h.264 media).
-
Get the MediaStreamSource from the Interop object by invoking GetMediaStreamSource()
-
Assign the MediaStreamSource to your MediaElement or VideoTag for playback.
This project is in an early stage and we look forward to engaging with the community and hearing your feedback to figure out where we can take this project.