NAME
App::Video::Generator - Perl class for video-generator application.
SYNOPSIS
use App::Video::Generator;
my $obj = App::Video::Generator->new;
$obj->run;
METHODS
ERRORS
new():
Bad size value.
Value: %s
From Class::Utils:
Unknown parameter '%s'.
run():
Cannot create video.
EXAMPLE
# Pragmas.
use strict;
use warnings;
# Modules.
use App::Video::Generator;
# Run.
App::Video::Generator->new->run;
# Output:
# Usage: /tmp/7b3GEofrss [-d duration] [-f fps] [-h]
# [-s size] --version output_file
#
# -d duration Duration (default value is 10000 (=10s)
# -f fps Frame rate
# -h Help.
# -s size Size (default value is 1920x1080).
# --version Print version.
DEPENDENCIES
English, Error::Pure, Getopt::Std, Video::Generator.
REPOSITORY
https://github.com/tupinek/App-Video-Generator.
AUTHOR
Michal Špaček mailto:skim@cpan.org
LICENSE AND COPYRIGHT
© 2015 Michal Špaček
BSD 2-Clause License
VERSION
0.01