readme improvements part 2
This commit is contained in:
parent
bad8f77ba0
commit
5551d0122a
1 changed files with 3 additions and 3 deletions
|
|
@ -484,7 +484,7 @@ To concatenate videos encoded with the same codec, do as follow:
|
|||
|
||||
```php
|
||||
// In order to instantiate the video object, you HAVE TO pass a path to a valid video file.
|
||||
// We recommand that you put there the path of any of the video you want to use in this concatenation.
|
||||
// We recommend that you put there the path of any of the video you want to use in this concatenation.
|
||||
$video = $ffmpeg->open( '/path/to/video' );
|
||||
$video
|
||||
->concat(array('/path/to/video1', '/path/to/video2'))
|
||||
|
|
@ -497,7 +497,7 @@ To concatenate videos encoded with the same codec, do as follow:
|
|||
|
||||
```php
|
||||
// In order to instantiate the video object, you HAVE TO pass a path to a valid video file.
|
||||
// We recommand that you put there the path of any of the video you want to use in this concatenation.
|
||||
// We recommend that you put there the path of any of the video you want to use in this concatenation.
|
||||
$video = $ffmpeg->open( '/path/to/video' );
|
||||
|
||||
$format = new FFMpeg\Format\Video\X264();
|
||||
|
|
@ -620,7 +620,7 @@ $ffprobe->isValid('/path/to/file/to/check'); // returns bool
|
|||
|
||||
## Using with Silex Microframework
|
||||
|
||||
A service provider is easy to set up:
|
||||
The service provider is easy to set up:
|
||||
|
||||
```php
|
||||
$app = new Silex\Application();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue