GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
FLV::File(3) User Contributed Perl Documentation FLV::File(3)

FLV::File - Parse Flash Video files

See FLV::Info

This is a subclass of FLV::Base.

$self->empty()
Prepare an empty FLV. This is only needed if you do not plan to call the parse() method.
$self->parse($filename)
$self->parse($filehandle)
Reads the specified file. If the file does not exist or is an invalid FLV stream, an exception will be thrown via croak().

There is no return value.

$self->clone()
Create an independent copy of this instance.
$self->populate_meta()
Fill in various "onMetadata" fields if they are not already present.
$self->serialize($filehandle)
Serializes the in-memory FLV data. If that representation is not complete, this throws an exception via croak(). Returns a boolean indicating whether writing to the file handle was successful.

$self->get_info()
Returns a hash of FLV metadata. See File::Info for more details.
$self->get_filename()
Returns the filename, if any.
$self->get_meta($key);
$self->set_meta($key, $value, ...);
These are convenience functions for interacting with an "onMetadata" tag at time 0, which is a common convention in FLV files. If the zeroth tag is not an FLV::MetaTag instance, one is created and prepended to the tag list.

See also "get_meta" and "set_meta" in FLV::Body.

$self->get_header()
$self->get_body()
These methods return the FLV::Header and FLV::Body instance, respectively. Those will be "undef" until you call either empty() or parse().

The following methods are only used during the parsing phase.
$self->get_bytes($n)
Reads $n bytes off the active filehandle and returns them as a string. Throws an exception if the filehandle is closed or hits EOF before all the bytes can be read.
$self->get_pos()
$self->get_pos($offset)
Returns a string representing the current position in the filehandle. This is intended for use in debugging or exceptions. An example of use: indicate that an input value five bytes behind the read head is erroneous.

    die 'Error parsing version number at byte '.$self->get_pos(-5);
    
$self->at_end()
Returns a boolean indicating if the FLV stream is exhausted. Throws an exception if the filehandle is closed.

See FLV::Info
2009-03-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.