How to Play Media Files with Media Foundation

This tutorial shows how to play media files using the Media Session object.

Prerequisites

Before reading this topic, you should be familiar with the following Media Foundation concepts:

Note

This topic does not describe how to play files that are protected by digital rights management (DRM). For information about DRM in Microsoft Media Foundation, see How to Play Protected Media Files.

 

Overview

The following objects are used to play a media file with the Media Session:

  • A media source is an object that parses a media file or other source of media data. The media source creates stream objects for each audio or video stream in the file. Decoders convert encoded media data into uncompressed video and audio.
  • The Source Resolver creates a media source from a URL.
  • The Enhanced Video Renderer (EVR) renders video to the screen.
  • The Streaming Audio Renderer (SAR) renders audio to a speaker or other audio output device.
  • A topology defines the flow of data from the media source to the EVR and SAR.
  • The Media Session controls the data flow and sends status events to the application. The following diagram illustrates this process.

diagram showing playback using the media session

The following is a general outline of the steps needed to play a media file using the Media Session:

  1. Call the MFStartup function to initialize the Media Foundation platform.

  2. Call MFCreateMediaSession to create a new instance of the Media Session.

  3. Use the source resolver to create a media source. For more information, see Using the Source Resolver.

  4. Create a topology that connects the media source to the EVR and SAR. In this step, the application creates a partial topology that does not include the decoders. For more information, see Creating Playback Topologies.

  5. Call IMFMediaSession::SetTopology to set the topology on the Media Session.

  6. Use the IMFMediaEventGenerator interface to get events from the Media Session.

  7. Call IMFMediaSession::Start to start playback. After playback starts, you can pause it by calling IMFMediaSession::Pause, or stop it by calling IMFMediaSession::Stop.

  8. When the application exits, release resources:

    1. Call IMFMediaSession::Close to close the Media Session. This method is asynchronous. When it completes, the Media Session sends an MESessionClosed event. Then it is safe to perform the remaining steps.
    2. Call IMFMediaSource::Shutdown to shut down the media source.
    3. Call IMFMediaSession::Shutdown to shut down the Media Session.
    4. Call MFShutdown to shut down the Media Foundation platform.

The following sections show a complete code example:

Media Session

Audio/Video Playback