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;
}