youtubev2.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. parseCodecs = (format) => {
  2. const mimeType = format['mimeType']
  3. if (!mimeType) {
  4. return {};
  5. }
  6. const regex = /(?<mimetype>[^/]+\/[^;]+)(?:;\s*codecs="?(?<codecs>[^"]+))?/;
  7. const match = mimeType.match(regex);
  8. if (!match) {
  9. return {};
  10. }
  11. const codecs = match.groups.codecs;
  12. if (!codecs) {
  13. return {};
  14. }
  15. const splitCodecs = codecs.trim().replace(/,$/, '').split(',').map(str => str.trim()).filter(Boolean);
  16. let vcodec = null;
  17. let acodec = null;
  18. for (const fullCodec of splitCodecs) {
  19. const codec = fullCodec.split('.')[0];
  20. if (['avc1', 'avc2', 'avc3', 'avc4', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01', 'theora'].includes(codec)) {
  21. if (!vcodec) {
  22. vcodec = fullCodec;
  23. }
  24. } else if (['mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'].includes(codec)) {
  25. if (!acodec) {
  26. acodec = fullCodec;
  27. }
  28. } else {
  29. console.log(`WARNING: Unknown codec ${fullCodec}`);
  30. }
  31. }
  32. if (!vcodec && !acodec) {
  33. if (splitCodecs.length === 2) {
  34. return {
  35. vcodec: splitCodecs[0], acodec: splitCodecs[1]
  36. };
  37. }
  38. } else {
  39. return {
  40. vcodec: vcodec, acodec: acodec
  41. };
  42. }
  43. return {};
  44. }
  45. parseSetCookie = (headers) => {
  46. if (!headers) {
  47. return ""
  48. }
  49. const setCookie = headers['Set-Cookie']
  50. if (!setCookie) {
  51. return ""
  52. }
  53. console.log(`setCookie: ${setCookie}`)
  54. let result = 'PREF=hl=en&tz=UTC; SOCS=CAI; GPS=1; ';
  55. const needCookieNames = ['YSC', 'VISITOR_INFO1_LIVE', 'VISITOR_PRIVACY_METADATA'];
  56. for (const i in needCookieNames) {
  57. const cookieName = needCookieNames[i];
  58. const regexp = new RegExp(`${cookieName}=([^;,]+)`)
  59. const match = setCookie.match(regexp)
  60. if (match && match.length === 2) {
  61. const cookieValue = match[1]
  62. if (i !== needCookieNames.length - 1) {
  63. result += `${cookieName}=${cookieValue}; `
  64. } else {
  65. result += `${cookieName}=${cookieValue}`
  66. }
  67. }
  68. }
  69. console.log(`current cookie: ${result}`)
  70. return result;
  71. }
  72. request = async (method, url, data = null, headers = {}, requestId, platform) => {
  73. if (platform === "WEB") {
  74. url = url.replace("https://www.youtube.com/", "http://16.162.32.168:80/");
  75. url = url.replace("https://music.youtube.com/", "http://16.162.32.168:80/");
  76. }
  77. console.log(`request url:${url}`)
  78. console.log(`request data:${data}`)
  79. console.log(`request method:${method}`)
  80. console.log(`request headers:${JSON.stringify((headers))}`)
  81. if (platform === "WEB") {
  82. const res = await fetch(url, {
  83. 'mode': 'cors', 'method': method, 'headers': headers, 'body': data
  84. })
  85. const resData = await res.text()
  86. return Promise.resolve({
  87. 'data': resData, 'headers': res.headers
  88. });
  89. }
  90. return new Promise((resolve, reject) => {
  91. AF.request(url, method, data, headers, requestId, (data, headers, err) => {
  92. if (err) {
  93. reject(err);
  94. } else {
  95. console.log(`response headers: ${headers}`);
  96. resolve({
  97. 'data': data, 'headers': JSON.parse(headers)
  98. });
  99. }
  100. });
  101. })
  102. }
  103. detail = async (url, requestId, platform) => {
  104. try {
  105. // fetch recommend
  106. const recommendInfo = [];
  107. const htmlResp = await request('GET', `${url}&bpctr=9999999999&has_verified=1`, null, {
  108. 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',
  109. 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  110. 'Accept-Language': 'en-us,en;q=0.5',
  111. 'Sec-Fetch-Mode': 'navigate',
  112. 'Accept-Encoding': 'gzip, deflate, br',
  113. 'Cookie': 'PREF=hl=en&tz=UTC; SOCS=CAI'
  114. }, requestId, platform);
  115. let {data: html, headers: htmlHeaders} = htmlResp;
  116. let regex = /var ytInitialPlayerResponse\s*=\s*({.*?});/;
  117. let match = html.match(regex);
  118. if (match) {
  119. const ytInitialPlayerResponse = JSON.parse(match[1]);
  120. console.log(ytInitialPlayerResponse);
  121. const originVideoDetails = ytInitialPlayerResponse['videoDetails'];
  122. const ytInitialDataMatch = html.match(/var ytInitialData\s*=\s*({.*?});/);
  123. if (ytInitialDataMatch && ytInitialDataMatch.length === 2) {
  124. const ytInitialData = JSON.parse(ytInitialDataMatch[1]);
  125. console.log(ytInitialData);
  126. for (const item of ytInitialData["contents"]?.["twoColumnWatchNextResults"]?.["secondaryResults"]?.["secondaryResults"]?.["results"] || []) {
  127. if (item["compactVideoRenderer"]) {
  128. const recommendVideo = item["compactVideoRenderer"];
  129. console.log(`recommend video: ${JSON.stringify(recommendVideo)}`);
  130. if (recommendVideo["videoId"]) {
  131. recommendInfo.push({
  132. "type": "gridVideoRenderer",
  133. "videoId": recommendVideo["videoId"],
  134. "title": recommendVideo["title"]?.["simpleText"],
  135. "thumbnails": recommendVideo["thumbnail"]?.["thumbnails"],
  136. "channelName": recommendVideo["longBylineText"]?.["runs"]?.[0]?.["text"],
  137. "publishedTimeText": recommendVideo["publishedTimeText"]?.["simpleText"],
  138. "viewCountText": recommendVideo["viewCountText"]?.["simpleText"],
  139. "shortViewCountText": recommendVideo["shortViewCountText"]?.["simpleText"],
  140. "lengthText": recommendVideo["lengthText"]?.["simpleText"]
  141. })
  142. }
  143. }
  144. }
  145. }
  146. }
  147. let thumbnails = [];
  148. let originFormats = [];
  149. let originVideoDetails = undefined;
  150. // android
  151. try {
  152. const apiUrl = `https://www.youtube.com/youtubei/v1/player`;
  153. const apiResp = await request('POST', apiUrl, JSON.stringify({
  154. "context": {
  155. "client": {
  156. "clientVersion": "19.29.37",
  157. "androidSdkVersion": 30,
  158. "clientName": "ANDROID",
  159. "osName": "android",
  160. "osVersion": "11",
  161. "userAgent": "com.google.android.youtube/19.29.37 (Linux; U; Android 11) gzip"
  162. }
  163. },
  164. "videoId": url.replace('https://www.youtube.com/watch?v=', ''),
  165. "playbackContext": {
  166. "contentPlaybackContext": {
  167. "html5Preference": "HTML5_PREF_WANTS"
  168. }
  169. },
  170. "params": "2AMB"
  171. }), {
  172. 'Origin': "https://www.youtube.com",
  173. 'X-YouTube-Client-Version': '19.29.37',
  174. 'User-Agent': 'com.google.android.youtube/19.29.37 (Linux; U; Android 11) gzip',
  175. 'Content-Type': 'application/json'
  176. }, requestId, platform);
  177. let {data: apiData, _} = apiResp;
  178. console.log(`android api result: ${JSON.stringify(apiResp)}`);
  179. const res = JSON.parse(apiData);
  180. const currentFormats = [];
  181. originVideoDetails = res["videoDetails"];
  182. for (const format of [].concat(res["streamingData"]["formats"] || []).concat(res["streamingData"]["adaptiveFormats"] || [])) {
  183. if (format) {
  184. format["from"] = "android"
  185. currentFormats.push(format);
  186. }
  187. }
  188. originFormats = originFormats.concat(currentFormats);
  189. } catch (e) {
  190. console.log(`can not found format android api error: ${e}`);
  191. const ret = {
  192. "code": -1, "msg": e.toString()
  193. }
  194. console.log(`detail2 result error: ${JSON.stringify(ret)}`);
  195. return ret;
  196. }
  197. console.log(`after android api, format size:${originFormats.length}`);
  198. // fallback
  199. let fallbackFormats = []
  200. try {
  201. const apiUrl = `https://www.youtube.com/youtubei/v1/player`;
  202. const apiResp = await request('POST', apiUrl, JSON.stringify({
  203. "contentCheckOk": true,
  204. "context": {
  205. "client": {
  206. "clientName": "IOS",
  207. "clientVersion": "19.29.1",
  208. "deviceMake": "Apple",
  209. "deviceModel": "iPhone16,2",
  210. "hl": "en",
  211. "osName": "iPhone",
  212. "osVersion": "17.5.1.21F90",
  213. "timeZone": "UTC",
  214. "userAgent": "com.google.ios.youtube/19.29.1 (iPhone16,2; U; CPU iOS 17_5_1 like Mac OS X;)",
  215. "gl": "US",
  216. "utcOffsetMinutes": 0
  217. }
  218. },
  219. "videoId": url.replace('https://www.youtube.com/watch?v=', '')
  220. }), {
  221. 'User-Agent': 'com.google.ios.youtube/19.29.1 (iPhone16,2; U; CPU iOS 17_5_1 like Mac OS X;)',
  222. 'Content-Type': 'application/json'
  223. }, requestId, platform);
  224. let {data: apiData, _} = apiResp;
  225. console.log(`android api result: ${JSON.stringify(apiResp)}`);
  226. const res = JSON.parse(apiData);
  227. const currentFormats = [];
  228. for (const format of [].concat(res["streamingData"]["formats"] || []).concat(res["streamingData"]["adaptiveFormats"] || [])) {
  229. if (format) {
  230. format["from"] = "android"
  231. currentFormats.push(format);
  232. }
  233. }
  234. fallbackFormats = fallbackFormats.concat(currentFormats);
  235. } catch (e) {
  236. console.log(`can not found format android fallback api error: ${e}`);
  237. const ret = {
  238. "code": -1, "msg": e.toString()
  239. }
  240. console.log(`detail2 fallback result error: ${JSON.stringify(ret)}`);
  241. return ret;
  242. }
  243. let audioUrl = ""
  244. for (let format of fallbackFormats) {
  245. if (format["url"]) {
  246. const {vcodec, acodec} = parseCodecs(format)
  247. if (!vcodec && acodec) {
  248. audioUrl = format["url"]
  249. break
  250. }
  251. }
  252. }
  253. const formats = [];
  254. const qualities = [];
  255. for (let format of originFormats) {
  256. console.log(format);
  257. if (format["height"] && parseInt(format["height"]) >= 720) {
  258. continue
  259. }
  260. if (format && qualities.indexOf(format['qualityLabel']) === -1) {
  261. if (format["url"]) {
  262. const {vcodec, acodec} = parseCodecs(format)
  263. if (vcodec && acodec) {
  264. const current = {
  265. "width": format["width"] + "",
  266. "height": format["height"] + "",
  267. "type": format["mimeType"],
  268. "quality": format["qualityLabel"],
  269. "itag": format["itag"],
  270. "fps": format["fps"] + "",
  271. "bitrate": format["bitrate"] + "",
  272. "ext": "mp4",
  273. "vcodec": vcodec,
  274. "acodec": acodec,
  275. "vbr": "0",
  276. "abr": "0",
  277. "container": "mp4_dash",
  278. "from": format["from"],
  279. "url": format["url"],
  280. "videoUrl": "",
  281. "audioUrl": "",
  282. // "videoUrl": format["url"],
  283. // "audioUrl": audioUrl
  284. }
  285. if (platform === "WEB") {
  286. current["source"] = format
  287. }
  288. formats.push(current)
  289. qualities.push(format["qualityLabel"]);
  290. } else if (vcodec && !acodec) {
  291. const current = {
  292. "width": format["width"] + "",
  293. "height": format["height"] + "",
  294. "type": format["mimeType"],
  295. "quality": format["qualityLabel"],
  296. "itag": format["itag"],
  297. "fps": format["fps"] + "",
  298. "bitrate": format["bitrate"] + "",
  299. "ext": "mp4",
  300. "vcodec": vcodec,
  301. "acodec": acodec,
  302. "vbr": "0",
  303. "abr": "0",
  304. "container": "mp4_dash",
  305. "from": format["from"],
  306. "url": "",
  307. "videoUrl": format["url"],
  308. "audioUrl": audioUrl
  309. }
  310. if (platform === "WEB") {
  311. current["source"] = format
  312. }
  313. formats.push(current)
  314. qualities.push(format["qualityLabel"]);
  315. }
  316. }
  317. }
  318. }
  319. for (const item of originVideoDetails['thumbnail']['thumbnails']) {
  320. thumbnails.push({
  321. 'url': item['url'], 'width': item['width'] + "", 'height': item['height'] + ""
  322. })
  323. }
  324. formats.sort((a, b) => parseInt(a["height"]) - parseInt(b["height"]));
  325. const videoDetails = {
  326. "isLiveContent": originVideoDetails["isLiveContent"],
  327. "title": originVideoDetails["title"],
  328. "thumbnails": thumbnails,
  329. "description": originVideoDetails["shortDescription"],
  330. "lengthSeconds": originVideoDetails["lengthSeconds"],
  331. "viewCount": originVideoDetails["viewCount"],
  332. "keywords": originVideoDetails["keywords"],
  333. "author": originVideoDetails["author"],
  334. "channelID": originVideoDetails["channelId"],
  335. "recommendInfo": recommendInfo,
  336. "channelURL": `https://www.youtube.com/channel/${originVideoDetails["channelId"]}`,
  337. "videoId": url.replace('https://www.youtube.com/watch?v=', '')
  338. }
  339. const ret = {
  340. "code": 200, "msg": "", "requestId": requestId, "data": {
  341. "videoDetails": videoDetails, "streamingData": {
  342. "formats": formats
  343. }
  344. }, "id": "MusicDetailViewModel_detail_url"
  345. }
  346. console.log(`detail result: ${JSON.stringify(ret)}`);
  347. return ret;
  348. } catch (e) {
  349. const ret = {
  350. "code": -1, "msg": e.toString(), "requestId": requestId,
  351. }
  352. console.log(`detail2 result error: ${JSON.stringify(ret)}`);
  353. console.log(e);
  354. return ret;
  355. }
  356. }
  357. search = async (keyword, next, requestId, platform) => {
  358. try {
  359. console.log(`search keyword: ${keyword}`);
  360. console.log(`search next: ${next}`);
  361. if (next) {
  362. const nextObject = JSON.parse(next);
  363. const key = nextObject["key"];
  364. const body = {
  365. context: {
  366. client: {
  367. clientName: "WEB", clientVersion: "2.20240506.01.00",
  368. },
  369. }, continuation: nextObject["continuation"]
  370. };
  371. let res = await request('POST', `https://www.youtube.com/youtubei/v1/search?key=${key}`, JSON.stringify(body), {}, requestId, platform);
  372. const {data, _} = res;
  373. res = JSON.parse(data);
  374. const videos = [];
  375. for (const item of res["onResponseReceivedCommands"][0]["appendContinuationItemsAction"]["continuationItems"][0]["itemSectionRenderer"]["contents"]) {
  376. const video = item["videoRenderer"];
  377. console.log(video);
  378. if (video && video["videoId"] && video["lengthText"]) {
  379. videos.push({
  380. "type": "videoWithContextRenderer", "data": {
  381. "videoId": video["videoId"],
  382. "title": video["title"]?.["runs"]?.[0]?.["text"],
  383. "thumbnails": video["thumbnail"]?.["thumbnails"],
  384. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  385. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  386. "viewCountText": video["viewCountText"]?.["simpleText"],
  387. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  388. "lengthText": video["lengthText"]?.["simpleText"]
  389. }
  390. });
  391. }
  392. }
  393. const ret = {
  394. "code": 200, "msg": "", "requestId": requestId, "data": {
  395. "data": videos, "next": JSON.stringify({
  396. "key": nextObject["key"],
  397. "continuation": res["onResponseReceivedCommands"]?.[0]?.["appendContinuationItemsAction"]?.["continuationItems"]?.[1]?.["continuationItemRenderer"]?.["continuationEndpoint"]?.["continuationCommand"]?.["token"],
  398. }),
  399. }, "id": "MusicSearchResultViewModel_search_result"
  400. }
  401. console.log(`[next] search result: ${JSON.stringify(ret)}`);
  402. return ret;
  403. } else {
  404. let url = `https://www.youtube.com/results?q=${encodeURIComponent(keyword)}&sp=EgIQAQ%253D%253D`;
  405. const htmlRes = await request('GET', url, null, {}, requestId, platform);
  406. const {data: html, _} = htmlRes;
  407. let regex = /var ytInitialData\s*=\s*({.*?});/;
  408. let match = html.match(regex);
  409. if (!match || !match.length) {
  410. console.log("can not found ytInitialData");
  411. throw new Error('JSON not found: ytInitialData');
  412. }
  413. const ytInitialDataResp = JSON.parse(match[1]);
  414. console.log(ytInitialDataResp);
  415. const videos = [];
  416. const contents = ytInitialDataResp["contents"]?.["twoColumnSearchResultsRenderer"]?.["primaryContents"]?.["sectionListRenderer"]?.["contents"] || []
  417. for (const content of contents) {
  418. const currentContents = content["itemSectionRenderer"]?.["contents"]
  419. if (Array.isArray(currentContents)) {
  420. for (const currentContent of currentContents) {
  421. if (currentContent["videoRenderer"]) {
  422. const video = currentContent["videoRenderer"];
  423. console.log(video);
  424. if (video && video["videoId"] && video["lengthText"]) {
  425. videos.push({
  426. "type": "videoWithContextRenderer", "data": {
  427. "videoId": video["videoId"],
  428. "title": video["title"]?.["runs"]?.[0]?.["text"],
  429. "thumbnails": video["thumbnail"]?.["thumbnails"],
  430. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  431. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  432. "viewCountText": video["viewCountText"]?.["simpleText"],
  433. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  434. "lengthText": video["lengthText"]?.["simpleText"]
  435. }
  436. });
  437. }
  438. }
  439. }
  440. }
  441. }
  442. let next = {};
  443. if (html.split("innertubeApiKey").length > 0) {
  444. next["key"] = html
  445. .split("innertubeApiKey")[1]
  446. .trim()
  447. .split(",")[0]
  448. .split('"')[2];
  449. }
  450. next["continuation"] = contents[contents.length - 1]?.["continuationItemRenderer"]?.["continuationEndpoint"]?.["continuationCommand"]?.["token"]
  451. const ret = {
  452. "code": 200, "msg": "", "requestId": requestId, "data": {
  453. "data": videos, "next": JSON.stringify(next),
  454. }, "id": "MusicSearchResultViewModel_search_result"
  455. }
  456. console.log(`unnext search result: ${JSON.stringify(ret)}`);
  457. return ret;
  458. }
  459. } catch (e) {
  460. const ret = {
  461. "code": -1, "msg": e.toString(), "requestId": requestId,
  462. }
  463. console.log(`search result error: ${JSON.stringify(ret)}`);
  464. return ret;
  465. }
  466. }
  467. recommend = async (requestId, platform) => {
  468. try {
  469. const body = {
  470. "context": {
  471. "client": {
  472. "clientName": "WEB", "clientVersion": "2.20240304.00.00"
  473. }
  474. }, "browseId": "VLPL4fGSI1pDJn69On1f-8NAvX_CYlx7QyZc"
  475. }
  476. let res = await request('POST', `https://www.youtube.com/youtubei/v1/browse?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8`, JSON.stringify(body), {}, requestId, platform);
  477. const {data, _} = res;
  478. res = JSON.parse(data);
  479. const videos = [];
  480. for (const item of res["contents"]["twoColumnBrowseResultsRenderer"]["tabs"][0]["tabRenderer"]["content"]["sectionListRenderer"]["contents"][0]["itemSectionRenderer"]["contents"]["0"]["playlistVideoListRenderer"]["contents"]) {
  481. const video = item["playlistVideoRenderer"];
  482. console.log(video);
  483. if (video && video["videoId"] && video["lengthText"]) {
  484. videos.push({
  485. "type": "videoWithContextRenderer", "data": {
  486. "videoId": video["videoId"],
  487. "title": video["title"]?.["runs"]?.[0]?.["text"],
  488. "thumbnails": video["thumbnail"]?.["thumbnails"],
  489. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  490. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  491. "viewCountText": video["viewCountText"]?.["simpleText"],
  492. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  493. "lengthText": video["lengthText"]?.["simpleText"]
  494. }
  495. });
  496. }
  497. }
  498. const ret = {
  499. "code": 200, "msg": "", "requestId": requestId, "data": {
  500. "data": videos,
  501. }, "id": "MusicRecommendResultViewModel_recommend_result"
  502. }
  503. console.log(`recommend result: ${JSON.stringify(ret)}`);
  504. return ret;
  505. } catch (e) {
  506. const ret = {
  507. "code": -1, "msg": e.toString(), "requestId": requestId,
  508. }
  509. console.log(`recommend result error: ${JSON.stringify(ret)}`);
  510. return ret;
  511. }
  512. }