FLV::ToMP3 - Convert audio from a FLV file into an MP3 file
use FLV::ToMP3; my $converter = FLV::ToMP3->new(); $converter->parse_flv($flv_filename); $converter->save($mp3_filename);
See also the flv2mp3 manpage.
Extracts audio data from an FLV file and constructs an MP3 file. See the the flv2mp3 manpage command-line program for a nice interface and a detailed list of caveats and limitations.
new()
Instantiate a converter.
parse_flv($flv_filename)
Open and parse the specified FLV file.
save($mp3_filename)
Write out an MP3 file. Note: this is usually called only after
parse_flv(). Throws an exception upon error.