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

18 lines
256 B
PHP
Raw Normal View History

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