MFManagedEncode

MFManagedEncode.exe

This is a managed tool written in C# and XAML that converts files from one media format to another. The source code is provided to use as a reference on how to interop with source reader, sink writer and the transcode API from a managed environment.

The sample previews media files using WPF’s MediaElement object and a custom control that can be used to trim the output media.

Supported output formats:

  • Windows Media (WMV with WMA)
  • MPEG-4 (H.264 with AAC)

Technique

The tool converts media files using the basic functionality of new APIs introduced with Windows 7. Two different methods are implemented by the tool:

  • Configure the media session using the high level transcode API.
  • Use source reader and sink writer.

Since Media Foundation is built on COM the required interfaces and unmanaged calls were ported to C# using .NET interoperability capabilities.

The transcode API provides the following benefits:

  • The media session controls the operation. Therefore, there is no need to manipulate the samples manually.
  • Media samples are not brought to the managed environment which improves speed and memory usage.

Source reader and sink writer provide the following benefits:

  • Media sample attributes can be edited individually which gives more control to the developer.
  • The media sample raw data can be acquired from the buffers and used for other purposes (for example it is easy to copy the data from a video sample to a System.Drawing.Bitmap object).

Usage

When the application is executed the main window will show up (Figure 1).

clip_image002
Figure 1

  1.  Select the media file you want to convert by clicking the “Browse…” button to the right of the “Source” text box. When you do this the source location will be automatically chosen as the output folder.
  2.  Change the output folder by clicking the “Browse…” button to the right of the “Output folder” text box.
  3.  Start playback by clicking on the media frame.
  4.  Seek to different positions by moving the arrow located below the time bar.
  5.  Convert only a selected portion of the media by moving the blue controls in the time bar to adjust the start and end times.
  6.  Select the output media format from the “Format” dropdown list.
  7.  Select the output video size from the “Video size” dropdown list.
  8.  Bring up options for changing the audio codec, video codec, audio bit rate or video bit rate by clicking on “Advanced options” at the bottom-left corner of the window.
  9.  Start the transcode operation by clicking continue. The progress window will show up and the conversion will begin (Figure 2).

clip_image004
Figure 2

   10. The conversion window (Figure 2) will be automatically closed when the conversion is complete.

Limitations

The sample is made using WPF so Visual Studio 2008 or later is required. If you don’t have Visual Studio 2008 the sample can be compiled using Visual C# 2008 Express Edition which can be downloaded for free from the Microsoft Website.

Only the COM interface methods used by the tool have been tested; marshaling of unused methods could be wrong or missing the correct enumerations or object definitions.

Project Structure

\MFManagedEncode.csproj

The main C# project generated by Visual Studio. It contains information about the platforms, configurations and project  features.

\MediaFoundation\Interop\Classes.cs

Definitions of the COM classes needed.

\MediaFoundation\Interop\Constants.cs

Media Foundation constants needed.

\MediaFoundation\Interop\Enums.cs

Media Foundation enumerations needed.

\MediaFoundation\Interop\Interfaces.cs

Definition of the Media Foundation COM interfaces needed to perform the format conversion.

\MediaFoundation\Interop\Structures.cs

Structures that help interoperating with Media Foundation COM objects.

\MediaFoundation\Interfaces\ISimpleEncode.cs

C# interface used by the encoding classes.

\MediaFoundation\Classes\SimpleFastEncode.cs

C# class that inherits ISimpleEncode and encodes content using the Windows 7 transcode API.

\MediaFoundation\Classes\SimpleSinklWriterEncode.cs

C# class that inherits ISimpleEncode and encodes content using source reader and sink writer.

\MediaFoundation\Classes\EncapsulatedSample.cs

C# class that keeps track of the unmanaged memory used by samples and simplifies garbage collection.

\MediaFoundation\Common\Classes.cs

Support classes used by the tool.

\MediaFoundation\Common\Helper.cs

Exports the required Media Foundation functions from mfplat.dll and mf.dll.

\App.xaml

Holds the attributes that control the startup behavior.

\App.xaml.cs

Interaction logic for App.xaml.

\GUI\Controls\VideoTrimmer.xaml

Graphic design and animations of the user control used to trim media content.

\GUI\Controls\VideoTrimmer.xaml.cs

Interaction logic for VideoTrimmer.xaml which handles user input and events such as resizing.

\GUI\Windows\MainWindow.xaml

The main application window used to load media files and set the conversion parameters.

\GUI\Windows\MainWindow.xaml.cs

Interaction logic for MainWindow.xaml.

\GUI\Windows\ProgressWindow.xaml

The window that is shown during format conversion and displays the progress and estimated remaining time.

\GUI\Windows\ProgressWindow.xaml.cs

Interaction logic for ProgressWindow.xaml.

Downloading the Sample

You can download MFManagedEncode from https://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=mfblog&DownloadId=9174

Follow the instruction at https://code.msdn.microsoft.com/mfblog for tips and instructions to build the sample.

This posting is provided "AS IS" with no warranties and confers no rights.