diff --git a/static/templates/documentation-NA.html b/static/templates/documentation-NA.html index f1facde..318ef6d 100644 --- a/static/templates/documentation-NA.html +++ b/static/templates/documentation-NA.html @@ -36,7 +36,7 @@

Скачать документацию

-
+
@@ -49,7 +49,7 @@ Скачать Руководство по эксплуатации
-
+
@@ -62,7 +62,7 @@ Скачать Жизненный цикл
-
+
@@ -75,7 +75,7 @@ Скачать Инструкцию по установке экземпляра ПО
-
+
diff --git a/static/templates/documentation.html b/static/templates/documentation.html index 1ad0438..c6dd8aa 100644 --- a/static/templates/documentation.html +++ b/static/templates/documentation.html @@ -111,7 +111,7 @@

Скачать документацию

-
+
@@ -124,7 +124,7 @@ Скачать Руководство по эксплуатации
-
+
@@ -137,7 +137,7 @@ Скачать Жизненный цикл
-
+
@@ -150,7 +150,7 @@ Скачать Инструкцию по установке экземпляра ПО
-
+
diff --git a/static/templates/live.html b/static/templates/live.html index 1eb9251..4ce6bad 100644 --- a/static/templates/live.html +++ b/static/templates/live.html @@ -351,7 +351,7 @@ const camerasPerGroup = 5; var totalCameras = 12 - 1; const isSecure = window.location.protocol === "https:"; - const baseURL = "https://{{VIRTUAL_HOST}}/http/live.flv"; + const baseURL = "http://{{VIRTUAL_HOST}}/http/live.flv"; function stopAllCameras() { flvPlayers.forEach(player => { diff --git a/static/templates/videos/export.html b/static/templates/videos/export.html index 6ac4c2e..8f414c5 100644 --- a/static/templates/videos/export.html +++ b/static/templates/videos/export.html @@ -900,7 +900,7 @@ endVideoTimeInput.addEventListener("blur", sendPostRequest); const serial = selectedDevice.value; - const url = `http://localhost:8081/export?url=https%3A%2F%2F{{VIRTUAL_HOST}}%2Fhttp%2Fdownload.flv%3Fserial%3D${serial}%26channel%3D${channel}%26queryTime%3D${selectedDate}%26startTime%3D${startTime}%26endTime%3D${endTime}%26recordID%3D${resData.dataId}`; + const url = `http://localhost:8081/export?url=http%3A%2F%2F{{VIRTUAL_HOST}}%2Fhttp%2Fdownload.flv%3Fserial%3D${serial}%26channel%3D${channel}%26queryTime%3D${selectedDate}%26startTime%3D${startTime}%26endTime%3D${endTime}%26recordID%3D${resData.dataId}`; document.getElementById("exportLoading").style.display = 'none'; window.open(url, '_blank'); } diff --git a/static/templates/videos/playback.html b/static/templates/videos/playback.html index 64c75aa..237cbf7 100644 --- a/static/templates/videos/playback.html +++ b/static/templates/videos/playback.html @@ -722,7 +722,7 @@ videoTimeInput.addEventListener("blur", sendPostRequest); selectedChannel = channel; - const url = `http://localhost:8081/playback?url=https%3A%2F%2F{{VIRTUAL_HOST}}%2Fhttp%2Fplayback.flv%3Fserial%3D${serial}%26channel%3D${channel}%26quality%3D1%26queryTime%3D${selectedDate}%26startTime%3D${startTime}%26endTime%3D${endTime}`; + const url = `http://localhost:8081/playback?url=http%3A%2F%2F{{VIRTUAL_HOST}}%2Fhttp%2Fplayback.flv%3Fserial%3D${serial}%26channel%3D${channel}%26quality%3D1%26queryTime%3D${selectedDate}%26startTime%3D${startTime}%26endTime%3D${endTime}`; window.open(url, '_blank'); }