Пример #1
0
 protected function setStatus1Char()
 {
     if (!static::$cmd1Char) {
         static::$cmd1Char = new ShellCmd('stty -icanon');
     }
     static::$cmd1Char->exec();
 }
Пример #2
0
 /**
  * @param string $filename
  * @param int | string $start
  * @param int | string $duration
  * @throws Exception
  */
 function convert(&$filename, $start = 0, $duration = null)
 {
     $c = new ShellCmd($this->command);
     if (($width = $this->outputInfo->getWidth()) && ($height = $this->outputInfo->getHeight())) {
         // We have to resize the movie.
         if (!$this->outputInfo->getFormat()) {
             /* Output format not specified. By default, we should use 'copy',
             			but we're not able actually, since if video-stream is copied (not encoded!), 
             			then no scaling will be applied. Force format. */
             $ext = substr($this->source, strrpos($this->source, '.') + 1);
             $this->outputInfo->setFormat($ext);
         }
         $c->addOption('-vf', 'scale=' . $width . ':' . $height);
     }
     $cfg = $this->createConfigurator();
     $filename = $cfg->filename($filename);
     $c->addOption('-o', $filename);
     $cfg->configure($c);
     $c->addOptionIf($start, '-ss', $start);
     $c->addOptionIf($duration, '-endpos', $duration);
     $c->setTarget($this->source);
     try {
         $c->exec();
     } catch (\Exception $e) {
         throw new Exception("Mplayer call failed: " . $e->getMessage() . "\nCommand: " . $c->getLastCommannd());
     }
 }
Пример #3
0
 /**
  * Configure shell-command
  *
  * @param ShellCmd $c
  */
 function configure(ShellCmd $c)
 {
     $f = $this->info->getFormat();
     $c->addOptionIf($f, '-of', $f);
     $c->addOption('-ovc', $this->info->getVideoCodec());
     $c->addOption('-oac', $this->info->getAudioCodec());
 }
Пример #4
0
 function save($filename, $start = 0)
 {
     $c = new ShellCmd($this->command);
     $c->addOption('-i', $this->source);
     $c->addOption('-f', 'image2');
     $c->addOption('-vframes', 1);
     $c->addOptionIf($start, '-ss', $start);
     $c->addOptionIf($this->width && $this->height, '-s', $this->width . 'x' . $this->height);
     if (null === $filename) {
         $c->setTarget('-');
         // flush picture to STDOUT
         try {
             return $c->exec();
         } catch (ShellCmd\Fault $e) {
             throw new Fault("Snapshot failed! " . $e->getMessage());
         }
     } else {
         $c->setTarget($filename);
         // save to file
         try {
             $c->exec();
             return;
         } catch (ShellCmd\Fault $e) {
             throw new Fault("Snapshot failed! " . $e->getMessage());
         }
     }
 }
Пример #5
0
 /**
  * Convert media according to specifications in $this->outputInfo.
  *
  * @param string $filename - passed by reference because sometimes there is a need to change the filename,
  * 								or otherwise the backend will produce an error
  * @throws Exception
  */
 function convert(&$filename, $start = 0, $duration = null)
 {
     $c = new ShellCmd($this->command);
     $format = $this->outputInfo->getFormat();
     if ($format) {
         $ext = substr($filename, strrpos($filename, '.') + 1);
         if ($ext != $format) {
             $filename .= '.' . $format;
         }
     } else {
         $ext = substr($this->source, strrpos($this->source, '.') + 1);
         $filename .= '.' . $ext;
     }
     $c->addOption('-i', $this->source);
     $c->setTarget($filename);
     $c->addOptionIf($start, '-ss', $start);
     $c->addOptionIf($duration, '-t', $duration);
     if (($width = $this->outputInfo->getWidth()) && ($height = $this->outputInfo->getHeight())) {
         $c->addOption('-s', $width . 'x' . $height);
     }
     $bitrate = $this->outputInfo->getBitrate();
     $c->addOptionIf($bitrate, '-b', (int) $bitrate . "k");
     try {
         $c->exec();
     } catch (\Exception $e) {
         throw new Exception("Ffmpeg call failed: " . $e->getMessage() . "\nCommand: " . $c->getLastCommannd());
     }
 }
