The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::Video::Generator - Perl class for video-generator application.

SYNOPSIS

 use App::Video::Generator;

 my $obj = App::Video::Generator->new;
 $obj->run;

METHODS

new()
 Constructor.
run()
 Run.

ERRORS

 new():
         Bad size value.
                 Value: %s
         From Class::Utils:
                 Unknown parameter '%s'.

 run():
         Cannot create video.

EXAMPLE

 use strict;
 use warnings;

 use App::Video::Generator;

 # Run.
 App::Video::Generator->new->run;

 # Output like:
 # Usage: /tmp/7b3GEofrss [-d duration] [-f fps] [-h]
 #         [-i input_dir] [-s size] [-v] [--version] output_file
 #
 #         -d duration     Duration in numeric value or with ms/s/min/h suffix
 #                         (default value is 10000 [=10s]).
 #         -f fps          Frame rate
 #         -h              Print help.
 #         -i input_dir    Input directory with images (default value is nothing).
 #         -s size         Size (default value is 1920x1080).
 #         -v              Verbose mode.
 #         --version       Print version.

DEPENDENCIES

English, Error::Pure, Getopt::Std, Image::Select, Readonly, Video::Generator.

SEE ALSO

App::Image::Generator

Perl class for image-generator application.

REPOSITORY

https://github.com/michal-josef-spacek/App-Video-Generator.

AUTHOR

Michal Josef Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

© 2015-2021 Michal Josef Špaček

BSD 2-Clause License

VERSION

0.09