NAME
FLV::ToSWF - Convert an FLV file into a SWF file
LICENSE
Copyright 2006 Clotho Advanced Media, Inc., <cpan@clotho.com>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SYNOPSIS
use FLV::ToSwf;
my $converter = FLV::ToSWF->new();
$converter->parse_flv($flv_filename);
$converter->save($swf_filename);
See also flv2swf.
DESCRIPTION
Transcodes FLV files into SWF files. See the flv2swf command-line program for a nice interface and a detailed list of caveats and limitations.
METHODS
- $pkg->new()
-
Instantiate a converter and prepare an empty SWF.
- $self->parse_flv($flv_filename)
-
Open and parse the specified FLV file. If the FLV file lacks
onMetadata
details, that tag is populated with duration, framerate, video dimensions, etc. - $self->save($swf_filename)
-
Write out a SWF file. Note: this is usually called only after
parse_flv()
. Throws an exception upon error.
AUTHOR
Clotho Advanced Media Inc., cpan@clotho.com
Primary developer: Chris Dolan