ffmpeg-mappable-media/src/FFMpeg/Format/VideoFormat.php

18 lines
236 B
PHP
Raw Normal View History

2012-04-13 10:20:54 +02:00
<?php
namespace FFMpeg\Format;
2012-04-13 12:45:41 +02:00
interface VideoFormat
2012-04-13 10:20:54 +02:00
{
public function getWidth();
public function getHeight();
public function getFrameRate();
public function getVideoCodec();
public function getGOPSize();
}