This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/video/PngEncoder.js b/lib/video/PngEncoder.js | |
index 127411c..0c201e0 100644 | |
--- a/lib/video/PngEncoder.js | |
+++ b/lib/video/PngEncoder.js | |
@@ -98,7 +98,7 @@ PngEncoder.prototype._spawnFfmpeg = function() { | |
ffmpegOptions.push('-r', this._frameRate); // framerate flag | |
ffmpegOptions.push('-'); // output | |
// @TODO allow people to configure the ffmpeg path | |
- return this._spawn('ffmpeg', ffmpegOptions); | |
+ return this._spawn('avconv', ffmpegOptions); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### ElasticSearch version | |
if [ -z "$1" ]; then | |
echo "" | |
echo " Please specify the Elasticsearch version you want to install!" | |
echo "" | |
echo " $ $0 1.4.0" | |
echo "" | |
exit 1 | |
fi |
OlderNewer