diff --git a/src/modules/processing/servicesConfig.json b/src/modules/processing/servicesConfig.json index 9b56bcd..d6fa3fe 100644 --- a/src/modules/processing/servicesConfig.json +++ b/src/modules/processing/servicesConfig.json @@ -69,7 +69,6 @@ "enabled": true }, "streamable": { - "alias": "streamable videos", "patterns": [":id", "o/:id", "e/:id", "s/:id"], "enabled": true } diff --git a/src/modules/stream/types.js b/src/modules/stream/types.js index f3bb76b..eeec5a5 100644 --- a/src/modules/stream/types.js +++ b/src/modules/stream/types.js @@ -1,7 +1,7 @@ import { spawn } from "child_process"; import ffmpeg from "ffmpeg-static"; import { ffmpegArgs, genericUserAgent } from "../config.js"; -import { getThreads, metadataManager, msToTime } from "../sub/utils.js"; +import { getThreads, metadataManager } from "../sub/utils.js"; import { request } from 'undici'; function fail(res) { diff --git a/src/modules/sub/utils.js b/src/modules/sub/utils.js index 86a180a..e237e6a 100644 --- a/src/modules/sub/utils.js +++ b/src/modules/sub/utils.js @@ -49,20 +49,6 @@ export function metadataManager(obj) { for (let i in keys) { if (tags.includes(keys[i])) commands.push('-metadata', `${keys[i]}=${obj[keys[i]]}`) } return commands; } -export function msToTime(d) { - let milliseconds = parseInt((d % 1000) / 100, 10), - seconds = parseInt((d / 1000) % 60, 10), - minutes = parseInt((d / (1000 * 60)) % 60, 10), - hours = parseInt((d / (1000 * 60 * 60)) % 24, 10), - r; - - hours = (hours < 10) ? `0${hours}` : hours; - minutes = (minutes < 10) ? `0${minutes}` : minutes; - seconds = (seconds < 10) ? `0${seconds}` : seconds; - r = `${hours}:${minutes}:${seconds}`; - if (milliseconds) r += `.${milliseconds}`; - return r; -} export function cleanURL(url, host) { switch(host) { case "vk":