|
@@ -229,6 +229,17 @@ detail = async (url, requestId, platform) => {
|
|
|
}
|
|
|
console.log(`after android api, format size:${originFormats.length}`);
|
|
|
|
|
|
+ let audioUrl = ""
|
|
|
+ for (let format of originFormats) {
|
|
|
+ if (format["url"]) {
|
|
|
+ const {vcodec, acodec} = parseCodecs(format)
|
|
|
+ if (!vcodec && acodec) {
|
|
|
+ audioUrl = format["url"]
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
let qualities = [];
|
|
|
const formats = [];
|
|
|
for (let format of originFormats) {
|
|
@@ -255,7 +266,8 @@ detail = async (url, requestId, platform) => {
|
|
|
"abr": "0",
|
|
|
"container": "mp4_dash",
|
|
|
"from": format["from"],
|
|
|
- "source": format
|
|
|
+ "source": format,
|
|
|
+ "audioUrl": audioUrl
|
|
|
}
|
|
|
formats.push(current)
|
|
|
qualities.push(format["qualityLabel"]);
|
|
@@ -270,7 +282,6 @@ detail = async (url, requestId, platform) => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-
|
|
|
formats.sort((a, b) => parseInt(a["height"]) - parseInt(b["height"]));
|
|
|
|
|
|
const videoDetails = {
|