Пример #6
0
 /**
  * Configure shell-command
  *
  * @param ShellCmd $c
  */
 function configure(ShellCmd $c)
 {
     $c->addOption('-ovc', 'lavc');
     $vbitrate = $this->info->getBitrate();
     if (!$vbitrate) {
         $vbitrate = 64;
     }
     // 64 is default value of ffmpeg. low quality, low size.
     $c->addOption('-lavcopts', 'vcodec=wmv2:vbitrate=' . $vbitrate);
     $c->addOption('-oac', $this->info->getAudioCodec());
 }
Пример #7
0
 /**
  * @param string $dir
  * @param bool $remote
  * @param bool $merged
  * @return array
  */
 public static function enlist($dir, $remote = false, $merged = false)
 {
     $branchListCmd = new ShellCmd('cd ' . $dir . ' && git branch');
     $branchListCmd->addOption('--color=never');
     if ($remote) {
         $branchListCmd->addOption('--remote');
     }
     if ($merged) {
         $branchListCmd->addOption('--merged');
     }
     $output = $branchListCmd->exec();
     return explode("\n", $output);
 }
Пример #8
0
 function save($filename, $start = 0)
 {
     $c = new ShellCmd($this->command);
     $c->setTarget($this->source);
     $c->addOption('-vo', 'jpeg:outdir=' . $this->tmpDir);
     $c->addOption('-nosound');
     $c->addOption('-frames', 2);
     $c->addOptionIf($start, '-ss', $start);
     $c->addOptionIf($this->width && $this->height, '-vf', 'scale=' . $this->width . ':' . $this->height);
     try {
         $c->exec();
     } catch (ShellCmd\Fault $e) {
         throw new Fault("Snapshot failed! " . $e->getMessage());
     }
     @unlink($this->tmpDir . '/00000001.jpg');
     $image = $this->tmpDir . '/00000002.jpg';
     if ($filename) {
         rename($image, $filename);
         return;
     } else {
         $return = file_get_contents($image);
         @unlink($image);
         return $return;
     }
 }
Пример #9
0
 /**
  * Read media file information.
  *
  * @param string filename
  * @return Info
  */
 function info($filename)
 {
     $i = new Info($filename);
     $cmd = new ShellCmd($this->command);
     $cmd->addOption('-i', $filename);
     $infoText = $cmd->exec(true);
     // need to suppress errors due to ffmpeg producing error in case no output file is specified
     if (!preg_match('~Input\\s#0,\\s([^,]+)~m', $infoText, $matches1) || !preg_match('~\\s+Duration\\:\\s+(\\d{2}\\:\\d{2}\\:\\-?\\d{1,2}\\.\\d{1,2})(?:,\\s+start\\:\\s+\\d+\\.\\d+)?,\\s+bitrate\\:\\s+\\-?(\\d+|N/A)(?:\\s+kb/s)?\\s*~m', $infoText, $matches2)) {
         throw new Exception("Unable to read movie info from {$infoText}");
     }
     $i->setFormat($matches1[1]);
     $i->setDuration($matches2[1]);
     $bitrate = (int) $matches2[2];
     if (!$bitrate) {
         $bitrate = 200;
     }
     $i->setBitrate($bitrate);
     if (preg_match('~.+Audio\\:\\s+([a-zA-Z0-9\\-\\_]+),\\s+(\\d+)\\s+Hz(?:,\\s+(?:stereo|mono))(?:,\\s+[a-zA-Z0-9_\\-])?,\\s+(\\d+)\\s+kb/s~m', $infoText, $matches)) {
         $i->setHasAudio(true);
         $i->setAudioCodec($matches[1]);
         $i->setSamplingRate($matches[2]);
         $i->setAudioBitrate($matches[3]);
     }
     if (preg_match('~\\n([^\\n]+Video\\:\\s+(\\S+)[^\\n]+)\\n~m', $infoText, $matches)) {
         $videoInfo = $matches[1];
         $i->setHasVideo(true);
         $i->setVideoCodec($matches[2]);
         if (preg_match('~(\\d{2,})x(\\d+)~', $videoInfo, $matches)) {
             $i->setPixelSize($matches[1], $matches[2]);
         }
         if (preg_match('~(\\d+\\.\\d+)\\s+fps\\(r\\)~', $videoInfo, $matches)) {
             $i->setFps($matches[1]);
         }
     }
     return $i;
 }
