popen can also return false

This commit is contained in:
Pierre Rudloff 2017-12-05 15:56:34 +01:00
parent c3719f68e5
commit d35b43dc17

View file

@ -297,7 +297,7 @@ class VideoDownload
* @param string $format Format to use for the video * @param string $format Format to use for the video
* @param string $password Video password * @param string $password Video password
* *
* @return resource popen stream * @return resource|false popen stream
*/ */
public function getAudioStream($url, $format, $password = null) public function getAudioStream($url, $format, $password = null)
{ {
@ -324,7 +324,7 @@ class VideoDownload
* *
* @param \stdClass $video Video object returned by getJSON * @param \stdClass $video Video object returned by getJSON
* *
* @return resource popen stream * @return resource|false popen stream
*/ */
public function getM3uStream(\stdClass $video) public function getM3uStream(\stdClass $video)
{ {
@ -353,7 +353,7 @@ class VideoDownload
* *
* @param array $urls URLs of the video ($urls[0]) and audio ($urls[1]) files * @param array $urls URLs of the video ($urls[0]) and audio ($urls[1]) files
* *
* @return resource popen stream * @return resource|false popen stream
*/ */
public function getRemuxStream(array $urls) public function getRemuxStream(array $urls)
{ {
@ -379,7 +379,7 @@ class VideoDownload
* *
* @param \stdClass $video Video object returned by getJSON * @param \stdClass $video Video object returned by getJSON
* *
* @return resource popen stream * @return resource|false popen stream
*/ */
public function getRtmpStream(\stdClass $video) public function getRtmpStream(\stdClass $video)
{ {
@ -392,7 +392,7 @@ class VideoDownload
* @param object $video Video object returned by youtube-dl * @param object $video Video object returned by youtube-dl
* @param string $format Requested format * @param string $format Requested format
* *
* @return resource * @return resource|false
*/ */
public function getPlaylistArchiveStream(\stdClass $video, $format) public function getPlaylistArchiveStream(\stdClass $video, $format)
{ {