Merge branch 'develop' into feature/stream

This commit is contained in:
Pierre Rudloff 2016-12-27 00:02:27 +01:00
commit f27bb3bbb9
2 changed files with 14 additions and 0 deletions

View file

@ -330,4 +330,15 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase
$config->rtmpdump = 'foobar';
$this->download->getAudioStream($url, $format);
}
/**
* Test getAudioStream function with a M3U8 file.
*
* @return void
* @expectedException Exception
*/
public function testGetAudioStreamM3uError()
{
$this->download->getAudioStream('https://twitter.com/verge/status/813055465324056576/video/1', 'best');
}
}