The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

UAV::Pilot::Video::FileDump

SYNOPSIS

open( my $vid_out, '>', 'video.h264' ) or die $!;
my $file_dump = UAV::Pilot::Video::FileDump->new({
    fh => $vid_out,
});
my $video = UAV::Pilot::Driver::ARDrone::Video->new({
    handler => $file_dump,
    ...
});

DESCRIPTION

Writes the h264 video frames to a file. Afterwords, you should be able to play this file with mplayer or other video players that support h264 without being inside a container format.