Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release-1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudloff committed May 1, 2018
2 parents 2a3612d + c20c0b3 commit 4539a11
Show file tree
Hide file tree
Showing 10 changed files with 305 additions and 221 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ addons:
apt:
packages:
- language-pack-fr
install:
- composer install
script: composer exec -v phpunit
after_success:
- bash <(curl -s https://codecov.io/bash)
install: composer install
after_success: bash <(curl -s https://codecov.io/bash)
before_deploy:
- yarn install --ignore-scripts
- yarn grunt doc
Expand Down
2 changes: 2 additions & 0 deletions classes/VideoDownload.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ public function getAudioStream($url, $format, $password = null)
$video = $this->getJSON($url, $format, $password);
if (in_array($video->protocol, ['m3u8', 'm3u8_native'])) {
throw new Exception(_('Conversion of M3U8 files is not supported.'));
} elseif ($video->protocol == 'http_dash_segments') {
throw new Exception(_('Conversion of DASH segments is not supported.'));
}

$avconvProc = $this->getAvconvProcess($video, $this->config->audioBitrate);
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"squizlabs/php_codesniffer": "~3.2.2",
"phpunit/phpunit": "~6.5.2",
"doctrine/instantiator": "~1.0.0",
"ffmpeg/ffmpeg": "~3.4.1",
"rg3/youtube-dl": "2018.03.20",
"ffmpeg/ffmpeg": "4.0",
"rg3/youtube-dl": "2018.05.01",
"heroku/heroku-buildpack-php": "*",
"anam/phantomjs-linux-x86-binary": "~2.1.1"
},
Expand All @@ -39,20 +39,20 @@
"type": "package",
"package": {
"name": "rg3/youtube-dl",
"version": "2018.03.20",
"version": "2018.05.01",
"dist": {
"type": "zip",
"url": "https://github.com/rg3/youtube-dl/archive/2018.03.20.zip"
"url": "https://github.com/rg3/youtube-dl/archive/2018.05.01.zip"
}
}
},
{
"type": "package",
"package": {
"name": "ffmpeg/ffmpeg",
"version": "3.4.1",
"version": "4.0",
"dist": {
"url": "https://johnvansickle.com/ffmpeg/releases/ffmpeg-3.4.1-64bit-static.tar.xz",
"url": "https://johnvansickle.com/ffmpeg/releases/ffmpeg-4.0-64bit-static.tar.xz",
"type": "xz"
},
"bin": [
Expand Down
Loading

0 comments on commit 4539a11

Please sign in to comment.