FFmpeg-Stream-Helper
view release on metacpan or search on metacpan
FFmpeg-Stream-Helper
Makes streaming video easy using FFmpeg and allows it to be done securely.
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
lib/FFmpeg/Stream/Helper.pm view on Meta::CPAN
package FFmpeg::Stream::Helper;
use 5.006;
use strict;
use warnings;
use base 'Error::Helper';
use String::ShellQuote;
=head1 NAME
FFmpeg::Stream::Helper - Helper for streaming and transcoding using ffmpeg.
=head1 VERSION
Version 0.1.1
=cut
our $VERSION = '0.1.1';
=head1 SYNOPSIS
This module is for helping generate a command for ffmpeg that should be good for streaming to HTML5.
This module also does it securely by using String::ShellQuote for every definable option passed to ffmpeg.
# Defaults Are...
# Output: - ((standard out))
# Bit Rate: 2000 kbps
# Bound: undef
# Format: mp4
# Log Level: quiet
# Threads: 0
( run in 0.284 second using v1.01-cache-2.11-cpan-4d50c553e7e )