403Webshell
Server IP : 208.122.213.31  /  Your IP : 216.73.216.45
Web Server : Apache
System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64
User : WHMCS_MIA_382 ( 1001)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/httpd/html/store.tiacyrusxxx.com/public_html/dev/ffmpeg-php-master/adapter/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/html/store.tiacyrusxxx.com/public_html/dev/ffmpeg-php-master/adapter/ffmpeg_movie.php
<?php
/**
 * ffmpeg_movie serves as a compatiblity adapter for old ffmpeg-php extension
 * 
 * @author char0n (VladimĂ­r Gorej, gorej@codescale.net)
 * @package FFmpegPHP
 * @subpackage adapter
 * @link http://ffmpeg-php.sourceforge.net/doc/api/ffmpeg_movie.php
 * @license New BSD
 * @version 2.6
 */
class ffmpeg_movie {

    protected $adaptee;
    
    public function __construct($moviePath, $persistent = false) {
        $this->adaptee = new FFmpegMovie($moviePath, new FFmpegOutputProvider('ffmpeg', $persistent));
    }
    
    public function getDuration() {
        return $this->adaptee->getDuration();
    }
    
    public function getFrameCount() {
        return $this->adaptee->getFrameCount();
    }
    
    public function getFrameRate() {
        return $this->adaptee->getFrameRate();
    }
    
    public function getFilename() {
        return $this->adaptee->getFilename();
    }
    
    public function getComment() {
        return $this->adaptee->getComment();
    }
    
    public function getTitle() {
        return $this->adaptee->getTitle();
    }
    
    public function getArtist() {
        return $this->adaptee->getArtist();
    }
    
    public function getAuthor() {
        return $this->adaptee->getAuthor();
    }
    
    public function getCopyright() {
        return $this->adaptee->getCopyright();
    }
    
    public function getGenre() {     
        return $this->adaptee->getGenre();
    }
    
    public function getTrackNumber() {    
        return $this->adaptee->getTrackNumber();
    }
    
    public function getYear() {
        return $this->adaptee->getYear();
    }    
    
    public function getFrameHeight() {
        return $this->adaptee->getFrameHeight(); 
    }
    
    public function getFrameWidth() {
        return $this->adaptee->getFrameWidth(); 
    }
    
    public function getPixelFormat() {
        return $this->adaptee->getPixelFormat(); 
    }
    
    public function getBitRate() {
        return $this->adaptee->getBitRate(); 
    }
    
    public function getVideoBitRate() {
        return $this->adaptee->getVideoBitRate(); 
    }
    
    public function getAudioBitRate() {
        return $this->adaptee->getAudioBitRate(); 
    }
    
    public function getAudioSampleRate() {
        return $this->adaptee->getAudioSampleRate(); 
    }
    
    public function getFrameNumber() {
        return $this->adaptee->getFrameNumber(); 
    }
    
    public function getVideoCodec() {
        return $this->adaptee->getVideoCodec(); 
    }
    
    public function getAudioCodec() {
        return $this->adaptee->getAudioCodec(); 
    }
    
    public function getAudioChannels() {
        return $this->adaptee->getAudioChannels(); 
    }
    
    public function hasAudio() {
        return $this->adaptee->hasAudio(); 
    }
    
    public function hasVideo() {
        return $this->adaptee->hasVideo(); 
    }
    
    public function getFrame($framenumber = null) {
        $toReturn = null;
        $frame    = $this->adaptee->getFrame($framenumber);
        if ($frame != null) {
            $toReturn = new ffmpeg_frame($frame->toGDImage(), $frame->getPTS());
            $frame    = null;
        }                            
        
        return $toReturn;
    }
    
    public function getNextKeyFrame() {        
        $toReturn = null;
        $frame    = $this->adaptee->getNextKeyFrame(); 
        if ($frame != null) {
            $toReturn = new ffmpeg_frame($frame->toGDImage(), $frame->getPTS());
            $frame    = null;
        }
        
        return $toReturn;
    }    
    
    public function __clone() {
        $this->adaptee = clone $this->adaptee;
    }
    
    public function __destruct() {
        $this->adaptee = null;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit