Monica视频监控处理程序
xc
2021-04-27 cdb957a6df222e8bc2ea8ce22e164d6588ab5255
src/main/resources/public/js/live/liveComponent.js
@@ -90,7 +90,7 @@
    LiveComponent.prototype.playVideo = function (video_id, callback) {
        $.ajax({
            type: "get",
            url: "../../webapi/media/live?param=" + video_id,
            url: "../../monica/live?param=" + video_id,
            timeout: 5000,
            async: false,
            success: function (result) {
@@ -102,7 +102,7 @@
    LiveComponent.prototype.playVideoRTSP = function (rtspUrl, callback) {
        $.ajax({
            type: "get",
            url: "../../webapi/media/rtsp/live?param=" + rtspUrl,
            url: "../../monica/rtsp/live?param=" + rtspUrl,
            timeout: 5000,
            async: false,
            success: function (result) {
@@ -116,7 +116,7 @@
        if (streamPath && typeof streamPath === "string") {
            $.ajax({
                type: "get",
                url: "../../webapi/media/stop?param=" + streamPath,
                url: "../../monica/stop?param=" + streamPath,
                async: false,
                success: function (result) {
                }