Forge Home

ffmpeg

Manages FFMPEG installation

9,667 downloads

9,426 latest version

3.1 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.2 (latest)
  • 0.1.1
  • 0.1.0 (deleted)
released May 4th 2015

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'wilrnh-ffmpeg', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add wilrnh-ffmpeg
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install wilrnh-ffmpeg --version 0.1.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

wilrnh/ffmpeg — version 0.1.2 May 4th 2015

FFMPEG

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with ffmpeg
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

Manages FFMPEG installation.

Currently only supports Ubuntu.

Module Description

FFMPEG is a complete, cross-platform solution to record, convert and stream audio and video. This module provides the ability to manage the installation of FFMPEG.

Setup

What ffmpeg affects

  • FFMPEG packages: binaries, libraries, debug symbols.

Setup Requirements

This module requires that FFMPEG is available via package repositories. This module does not manage any package repositories, such as those suggested via http://ffmpeg.org/download.html#build-linux.

Beginning with ffmpeg

Simply include the main class to get started with the default options:

    include '::ffmpeg'

Usage

    class {'ffmpeg':
      package_ensure => '7:2.6.2~trusty', # specify a version
      include_dev    => true,             # install development libraries
      include_dbg    => true,             # install debug symbols
    }

Reference

Classes

Public Classes

::ffmpeg: Installs FFMPEG.

Private Classes

::ffmpeg::install: Installs FFMPEG base packages.

::ffmpeg::dev: Installs FFMPEG development packages.

::ffmpeg::dbg: Installs FFMPEG debug symbols packages.

Parameters

ffmpeg

package_ensure Passed directly on to Puppet's package type ensure parameter. Defaults to present.

include_dev Whether to include development libraries. eg., libavcode-dev. Defaults to false.

include_dbg Whether to include debug symbols. eg., ffmpeg-dbg. Defaults to false.

Limitations

This module currently only supports Ubuntu.

Development

Pull requests are always awesome.