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-0.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudloff committed Nov 21, 2015
2 parents d26cc2f + 6205dd5 commit 3f06b82
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ language: php
install:
- composer install
- npm install
before_install:
- composer selfupdate
2 changes: 1 addition & 1 deletion classes/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public $python = '/usr/bin/python';
public $params = '--no-playlist --no-warnings -f best';
public $convert = false;
public $avconv = 'ffmpeg/ffmpeg';
public $avconv = 'vendor/bin/ffmpeg';

/**
* Config constructor
Expand Down
17 changes: 16 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"slim/slim": "~2.6.2",
"slim/views": "~0.1.3",
"rudloff/smarty-plugin-noscheme": "~0.1.0",
"symfony/yaml": "~2.7.6"
"symfony/yaml": "~2.7.6",
"ffmpeg/ffmpeg": "~2.8.2"
},
"require-dev": {
"symfony/var-dumper": "~2.7.6"
Expand All @@ -34,6 +35,20 @@
"reference": "2015.11.13"
}
}
},
{
"type": "package",
"package": {
"name": "ffmpeg/ffmpeg",
"version": "2.8.2",
"dist": {
"url": "http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz",
"type": "xz"
},
"bin": [
"ffmpeg"
]
}
}
],
"authors": [
Expand Down
18 changes: 16 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ youtubedl: vendor/rg3/youtube-dl/youtube_dl/__main__.py
python: /usr/bin/python
params: --no-playlist --no-warnings -f best
convert: false
avconv: ffmpeg/ffmpeg
avconv: vendor/bin/ffmpeg
2 changes: 0 additions & 2 deletions ffmpeg/.gitignore

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alltube",
"version": "0.4.1",
"version": "0.4.2",
"dependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
Expand All @@ -20,6 +20,6 @@
"url": "https://github.com/Rudloff/alltube.git"
},
"scripts": {
"postinstall": "./node_modules/bower/bin/bower install; ./node_modules/grunt-cli/bin/grunt; curl http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz -o ffmpeg.tar.xz; tar xJf ffmpeg.tar.xz -C ffmpeg --strip-components=1"
"postinstall": "./node_modules/bower/bin/bower install; ./node_modules/grunt-cli/bin/grunt"
}
}

0 comments on commit 3f06b82

Please sign in to comment.