PHP Classes

File: src/PHPVideoToolkit/ImageFormat/Png.php

Recommend this page to a friend!
  Classes of Oliver Lillie   PHP Video Toolkit   src/PHPVideoToolkit/ImageFormat/Png.php   Download  
File: src/PHPVideoToolkit/ImageFormat/Png.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Video Toolkit
Manipulate and convert videos with ffmpeg program
Author: By
Last change: updated format constructors so that the default input/output type is output. removed 'output' from the constructors in readme
updated version in source
Date: 1 year ago
Size: 928 bytes
 

Contents

Class file image Download
<?php
   
   
/**
     * This file is part of the PHP Video Toolkit v2 package.
     *
     * @author Oliver Lillie (aka buggedcom) <publicmail@buggedcom.co.uk>
     * @license Dual licensed under MIT and GPLv2
     * @copyright Copyright (c) 2008-2014 Oliver Lillie <http://www.buggedcom.co.uk>
     * @package PHPVideoToolkit V2
     * @version 2.1.7-beta
     * @uses ffmpeg http://ffmpeg.sourceforge.net/
     */
    
    
namespace PHPVideoToolkit;

   
/**
     * @access public
     * @author Oliver Lillie
     * @package default
     */
   
class ImageFormat_Png extends ImageFormat
   
{
        public function
__construct($input_output_type=Format::OUTPUT, Config $config=null)
        {
           
parent::__construct($input_output_type, $config);
           
            if(
$input_output_type === 'output')
            {
               
$this->disableAudio()
                     ->
setVideoCodec('png')
                     ->
setFormat('image2');
            }
           
           
$this->_restricted_audio_codecs = array();
           
$this->_restricted_video_codecs = array('png');
        }
    }