Initila Import
This commit is contained in:
commit
11345d6367
17 changed files with 773 additions and 0 deletions
26
src/FFMpeg/Format/Format.php
Normal file
26
src/FFMpeg/Format/Format.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
namespace FFMpeg\Format;
|
||||
|
||||
interface Format
|
||||
{
|
||||
|
||||
public function getExtraParams();
|
||||
|
||||
public function getWidth();
|
||||
|
||||
public function getHeight();
|
||||
|
||||
public function getFrameRate();
|
||||
|
||||
public function getAudioCodec();
|
||||
|
||||
public function getAudioSampleRate();
|
||||
|
||||
public function getVideoCodec();
|
||||
|
||||
public function getKiloBitrate();
|
||||
|
||||
public function getGOPSize();
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue