From 7876880629bc0e8ad264f525973954c3f5ea0dcb Mon Sep 17 00:00:00 2001 From: mg Date: Tue, 24 Sep 2019 17:53:07 -0300 Subject: [PATCH] Removing "experimental" cutting feature --- thrimbletrimmer/dashboard.html | 4 ---- thrimbletrimmer/index.html | 1 - thrimbletrimmer/scripts/IO.js | 4 +--- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/thrimbletrimmer/dashboard.html b/thrimbletrimmer/dashboard.html index 309e881..a125d0c 100644 --- a/thrimbletrimmer/dashboard.html +++ b/thrimbletrimmer/dashboard.html @@ -81,16 +81,12 @@ Stream Start Time End Time - Allow Holes - Experimental - - diff --git a/thrimbletrimmer/index.html b/thrimbletrimmer/index.html index 820af64..7feb612 100644 --- a/thrimbletrimmer/index.html +++ b/thrimbletrimmer/index.html @@ -61,7 +61,6 @@ Hours Allow Holes: - Experimental: Quality Level: Upload Location: Uploader Whitelist: diff --git a/thrimbletrimmer/scripts/IO.js b/thrimbletrimmer/scripts/IO.js index 627fc2b..de698f7 100644 --- a/thrimbletrimmer/scripts/IO.js +++ b/thrimbletrimmer/scripts/IO.js @@ -84,7 +84,6 @@ thrimbletrimmerSubmit = function() { video_title:document.getElementById("VideoTitle").value, video_description:document.getElementById("VideoDescription").value, allow_holes:String(document.getElementById('AllowHoles').checked), - experimental:String(document.getElementById('IsExperimental').checked), upload_location:document.getElementById('uploadLocation').value, video_channel:document.getElementById("StreamName").value, video_quality:document.getElementById('qualityLevel').options[document.getElementById('qualityLevel').options.selectedIndex].value, @@ -127,8 +126,7 @@ thrimbletrimmerDownload = function() { "/"+document.getElementById('qualityLevel').options[document.getElementById('qualityLevel').options.selectedIndex].value+".ts" + "?start=" + downloadStart + "&end=" + downloadEnd + - "&allow_holes=" + String(document.getElementById('AllowHoles').checked) + - "&experimental=" + String(document.getElementById('IsExperimental').checked); + "&allow_holes=" + String(document.getElementById('AllowHoles').checked); console.log(targetURL); document.getElementById('outputFile').src = targetURL; }