How can I work with MPEG-2 media using QuickTime?

Q: When I try and open MPEG-2 media with QuickTime using the NewMovieFromDataRef function I get the -2048 (noMovieFound) error.  How can I work with MPEG-2 media using QuickTime? 

A: You can purchase and install the QuickTime MPEG-2 Playback Component.

This component gives users the ability to import and play back MPEG-2 content, including both multiplexed (or "muxed", where the audio and video tracks are interleaved together into one track) and non-multiplexed (elementary) streams. However, while multiplexed streams can be played back, de-multiplexing of these streams is not supported, and neither is editing (copy/paste, and so on).

The MPEG-2 Playback Component is composed of a media handler that understands the MPEG-2 media type and actually plays back the media, and a movie import component that allows QuickTime to create a movie with MPEG-2 media in a single MPEG-2 track (muxed media is not presented as separate video and audio tracks). There is no MPEG-2 decoder component. All the necessary functionality is implemented via the media handler and the importer. No decoder component is involved.

The MPEG-2 Playback Component will allow the transcode of MPEG-2 video to other formats, whether that video originates in an elementary video stream or in a multiplexed stream. However, the ability to transcode MPEG-2 audio is not supported. Transcoding is supported for video only. As an alternative, you could first export your media to an intermediate QuickTime movie, and then export the audio track from this intermediate movie.

You can programatically open MPEG-2 media files using the MPEG-2 Playback Component as you would normally for any of the other QuickTime supported media types. Simply use any of the QTKit methods for creating a QTMovie such as the -movieWithFile method. Here's a short code snippet:

Listing 1: Opening MPEG-2 media using QTKit.

QTMovie *movie = [QTMovie movieWithFile:@"/Volumes/MacintoshHD/MyFile.m2v" error:nil];
if (movie)
{
    /* do stuff with movie here... */
}

Similarly, you can use any of the QuickTime Movie Toolbox APIs for opening QuickTime supported media such as NewMovieFromDataRef and others (NewMovieFromProperties, and so on).

Here's a code snippet:

Listing 2: Opening MPEG-2 media using the NewMovieFromDataRef Movie Toolbox API.

Movie    myMovie = NULL;
OSType   myDataRefType;
Handle   myDataRef = NULL;
short    myResID = 0;
OSErr    myErr = noErr;

// create the data reference
myErr = QTNewDataReferenceFromFullPathCFString(CFSTR("/Volumes/MacintoshHD/MyFile.mpg"),
                        kQTNativeDefaultPathStyle,0, &myDataRef, &myDataRefType);
if (myErr != noErr) goto bail;

// get the Movie
myErr = NewMovieFromDataRef(&myMovie, newMovieActive,
                            &myResID, myDataRef, myDataRefType);
if (myErr != noErr) goto bail;

/*
    do stuff with movie here...
*/

bail:

// dispose the data reference handle - we no longer need it
if (myDataRef)
{
    DisposeHandle(myDataRef);
}

// remember to call DisposeMovie when done with the returned Movie
if (myMovie)
{
    DisposeMovie(myMovie);
}

You can also use the MPEG-2 import component directly to open MPEG-2 media using those APIs that allow you to pass an importer component as a parameter, such as the MovieImportDataRef API. The MPEG-2 import component is registered for the file type .mpg (you can see this using the Sample Code Project 'Fiendishthngs' which iterates over all the components installed on the system).

When the MPEG-2 playback media handler is installed, a number of other importer components are registered as aliases, and they all call through to the designated MPEG-2 importer (.mpg) already on the system. These other component aliases are for files with extensions .m2s, .vob and so on. Therefore, you should always use the above mentioned MPEG-2 importer even if your MPEG-2 media does not contain the .mpg extension.

You can use the FindNextComponent function to locate the MPEG-2 importer. Once you've located the importer, you can then use APIs that accept an importer component as a parameter, such as MovieImportDataRef, to open your MPEG media. Here's a code snippet:

Listing 3: Calling the MPEG-2 importer component directly to open MPEG-2 media files.

void doMovieImport()
{
    Handle outDataRef;
    OSType outDataRefType;
    // create a data reference for our media file
    OSErr err = QTNewDataReferenceFromFullPathCFString(CFSTR("/MyFolder/Myfile.m2v"),
                                                 kQTNativeDefaultPathStyle,
                                                 0,
                                                 &outDataRef,
                                                 &outDataRefType);
    if (err == noErr)
    {
        ComponentDescription cd;
        Component miComponent = 0;

        cd.componentType = MovieImportType;
        cd.componentSubType = 'MPG ';
        cd.componentManufacturer = 0; // Any manufacturer is OK
        cd.componentFlags = canMovieImportFiles | movieImportSubTypeIsFileExtension;
        cd.componentFlagsMask = canMovieImportFiles | movieImportSubTypeIsFileExtension;

        // locate the mpeg-2 importer component
        miComponent = FindNextComponent( miComponent, &cd );

        if (miComponent)
        {
            // create a new movie
            Movie movie = NewMovie(0);
            assert(movie != NULL);

            Track        targetTrack = nil;
            TimeValue    addedDuration = 0;
            long         outFlags = 0;

            // perform the import of the media
            ComponentResult result = MovieImportDataRef(miComponent,
                                                        outDataRef,
                                                        outDataRefType,
                                                        movie,
                                                        nil,
                                                        &targetTrack,
                                                        nil,
                                                        &addedDuration,
                                                        movieImportCreateTrack,
                                                        &outFlags);
            if (result == noErr)
            {
                /* ... do stuff with movie here.... */
            }

            // cleanup when done
            DisposeMovie(movie);
        }
        // dispose the data reference handle - we no longer need it
        if (outDataRef)
        {
            DisposeHandle(outDataRef);
        }
    }
}

Lastly, if you would like to get the static frame rate of your MPEG media, see Technical Q&A QA1262, 'Calculating the static video frame rate of a QuickTime movie.'

References

Back to Top 

Document Revision History

DateNotes
2007-08-29First Version

Posted: 2007-08-29


Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.