class Falcon::Media
def metadata
:comment => '', :description => '', :language => ''}
{ :title => '', :author => '', :copyright => '',
A hash of metadatas for video:
def metadata @metadata ||= begin method = @options[:metadata] method.respond_to?(:call) ? method.call(self) : instance.send(method) end end