diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-11-30 15:40:32 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-11-30 15:40:32 -0500 |
| commit | eb4dcce4167444cc856ed904c23d4417365dd0e8 (patch) | |
| tree | 58067a6fbe7c956b26031cde3b15453f975b22d2 /www/js/app.js | |
| parent | 76ed15b904463247bcd799b0116380ee4a1ddb6d (diff) | |
major rewrite of GIF creation - memory handling much better #398 - moved to Stream based support
Diffstat (limited to 'www/js/app.js')
| -rw-r--r-- | www/js/app.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/www/js/app.js b/www/js/app.js index 81e26253..b30da6be 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -94,7 +94,10 @@ angular.module('zmApp', [ monSingleImageQualityLowBW: 70, montageQualityLowBW: 50, eventMontageQualityLowBW: 50, - maxGifCount:70, + maxGifCount:60, + maxGifCount2:500, + maxGifWidth:800.0, + quantSample:15, }) @@ -543,6 +546,8 @@ angular.module('zmApp', [ 'request': function(config) { + if (!config) return config; + if (!config.url) return config; // NOTE ON TIMEOUTS: As of Oct 10 2016, it seems // the Http queue often gets messed up when there is a timeout |
