From 4bbb50f9897c35a0c550b45f361b46588659269d Mon Sep 17 00:00:00 2001 From: Jens Hausdorf Date: Tue, 24 Oct 2017 21:37:45 +0200 Subject: [PATCH] fix readme typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a92542e..e826dbb 100644 --- a/README.md +++ b/README.md @@ -327,7 +327,7 @@ $video->filters()->crop(new FFMpeg\Coordinate\Point("t*100", 0, true), new FFMpe It takes two parameters: - `$point`, an instance of `FFMpeg\Coordinate\Point`, specifies the point to crop -- `$dimension`, an instance of `FFMPeg\Coordinate\Dimension`, specifies the dimension of the output video +- `$dimension`, an instance of `FFMpeg\Coordinate\Dimension`, specifies the dimension of the output video ### Audio @@ -589,7 +589,7 @@ $ffprobe You can validate media files using PHP-FFMpeg's FFProbe wrapper. ```php -$ffprobe = FFMPeg\FFProbe::create(); +$ffprobe = FFMpeg\FFProbe::create(); $ffprobe->isValid('/path/to/file/to/check'); // returns bool ```