|
@@ -200,16 +200,16 @@ detail = async (url, platform) => {
|
|
|
}
|
|
|
console.log(`after android api, format size:${originFormats.length}`);
|
|
|
|
|
|
- // web
|
|
|
- // const currentFormats = [];
|
|
|
- // for (const format of ytInitialPlayerResponse["streamingData"]["formats"].concat(ytInitialPlayerResponse["streamingData"]["adaptiveFormats"])) {
|
|
|
- // if (format) {
|
|
|
- // format["from"] = "web"
|
|
|
- // currentFormats.push(format);
|
|
|
- // }
|
|
|
- // }
|
|
|
- // originFormats = originFormats.concat(currentFormats);
|
|
|
- // console.log(`after html, 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 = [];
|
|
@@ -237,7 +237,8 @@ detail = async (url, platform) => {
|
|
|
"abr": "0",
|
|
|
"container": "mp4_dash",
|
|
|
"from": format["from"],
|
|
|
- "source": format
|
|
|
+ "source": format,
|
|
|
+ "audioUrl": audioUrl
|
|
|
}
|
|
|
formats.push(current)
|
|
|
qualities.push(format["qualityLabel"]);
|