From 6d45c54d0da03b41557aa4d35d0d0c2392f90886 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Fri, 25 May 2012 18:46:02 +0200 Subject: [PATCH] Fix Typo --- src/FFMpeg/FFMpeg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FFMpeg/FFMpeg.php b/src/FFMpeg/FFMpeg.php index 3b02369..83e8e85 100644 --- a/src/FFMpeg/FFMpeg.php +++ b/src/FFMpeg/FFMpeg.php @@ -195,7 +195,7 @@ class FFMpeg extends Binary $cmd_part2 = ''; - if ($format->getWidth() && $format->getHieght()) { + if ($format->getWidth() && $format->getHeight()) { $cmd_part2 .= ' -s ' . $format->getWidth() . 'x' . $format->getHeight(); }