This commit is contained in:
grosroro 2012-05-31 16:16:35 +02:00
commit 44e6eb6f79
7 changed files with 20 additions and 21 deletions

View file

@ -26,8 +26,8 @@ class FFProbe extends Binary
/** /**
* Probe the format of a given file * Probe the format of a given file
* *
* @param string $pathfile * @param string $pathfile
* @return string A Json object containing the key/values of the probe output * @return string A Json object containing the key/values of the probe output
* *
* @throws InvalidArgumentException * @throws InvalidArgumentException
* @throws RuntimeException * @throws RuntimeException
@ -72,8 +72,8 @@ class FFProbe extends Binary
/** /**
* Probe the streams contained in a given file * Probe the streams contained in a given file
* *
* @param string $pathfile * @param string $pathfile
* @return array An array of streams array * @return array An array of streams array
* *
* @throws InvalidArgumentException * @throws InvalidArgumentException
* @throws RuntimeException * @throws RuntimeException

View file

@ -26,8 +26,8 @@ class Dimension
/** /**
* Constructor * Constructor
* *
* @param integer $width * @param integer $width
* @param integer $height * @param integer $height
* @throws InvalidArgumentException when one of the parameteres is invalid * @throws InvalidArgumentException when one of the parameteres is invalid
*/ */
public function __construct($width, $height) public function __construct($width, $height)

View file

@ -28,9 +28,9 @@ interface Resizable extends BaseVideo
* Returns the computed dimensions for the resize, after operation. * Returns the computed dimensions for the resize, after operation.
* This method return the actual dimensions that FFmpeg will use. * This method return the actual dimensions that FFmpeg will use.
* *
* @param integer $originalWidth * @param integer $originalWidth
* @param integer $originalHeight * @param integer $originalHeight
* @return Dimension A dimension * @return Dimension A dimension
*/ */
public function getComputedDimensions($originalWidth, $originalHeight); public function getComputedDimensions($originalWidth, $originalHeight);
} }

View file

@ -12,7 +12,6 @@
namespace FFMpeg\Format\Video; namespace FFMpeg\Format\Video;
use FFMpeg\Format\Video as BaseVideo; use FFMpeg\Format\Video as BaseVideo;
use FFMpeg\Format\Dimension;
/** /**
* @author Romain Neutron imprec@gmail.com * @author Romain Neutron imprec@gmail.com