FFmpeg is a free software project that produces libraries and programs for handling multimedia data. This module provides the ability to manage the installation of FFmpeg using puppet.
Add the following snippet to your Puppetfile
.
mod 'jarodiv-ffmpeg'
:git => https://github.com/jarodiv/puppet-ffmpeg.git
Include the main class to get started with the default options:
include 'ffmpeg'
If you want to additionally install the development libraries:
class { 'ffmpeg':
include_devel => true,
}
This module also supports Hiera:
ffmpeg::include_devel: true
Manages the installation of FFmpeg.
include_devel
Optional: Whether the Development package for ffmpeg or not. Default: false
This module currently only supports CentOS 7 and 8.
Pull requests are always welcome.