Ejemplo n.º 1
0
 public function testDimensions()
 {
     $source = fopen("{$this->_files}/video_theora_comments.ogv", 'rb');
     $subject = new Media_Process_Adapter_FfmpegShell($source);
     $this->assertEquals(320, $subject->width());
     $this->assertEquals(176, $subject->height());
     fclose($source);
 }