Added required concat method for Audio files
This commit is contained in:
parent
a1d5fa51ba
commit
14323d12c2
1 changed files with 11 additions and 0 deletions
|
|
@ -139,4 +139,15 @@ class Audio extends AbstractStreamableMedia
|
|||
{
|
||||
return new Waveform($this, $this->driver, $this->ffprobe, $width, $height, $colors);
|
||||
}
|
||||
|
||||
/**
|
||||
* Concatenates a list of audio files into one unique audio file.
|
||||
*
|
||||
* @param array $sources
|
||||
* @return Concat
|
||||
*/
|
||||
public function concat($sources)
|
||||
{
|
||||
return new Concat($sources, $this->driver, $this->ffprobe);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue