123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- function parseCodecs(format) {
- const mimeType = format["mimeType"]
- if (!mimeType) {
- return {};
- }
- const regex = /(?<mimetype>[^/]+\/[^;]+)(?:;\s*codecs="?(?<codecs>[^"]+))?/;
- const match = mimeType.match(regex);
- if (!match) {
- return {};
- }
- const codecs = match.groups.codecs;
- if (!codecs) {
- return {};
- }
- const splitCodecs = codecs.trim().replace(/,$/, '').split(',').map(str => str.trim()).filter(Boolean);
- let vcodec = null;
- let acodec = null;
- for (const fullCodec of splitCodecs) {
- const codec = fullCodec.split('.')[0];
- if (['avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01', 'theora'].includes(codec)) {
- if (!vcodec) {
- vcodec = fullCodec;
- }
- } else if (['mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'].includes(codec)) {
- if (!acodec) {
- acodec = fullCodec;
- }
- } else {
- console.warn(`WARNING: Unknown codec ${fullCodec}`);
- }
- }
- if (!vcodec && !acodec) {
- if (splitCodecs.length === 2) {
- return {
- vcodec: splitCodecs[0],
- acodec: splitCodecs[1]
- };
- }
- } else {
- return {
- vcodec: vcodec,
- acodec: acodec
- };
- }
- return {};
- }
- request = async (method, url, data = null, headers = {}) => {
- return new Promise(function (resolve, reject) {
- const xhr = new XMLHttpRequest();
- xhr.open(method, url);
- // 设置请求头
- Object.keys(headers).forEach(function (key) {
- xhr.setRequestHeader(key, headers[key]);
- });
- xhr.onload = function () {
- if (xhr.status >= 200 && xhr.status < 300) {
- resolve(xhr.responseText);
- } else {
- reject(new Error('Request failed with status: ' + xhr.status));
- }
- };
- xhr.onerror = function () {
- reject(new Error('Request failed'));
- };
- xhr.send(data);
- });
- }
- getStringBetween = (string, needleStart, needleEnd, offsetStart = 0, offsetEnd = 0) => {
- const x = string.indexOf(needleStart);
- const y = needleEnd ? string.indexOf(needleEnd, x) : string.length;
- return string.substring(x + needleStart.length + offsetEnd, y + offsetStart);
- }
- getUrlFromSignature = (signatureCipher, baseContent) => {
- const decipher = getDecipherFunction(baseContent);
- const searchParams = new URLSearchParams(signatureCipher);
- const [url, signature, sp] = [searchParams.get("url"), searchParams.get("s"), searchParams.get("sp")];
- console.log(signatureCipher, url, signature, sp);
- return `${url}&${sp}=${decipher(signature)}`;
- }
- getDecipherFunction = (string) => {
- const js = string.replace("var _yt_player={}", "");
- const top = getStringBetween(js, `a=a.split("")`, "};", 1, -28);
- const beginningOfFunction =
- "var " + getStringBetween(top, `a=a.split("")`, "(", 10, 1).split(".")[0] + "=";
- const side = getStringBetween(js, beginningOfFunction, "};", 2, -beginningOfFunction.length);
- console.log(side + top);
- return eval(side + top);
- };
- detail = async (url, local) => {
- const headers = {
- 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36',
- }
- if (local) {
- url = url.replace("https://www.youtube.com", "http://127.0.0.1");
- }
- const html = await request('GET', url, null, headers);
- let baseJsUrl = `https://www.youtube.com${JSON.parse(html.match(/set\(({.+?})\);/)[1])["PLAYER_JS_URL"]}`
- if (local) {
- baseJsUrl = baseJsUrl.replace("https://www.youtube.com", "http://127.0.0.1");
- }
- console.log(baseJsUrl);
- const baseContent = await request('GET', baseJsUrl, null, headers);
- let regex = /var ytInitialPlayerResponse\s*=\s*({.*?});/;
- let match = html.match(regex);
- if (!match || !match.length) {
- throw new Error('JSON not found.');
- }
- const ytInitialPlayerResponse = JSON.parse(match[1]);
- console.log(ytInitialPlayerResponse);
- const originVideoDetails = ytInitialPlayerResponse["videoDetails"];
- const thumbnails = []
- for (const item of originVideoDetails["thumbnail"]["thumbnails"]) {
- thumbnails.push({
- "url": item["url"],
- "width": item["width"] + "",
- "height": item["height"] + ""
- })
- }
- const formats = []
- for (let format of [].concat(ytInitialPlayerResponse["streamingData"]["formats"]).concat(ytInitialPlayerResponse["streamingData"]["adaptiveFormats"])) {
- console.log(format);
- if (!format["url"]) {
- format["url"] = getUrlFromSignature(format["signatureCipher"], baseContent);
- }
- if (format["url"]) {
- const {vcodec, acodec} = parseCodecs(format)
- if (vcodec && acodec) {
- formats.push({
- "width": format["width"] + "",
- "height": format["height"] + "",
- "type": format["mimeType"],
- "quality": format["quality"],
- "itag": format["itag"],
- "fps": format["fps"] + "",
- "bitrate": format["bitrate"] + "",
- "url": format["url"],
- "ext": "mp4",
- "vcodec": vcodec,
- "acodec": acodec,
- "vbr": "0",
- "abr": "0",
- "container": "mp4_dash"
- })
- }
- }
- }
- regex = /var ytInitialData\s*=\s*({.*?});/;
- match = html.match(regex);
- if (!match || !match.length) {
- throw new Error('JSON not found.');
- }
- if (!match || !match.length) {
- throw new Error('JSON not found.');
- }
- const ytInitialData = JSON.parse(match[1]);
- console.log(ytInitialData);
- const recommendInfo = [];
- for (const item of ytInitialData["contents"]["twoColumnWatchNextResults"]["secondaryResults"]["secondaryResults"]["results"]) {
- if (item["compactVideoRenderer"]) {
- const recommendVideo = item["compactVideoRenderer"];
- console.log(recommendVideo);
- if (recommendVideo["videoId"]) {
- recommendInfo.push({
- "type": "gridVideoRenderer",
- "videoId": recommendVideo["videoId"],
- "title": recommendVideo["title"]?.["simpleText"],
- "thumbnails": recommendVideo["thumbnail"]?.["thumbnails"],
- "channelName": recommendVideo["longBylineText"]?.["runs"]?.[0]?.["text"],
- "publishedTimeText": recommendVideo["publishedTimeText"]?.["simpleText"],
- "viewCountText": recommendVideo["viewCountText"]?.["simpleText"],
- "shortViewCountText": recommendVideo["shortViewCountText"]?.["simpleText"],
- "lengthText": recommendVideo["lengthText"]?.["simpleText"]
- })
- }
- }
- }
- const videoDetails = {
- "isLiveContent": originVideoDetails["isLiveContent"],
- "title": originVideoDetails["title"],
- "thumbnails": thumbnails,
- "description": originVideoDetails["shortDescription"],
- "lengthSeconds": originVideoDetails["lengthSeconds"],
- "viewCount": originVideoDetails["viewCount"],
- "keywords": originVideoDetails["keywords"],
- "author": originVideoDetails["author"],
- "channelID": originVideoDetails["channelId"],
- "recommendInfo": recommendInfo,
- "channelURL": `https://www.youtube.com/channel/${originVideoDetails["channelId"]}`,
- "videoId": originVideoDetails["videoId"]
- }
- return {
- "code": 200,
- "msg": "",
- "data": {
- "videoDetails": videoDetails,
- "streamingData": {
- "formats": formats
- }
- },
- "id": "MusicDetailViewModel_detail_url"
- }
- }
|