M2TeamArchived / FFmpegInterop-FFmpegUniversal

This is a code sample to make it easier to use FFmpeg in Windows applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FFmpegInterop library for Windows

This project is licensed from Microsoft under the Apache 2.0 License

Welcome to FFmpegInterop library for Windows.

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.

Building FFmpegUniversalSDK with Visual Studio 2017

Building FFmpegInterop library build output

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

Using the FFmpegInterop object is fairly straightforward and can be observed from the sample applications provided.

  1. Get a stream for the media you want to playback.

  2. 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).

  3. Get the MediaStreamSource from the Interop object by invoking GetMediaStreamSource()

  4. Assign the MediaStreamSource to your MediaElement or VideoTag for playback.

    You can try to use the method FFmepgInteropMSS.CreateFFmpegInteropMSSFromUri to create a MediaStreamSource on a streaming source (shoutcast for example).

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.

The Windows OSS Team.

About

This is a code sample to make it easier to use FFmpeg in Windows applications.

License:Apache License 2.0


Languages

Language:C++ 88.4%Language:C# 11.6%