From 223118db4e6df322b7200da2ae323245cc0e680d Mon Sep 17 00:00:00 2001 From: Romain Biard Date: Wed, 11 Jan 2017 10:43:30 -0300 Subject: [PATCH] We remove a break instruction inacurrately copied-pasted. --- src/FFMpeg/Filters/Video/ExtractMultipleFramesFilter.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/FFMpeg/Filters/Video/ExtractMultipleFramesFilter.php b/src/FFMpeg/Filters/Video/ExtractMultipleFramesFilter.php index 6133396..96346b9 100644 --- a/src/FFMpeg/Filters/Video/ExtractMultipleFramesFilter.php +++ b/src/FFMpeg/Filters/Video/ExtractMultipleFramesFilter.php @@ -104,7 +104,6 @@ class ExtractMultipleFramesFilter implements VideoFilterInterface $commands[] = '-vf'; $commands[] = 'fps=' . $this->frameRate; $commands[] = $this->destinationFolder . 'frame-%0'.$nbDigitsInFileNames.'d.jpg'; - break; } catch (RuntimeException $e) { throw new RuntimeException('An error occured while extracting the frames: ' . $e->getMessage() . '. The code: ' . $e->getCode());