不吃鱼的猫

我饿了

好饿哦~

头像

PVX

博客

笨茶茶        作者:小鱼干

我去

......

3        作者:小鱼干

a710073f9a-1576048494716

......

笨茶茶        作者:小鱼干

<?php

class ffmpeg_movie
{
/** Open a video or audio file and return it as an object.
* @param string $path_to_media - File path of video or audio file to open.
* @param bool $persistent - Whether to open this media as a persistent resource. See the PHP documentation for more info about persistent resources
*/
public function __construct($path_to_media, $persistent)
{ }

/** Return the duration of a movie or audio file in seconds.
* @return int
*/
public function getDuration()
{ }

/** Return the number of frames in a movie or audio file.
* @return int
*/
public function getFrameCount()
{ }

/** Return the frame rate of a movie in fps.
* @return int
*/
public function getFrameRate()
{ }

/** Return the path and name of the movie file or audio file.
* @return string
*/
public function getFilename()
{ }

/** Return the comment field from the movie or audio file.
* @return string
*/
public function getComment()
{ }

/** Return the title field from the movie or audio file.
* @return string
*/
public function getTitle()
{ }

/** Return the author field from the movie or the artist ID3 field from an mp3 file.
* @return string
*/
public function getAuthor()
{ }

/** Return the author field from the movie or the artist ID3 field from an mp3 file.
* @return string
*/
public function getArtist()
{ }

/** Return the copyright field from the movie or audio file.
* @return string
*/
public function getCopyright()
{ }

/** Return the genre ID3 field from an mp3 file.
* @return string
*/
public function getGenre()
{ }

/** Return the track ID3 field from an mp3 file.
* @return string|int
*/
public function getTrackNumber()
{ }

/** Return the year ID3 field from an mp3 file.
* @return string|int
*/
public function getYear()
{ }

/** Return the height of the movie in pixels.
* @return int
*/
public function getFrameHeight()
{ }

/** Return the width of the movie in pixels.
* @return int
*/
public function getFrameWidth()
{ }

/** Return the pixel format of the movie.*/
public function getPixelFormat()
{ }

/** Return the bit rate of the movie or audio file in bits per second.
* @return int
*/
public function getBitR......

小头像        作者:小鱼儿

......

小小黑        作者:admin

......