mirror of
https://github.com/wukko/cobalt.git
synced 2025-01-12 20:25:06 +01:00
Merge branch 'current' into undici
This commit is contained in:
commit
a09b062f9d
3 changed files with 1 additions and 16 deletions
|
@ -69,7 +69,6 @@
|
|||
"enabled": true
|
||||
},
|
||||
"streamable": {
|
||||
"alias": "streamable videos",
|
||||
"patterns": [":id", "o/:id", "e/:id", "s/:id"],
|
||||
"enabled": true
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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":
|
||||
|
|
Loading…
Reference in a new issue