I've got a client app written in C# and want to read the duration of a MOV file. I would have to create and host a Quicktime COM control in a Windows Form, then load the movie in it and get the duration. This isn't doable in my case as the client app is not a windows forms one.
Another way of doing it, which I have actually done, is to open the MOV file raw, examine the bytes until you're 12 bytes past the movie header atom of the clip ('mvhd') and get the timescale and duration from there. This hack I'm not comfortable with as it may not work if Apple changes the file format in the future.
I would prefer to avoid loading the MOV to a control as I'm only interested to get the duration of the clip and nothing else. Ideally I need to provide a string with the path of the mov file to the app and get the duration like that. Has anyone done it with unmanaged code?