PHP Classes

File: src/PHPVideoToolkit/VideoFormat/Wmv3.php

Recommend this page to a friend!
  Classes of Oliver Lillie   PHP Video Toolkit   src/PHPVideoToolkit/VideoFormat/Wmv3.php   Download  
File: src/PHPVideoToolkit/VideoFormat/Wmv3.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:
Date: 1 year ago
Size: 1,361 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 VideoFormat_Wmv extends VideoFormat
   
{
        public function
__construct($input_output_type=Format::OUTPUT, Config $config=null)
        {
           
parent::__construct($input_output_type, $config);
           
           
$this->_restricted_audio_codecs = array('wmav3');
           
$this->_restricted_video_codecs = array('wmv3');
           
            if(
$input_output_type === 'output')
            {
               
$this->setAudioCodec('wmav3')
                     ->
setVideoCodec('wmv3')
                     ->
setFormat('asf');
            }
            else
            {
               
array_push($this->_restricted_audio_codecs, 'wmalossless', 'wmapro', 'wmavoice');
               
array_push($this->_restricted_video_codecs, 'wmv3', 'wmv3image');
            }
        }
    }