Remove not needed spaces (#318)
This commit is contained in:
parent
7cff2ecb23
commit
84493739b4
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
|
@ -117,9 +117,9 @@ $format->on('progress', function ($video, $format, $percentage) {
|
|||
});
|
||||
|
||||
$format
|
||||
-> setKiloBitrate(1000)
|
||||
-> setAudioChannels(2)
|
||||
-> setAudioKiloBitrate(256);
|
||||
->setKiloBitrate(1000)
|
||||
->setAudioChannels(2)
|
||||
->setAudioKiloBitrate(256);
|
||||
|
||||
$video->save($format, 'video.avi');
|
||||
```
|
||||
|
|
@ -339,8 +339,8 @@ $format->on('progress', function ($audio, $format, $percentage) {
|
|||
});
|
||||
|
||||
$format
|
||||
-> setAudioChannels(2)
|
||||
-> setAudioKiloBitrate(256);
|
||||
->setAudioChannels(2)
|
||||
->setAudioKiloBitrate(256);
|
||||
|
||||
$audio->save($format, 'track.flac');
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue