| XML-Atom-Ext-Media documentation | Contained in the XML-Atom-Ext-Media distribution. |
XML::Atom::Ext::Media::Content - Represents <media:content> elements
version 0.092840
Andreas Marienborg <andremar@cpan.org>
This software is copyright (c) 2009 by Andreas Marienborg.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| XML-Atom-Ext-Media documentation | Contained in the XML-Atom-Ext-Media distribution. |
package XML::Atom::Ext::Media::Content; our $VERSION = '0.092840'; #ABSTRACT: Represents <media:content> elements use strict; use warnings; use base qw( XML::Atom::Ext::Media::Base ); __PACKAGE__->mk_attr_accessors( qw/url fileSize type medium isDefault expression bitrate framerate samplingrate channels duration height width lang/ ); sub element_name { return 'content'; } 1; __END__