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::Splice(3) User Contributed Perl Documentation FLV::Splice(3)

FLV::Splice - Concatenate FLV files into new files

This feature was created with financial support from John Drago (CPAN:JOHND). Thanks!

See FLV::Info

   use FLV::Splic;
   my $converter = FLV::Splice->new();
   $converter->add_input('first.flv');
   $converter->add_input('second.flv');
   $converter->save('output.flv');

Concatenates compatible FLV movies into a single file. In this context, 'compatible' means that they have the same video and audio codec. It is possible that this tool will produce unplayable movies, for example concatenating AVC content will likely fail because each segment has its own binary configuration block.

This tool may also produce unplayable content if the segments have different framerates. That depends on the player implementation.

$pkg->new()
Instantiate a converter.
$self->add_input($flv_filename)
$self->add_input($flv_instance)
Open and append the specified FLV file. Alternatively, you may pass an instantiated and parsed FLV::File instance.
$self->save($outfile)
Serialize the combined FLV to file.

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.