Reading timecode track data using the C# version of Quicktime

Posted by tinmaru on Stack Overflow See other posts from Stack Overflow or by tinmaru
Published on 2009-06-05T16:44:59Z Indexed on 2010/03/26 9:13 UTC
Read the original article Hit count: 327

Filed under:
|

Hi,

I'm using the .Net activeX component of Quicktime. I would like to read the timecode track data contained in a QTMovie track. I can already select my timecode track like this :

// Valid Quicktime movie
QTMovie movie;
QTUtils qtu = new QTUtils();

for (int i = 1; i <= movie.Tracks.Count; i++)
{
    if (movie.Tracks[i].Type == qtu.StringToFourCharCode("tmcd"))
    {
        QTTrack tcTrack = movie.Tracks[i];
        //
        // Timecode data reading ?
        //
}

Is there a way to extract the timecode data?

Thank you for your help!

© Stack Overflow or respective owner

Related posts about quicktime

Related posts about c#