Пример #10
0
 /**
  * Configure shell-command
  *
  * @param ShellCmd $c
  */
 function configure(ShellCmd $c)
 {
     $c->addOption('-of', 'lavf');
     /* have to add this ugly option due to mencoder bug */
     $c->addOption('-lavfopts', 'i_certify_that_my_video_stream_does_not_use_b_frames');
     $c->addOption('-ovc', 'lavc');
     $vbitrate = $this->info->getBitrate();
     if (!$vbitrate) {
         $vbitrate = 64;
     }
     // 64 is default value of ffmpeg. low quality, low size.
     $c->addOption('-lavcopts', 'vcodec=flv:vbitrate=' . $vbitrate . ':mbd=2:mv0:trell:v4mv:cbp:last_pred=3');
     $c->addOption('-oac', 'mp3lame');
     $c->addOption('-lameopts', 'abr:br=56');
     $c->addOption('-srate', '44100');
     // @todo: take this value from info
 }
Пример #11
0
 /**
  * Configure shell-command
  *
  * @param ShellCmd $c
  */
 function configure(ShellCmd $c)
 {
     $c->addOption('-ovc', 'lavc');
     /* @todo: this code for bitrate detection should be encapsulated in a method */
     $vbitrate = $this->info->getBitrate();
     if (!$vbitrate) {
         $vbitrate = 100;
     }
     // 100 is orten good enough and small enough
     $c->addOption('-lavcopts', 'vcodec=mpeg1video:vbitrate=' . $vbitrate);
     $c->addOption('-of', 'lavf');
     /* have to use this ugly option due to a bug in mencoder */
     $c->addOption('-lavfopts', 'format=mpg:i_certify_that_my_video_stream_does_not_use_b_frames');
     $c->addOption('-oac', $this->info->getAudioCodec());
 }
Пример #12
0
 /**
  * Configure shell-command.
  *
  * @param ShellCmd $c
  */
 function configure(ShellCmd $c)
 {
     $c->addOption('-ovc', $this->info->getVideoCodec());
     $c->addOption('-oac', $this->info->getAudioCodec());
 }
Пример #13
0
 /**
  * Read media file information.
  *
  * @param string filename
  * @return Info
  */
 function info($filename)
 {
     $i = new Info($filename);
     $cmd = new ShellCmd($this->command);
     $cmd->addOption('-identify');
     $cmd->addOption('-frames', 0);
     $cmd->addOption('-ao', 'null');
     $cmd->addOption('-vo', 'null');
     $cmd->setTarget($filename);
     $infoText = $cmd->exec();
     $w = $h = 0;
     foreach (preg_split("/\r\n|\r|\n/", $infoText) as $line) {
         if (preg_match('/^ID_([^\\=]+)=(.+)$/', $line, $matches)) {
             $key = $matches[1];
             $value = $matches[2];
             if (0 === strpos($key, 'VIDEO')) {
                 $i->setHasVideo(true);
             } elseif (0 === strpos($key, 'AUDIO')) {
                 $i->setHasAudio(true);
             }
             switch ($key) {
                 case "VIDEO_WIDTH":
                     $w = (int) $value;
                     break;
                 case "VIDEO_HEIGHT":
                     $h = (int) $value;
                     break;
                 case "VIDEO_FPS":
                     $i->setFps($value);
                     break;
                 case "AUDIO_BITRATE":
                     $i->setAudioBitrate($value / 1000);
                     break;
                 case "AUDIO_RATE":
                     $i->setSamplingRate($value);
                     break;
                 case "LENGTH":
                     $i->setDuration($value);
                     break;
                 case "AUDIO_CODEC":
                     $i->setAudioCodec($value);
                     break;
                 case "VIDEO_CODEC":
                     $i->setVideoCodec($value);
                     break;
                 default:
                     break;
             }
         } elseif (preg_match('/^([^\\s]+) file format detected/', $line, $matches)) {
             $i->setFormat($matches[1]);
         }
     }
     if ($i->hasVideo()) {
         $i->setPixelSize($w, $h);
         $duration = $i->getDuration();
         if (0 == $duration) {
             // experimentally it has been found that 5 seconds will be ok here...
             $duration = 5;
         }
         $i->setBitrate(filesize($filename) / 1024 * 8 / $duration);
     }
     return $i;
 }