=head1 NAME FFmpeg::Stream::Data - A non-media data stream from a (multi)media file. =head1 SYNOPSIS $ff = FFmpeg->new(); #see FFmpeg #... $sg = $ff->create_streamgroup(); #see FFmpeg $st = ($sg->streams())[0]; #this is a FFmpeg::Stream =head1 DESCRIPTION Objects of this class are not intended to be instantiated directly by the end user. Access L objects using methods in L. See L for more information. This class represents a media stream in a multimedia file. B represents multimedia file information in a L object, which is a composite of L objects. L objects don't do much. They just keep track of the media stream's ID within the multimedia file, and hold an instance to a L object if the codec of the stream was deducible. See L for more information about how codecs are represented. =head1 FEEDBACK See L for details. =head1 AUTHOR Allen Day Eallenday@ucla.eduE =head1 COPYRIGHT AND LICENSE Copyright (c) 2003-2004 Allen Day This library is released under GPL, the Gnu Public License =head1 APPENDIX The rest of the documentation details each of the object methods. Internal methods are usually preceded with a '_'. Methods are in alphabetical order for the most part. =cut # Let the code begin... package FFmpeg::Stream::Data; use strict; use base qw(FFmpeg::Stream); our $VERSION = '0.01'; =head1 Note This is currently an unused, empty class. =cut =head2 new() This class inherits from L. See L =cut =head2 init() This class inherits from L. See L =cut 1;