mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-16 05:09:57 +00:00
16f74094b9
- added metadata for rutube and vimeo. - added a picker for preferred filename pattern. - fixed content disposition header. - mute and audio dub tags don't appear together in a file name anymore. - youtube: dub file name tag doesn't appear anymore if audio track is default.
166 lines
5.9 KiB
JavaScript
166 lines
5.9 KiB
JavaScript
import { audioIgnore, services, supportedAudio } from "../config.js";
|
|
import { apiJSON } from "../sub/utils.js";
|
|
import loc from "../../localization/manager.js";
|
|
import createFilename from "./createFilename.js";
|
|
|
|
export default function(r, host, audioFormat, isAudioOnly, lang, isAudioMuted, disableMetadata, filenamePattern) {
|
|
let action,
|
|
responseType = 2,
|
|
defaultParams = {
|
|
u: r.urls,
|
|
service: host,
|
|
filename: r.filenameAttributes ?
|
|
createFilename(r.filenameAttributes, filenamePattern, isAudioOnly, isAudioMuted) : r.filename,
|
|
fileMetadata: !disableMetadata ? r.fileMetadata : false
|
|
},
|
|
params = {}
|
|
|
|
if (r.isPhoto) action = "photo";
|
|
else if (r.picker) action = "picker"
|
|
else if (isAudioMuted) action = "muteVideo";
|
|
else if (isAudioOnly) action = "audio";
|
|
else if (r.isM3U8) action = "singleM3U8";
|
|
else action = "video";
|
|
|
|
if (action === "picker" || action === "audio") {
|
|
if (!r.filenameAttributes) defaultParams.filename = r.audioFilename;
|
|
defaultParams.isAudioOnly = true;
|
|
defaultParams.audioFormat = audioFormat;
|
|
}
|
|
if (isAudioMuted && !r.filenameAttributes) {
|
|
defaultParams.filename = r.filename.replace('.', '_mute.')
|
|
}
|
|
|
|
switch (action) {
|
|
case "photo":
|
|
responseType = 1;
|
|
break;
|
|
case "video":
|
|
switch (host) {
|
|
case "bilibili":
|
|
params = { type: "render" };
|
|
break;
|
|
case "youtube":
|
|
params = { type: r.type };
|
|
break;
|
|
case "reddit":
|
|
responseType = r.typeId;
|
|
params = { type: r.type };
|
|
break;
|
|
case "vimeo":
|
|
if (Array.isArray(r.urls)) {
|
|
params = { type: "render" }
|
|
} else {
|
|
responseType = 1;
|
|
}
|
|
break;
|
|
|
|
case "vk":
|
|
case "douyin":
|
|
case "tiktok":
|
|
params = { type: "bridge" };
|
|
break;
|
|
|
|
case "vine":
|
|
case "instagram":
|
|
case "tumblr":
|
|
case "twitter":
|
|
case "pinterest":
|
|
case "streamable":
|
|
responseType = 1;
|
|
break;
|
|
}
|
|
break;
|
|
case "singleM3U8":
|
|
params = { type: "videoM3U8" }
|
|
break;
|
|
case "muteVideo":
|
|
params = {
|
|
type: Array.isArray(r.urls) ? "bridge" : "mute",
|
|
u: Array.isArray(r.urls) ? r.urls[0] : r.urls,
|
|
mute: true
|
|
}
|
|
if (host === "reddit" && r.typeId === 1) responseType = 1;
|
|
break;
|
|
|
|
case "picker":
|
|
responseType = 5;
|
|
switch (host) {
|
|
case "instagram":
|
|
case "twitter":
|
|
params = { picker: r.picker };
|
|
break;
|
|
case "douyin":
|
|
case "tiktok":
|
|
let pickerType = "render";
|
|
if (audioFormat === "mp3" || audioFormat === "best") {
|
|
audioFormat = "mp3";
|
|
pickerType = "bridge"
|
|
}
|
|
params = {
|
|
type: pickerType,
|
|
picker: r.picker,
|
|
u: Array.isArray(r.urls) ? r.urls[1] : r.urls,
|
|
copy: audioFormat === "best" ? true : false
|
|
}
|
|
}
|
|
break;
|
|
|
|
case "audio":
|
|
if ((host === "reddit" && r.typeId === 1) || audioIgnore.includes(host)) return apiJSON(0, { t: loc(lang, 'ErrorEmptyDownload') });
|
|
|
|
let processType = "render";
|
|
let copy = false;
|
|
|
|
if (!supportedAudio.includes(audioFormat)) audioFormat = "best";
|
|
|
|
if ((host === "tiktok" || host === "douyin") && services.tiktok.audioFormats.includes(audioFormat)) {
|
|
if (r.isMp3) {
|
|
if (audioFormat === "mp3" || audioFormat === "best") {
|
|
audioFormat = "mp3";
|
|
processType = "bridge"
|
|
}
|
|
} else if (audioFormat === "best") {
|
|
audioFormat = "m4a";
|
|
processType = "bridge"
|
|
}
|
|
}
|
|
if (host === "tumblr" && !r.filename && (audioFormat === "best" || audioFormat === "mp3")) {
|
|
audioFormat = "mp3";
|
|
processType = "bridge"
|
|
}
|
|
if ((audioFormat === "best" && services[host]["bestAudio"]) || (services[host]["bestAudio"] && (audioFormat === services[host]["bestAudio"]))) {
|
|
audioFormat = services[host]["bestAudio"];
|
|
if (host === "soundcloud") {
|
|
processType = "render"
|
|
copy = true
|
|
} else {
|
|
processType = "bridge"
|
|
}
|
|
} else if (audioFormat === "best") {
|
|
audioFormat = "m4a";
|
|
copy = true;
|
|
if (!r.filenameAttributes && r.audioFilename.includes("twitterspaces")) {
|
|
audioFormat = "mp3"
|
|
copy = false
|
|
}
|
|
}
|
|
if (r.isM3U8 || host === "vimeo") {
|
|
copy = false;
|
|
processType = "render"
|
|
}
|
|
|
|
params = {
|
|
type: processType,
|
|
u: Array.isArray(r.urls) ? r.urls[1] : r.urls,
|
|
audioFormat: audioFormat,
|
|
copy: copy
|
|
}
|
|
break;
|
|
default:
|
|
return apiJSON(0, { t: loc(lang, 'ErrorEmptyDownload') });
|
|
}
|
|
|
|
return apiJSON(responseType, {...defaultParams, ...params})
|
|
}
|