From: Laurent Sansonetti Date: 2007-07-04T06:57:10+09:00 Subject: Re: RubyOSA for QuickTime Hi, On 7/3/07, 12 34 wrote: > How do I access the properties of a QuickTime movie? I'm trying RubyOSA, > but am open to other ideas. Why not trying to access the QTKit framework from Ruby via RubyCocoa? Here is an example that prints all the metadata properties of a given movie. $ cat a.rb require 'osx/foundation' OSX.require_framework 'QTKit' puts OSX::QTMovie.movieWithFile_error(ARGV[0], nil).movieAttributes HTH, Laurent