youtubev2.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  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. "hl": "en",
  157. "osName": "iPhone",
  158. "osVersion": "17.5.1.21F90",
  159. "timeZone": "UTC",
  160. "userAgent": "com.google.ios.youtube/19.29.1 (iPhone16,2; U; CPU iOS 17_5_1 like Mac OS X;)",
  161. "gl": "US",
  162. "utcOffsetMinutes": 0
  163. }
  164. },
  165. "videoId": url.replace('https://www.youtube.com/watch?v=', '')
  166. }), {
  167. 'Host': 'www.youtube.com',
  168. 'Connection': 'keep-alive',
  169. 'User-Agent': 'com.google.ios.youtube/19.29.1 (iPhone16,2; U; CPU iOS 17_5_1 like Mac OS X;)',
  170. 'Accept-Language': 'en-US,en',
  171. 'Cookie': parseSetCookie(htmlHeaders),
  172. 'Content-Type': 'application/json',
  173. 'X-YouTube-Client-Version': '19.29.1'
  174. }, requestId, platform);
  175. let {data: apiData, _} = apiResp;
  176. console.log(`android api result: ${JSON.stringify(apiResp)}`);
  177. const res = JSON.parse(apiData);
  178. const currentFormats = [];
  179. originVideoDetails = res["videoDetails"];
  180. for (const format of [].concat(res["streamingData"]["formats"] || []).concat(res["streamingData"]["adaptiveFormats"] || [])) {
  181. if (format) {
  182. format["from"] = "android"
  183. currentFormats.push(format);
  184. }
  185. }
  186. originFormats = originFormats.concat(currentFormats);
  187. } catch (e) {
  188. console.log(`can not found format android api error: ${e}`);
  189. const ret = {
  190. "code": -1, "msg": e.toString()
  191. }
  192. console.log(`detail2 result error: ${JSON.stringify(ret)}`);
  193. return ret;
  194. }
  195. console.log(`after android api, format size:${originFormats.length}`);
  196. let audioUrl = ""
  197. for (let format of originFormats) {
  198. if (format["url"]) {
  199. const {vcodec, acodec} = parseCodecs(format)
  200. if (!vcodec && acodec) {
  201. audioUrl = format["url"]
  202. break
  203. }
  204. }
  205. }
  206. const formats = [];
  207. const qualities = [];
  208. for (let format of originFormats) {
  209. console.log(format);
  210. if (format["height"] && parseInt(format["height"]) >= 720) {
  211. continue
  212. }
  213. if (format && qualities.indexOf(format['qualityLabel']) === -1) {
  214. if (format["url"]) {
  215. const {vcodec, acodec} = parseCodecs(format)
  216. if (vcodec && acodec) {
  217. const current = {
  218. "width": format["width"] + "",
  219. "height": format["height"] + "",
  220. "type": format["mimeType"],
  221. "quality": format["qualityLabel"],
  222. "itag": format["itag"],
  223. "fps": format["fps"] + "",
  224. "bitrate": format["bitrate"] + "",
  225. "ext": "mp4",
  226. "vcodec": vcodec,
  227. "acodec": acodec,
  228. "vbr": "0",
  229. "abr": "0",
  230. "container": "mp4_dash",
  231. "from": format["from"],
  232. "url": format["url"],
  233. "videoUrl": "",
  234. "audioUrl": "",
  235. // "videoUrl": format["url"],
  236. // "audioUrl": audioUrl
  237. }
  238. if (platform === "WEB") {
  239. current["source"] = format
  240. }
  241. formats.push(current)
  242. qualities.push(format["qualityLabel"]);
  243. } else if (vcodec && !acodec) {
  244. const current = {
  245. "width": format["width"] + "",
  246. "height": format["height"] + "",
  247. "type": format["mimeType"],
  248. "quality": format["qualityLabel"],
  249. "itag": format["itag"],
  250. "fps": format["fps"] + "",
  251. "bitrate": format["bitrate"] + "",
  252. "ext": "mp4",
  253. "vcodec": vcodec,
  254. "acodec": acodec,
  255. "vbr": "0",
  256. "abr": "0",
  257. "container": "mp4_dash",
  258. "from": format["from"],
  259. "url": "",
  260. "videoUrl": format["url"],
  261. "audioUrl": audioUrl
  262. }
  263. if (platform === "WEB") {
  264. current["source"] = format
  265. }
  266. formats.push(current)
  267. qualities.push(format["qualityLabel"]);
  268. }
  269. }
  270. }
  271. }
  272. for (const item of originVideoDetails['thumbnail']['thumbnails']) {
  273. thumbnails.push({
  274. 'url': item['url'], 'width': item['width'] + "", 'height': item['height'] + ""
  275. })
  276. }
  277. formats.sort((a, b) => parseInt(a["height"]) - parseInt(b["height"]));
  278. const videoDetails = {
  279. "isLiveContent": originVideoDetails["isLiveContent"],
  280. "title": originVideoDetails["title"],
  281. "thumbnails": thumbnails,
  282. "description": originVideoDetails["shortDescription"],
  283. "lengthSeconds": originVideoDetails["lengthSeconds"],
  284. "viewCount": originVideoDetails["viewCount"],
  285. "keywords": originVideoDetails["keywords"],
  286. "author": originVideoDetails["author"],
  287. "channelID": originVideoDetails["channelId"],
  288. "recommendInfo": recommendInfo,
  289. "channelURL": `https://www.youtube.com/channel/${originVideoDetails["channelId"]}`,
  290. "videoId": originVideoDetails["videoId"]
  291. }
  292. const ret = {
  293. "code": 200, "msg": "", "requestId": requestId, "data": {
  294. "videoDetails": videoDetails, "streamingData": {
  295. "formats": formats
  296. }
  297. }, "id": "MusicDetailViewModel_detail_url"
  298. }
  299. console.log(`detail result: ${JSON.stringify(ret)}`);
  300. return ret;
  301. } catch (e) {
  302. const ret = {
  303. "code": -1, "msg": e.toString(), "requestId": requestId,
  304. }
  305. console.log(`detail2 result error: ${JSON.stringify(ret)}`);
  306. console.log(e);
  307. return ret;
  308. }
  309. }
  310. search = async (keyword, next, requestId, platform) => {
  311. try {
  312. console.log(`search keyword: ${keyword}`);
  313. console.log(`search next: ${next}`);
  314. if (next) {
  315. const nextObject = JSON.parse(next);
  316. const key = nextObject["key"];
  317. const body = {
  318. context: {
  319. client: {
  320. clientName: "WEB", clientVersion: "2.20240506.01.00",
  321. },
  322. }, continuation: nextObject["continuation"]
  323. };
  324. let res = await request('POST', `https://www.youtube.com/youtubei/v1/search?key=${key}`, JSON.stringify(body), {}, requestId, platform);
  325. const {data, _} = res;
  326. res = JSON.parse(data);
  327. const videos = [];
  328. for (const item of res["onResponseReceivedCommands"][0]["appendContinuationItemsAction"]["continuationItems"][0]["itemSectionRenderer"]["contents"]) {
  329. const video = item["videoRenderer"];
  330. console.log(video);
  331. if (video && video["videoId"] && video["lengthText"]) {
  332. videos.push({
  333. "type": "videoWithContextRenderer", "data": {
  334. "videoId": video["videoId"],
  335. "title": video["title"]?.["runs"]?.[0]?.["text"],
  336. "thumbnails": video["thumbnail"]?.["thumbnails"],
  337. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  338. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  339. "viewCountText": video["viewCountText"]?.["simpleText"],
  340. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  341. "lengthText": video["lengthText"]?.["simpleText"]
  342. }
  343. });
  344. }
  345. }
  346. const ret = {
  347. "code": 200, "msg": "", "requestId": requestId, "data": {
  348. "data": videos, "next": JSON.stringify({
  349. "key": nextObject["key"],
  350. "continuation": res["onResponseReceivedCommands"]?.[0]?.["appendContinuationItemsAction"]?.["continuationItems"]?.[1]?.["continuationItemRenderer"]?.["continuationEndpoint"]?.["continuationCommand"]?.["token"],
  351. }),
  352. }, "id": "MusicSearchResultViewModel_search_result"
  353. }
  354. console.log(`[next] search result: ${JSON.stringify(ret)}`);
  355. return ret;
  356. } else {
  357. let url = `https://www.youtube.com/results?q=${encodeURIComponent(keyword)}&sp=EgIQAQ%253D%253D`;
  358. const htmlRes = await request('GET', url, null, {}, requestId, platform);
  359. const {data: html, _} = htmlRes;
  360. let regex = /var ytInitialData\s*=\s*({.*?});/;
  361. let match = html.match(regex);
  362. if (!match || !match.length) {
  363. console.log("can not found ytInitialData");
  364. throw new Error('JSON not found: ytInitialData');
  365. }
  366. const ytInitialDataResp = JSON.parse(match[1]);
  367. console.log(ytInitialDataResp);
  368. const videos = [];
  369. const contents = ytInitialDataResp["contents"]?.["twoColumnSearchResultsRenderer"]?.["primaryContents"]?.["sectionListRenderer"]?.["contents"] || []
  370. for (const content of contents) {
  371. const currentContents = content["itemSectionRenderer"]?.["contents"]
  372. if (Array.isArray(currentContents)) {
  373. for (const currentContent of currentContents) {
  374. if (currentContent["videoRenderer"]) {
  375. const video = currentContent["videoRenderer"];
  376. console.log(video);
  377. if (video && video["videoId"] && video["lengthText"]) {
  378. videos.push({
  379. "type": "videoWithContextRenderer", "data": {
  380. "videoId": video["videoId"],
  381. "title": video["title"]?.["runs"]?.[0]?.["text"],
  382. "thumbnails": video["thumbnail"]?.["thumbnails"],
  383. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  384. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  385. "viewCountText": video["viewCountText"]?.["simpleText"],
  386. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  387. "lengthText": video["lengthText"]?.["simpleText"]
  388. }
  389. });
  390. }
  391. }
  392. }
  393. }
  394. }
  395. let next = {};
  396. if (html.split("innertubeApiKey").length > 0) {
  397. next["key"] = html
  398. .split("innertubeApiKey")[1]
  399. .trim()
  400. .split(",")[0]
  401. .split('"')[2];
  402. }
  403. next["continuation"] = contents[contents.length - 1]?.["continuationItemRenderer"]?.["continuationEndpoint"]?.["continuationCommand"]?.["token"]
  404. const ret = {
  405. "code": 200, "msg": "", "requestId": requestId, "data": {
  406. "data": videos, "next": JSON.stringify(next),
  407. }, "id": "MusicSearchResultViewModel_search_result"
  408. }
  409. console.log(`unnext search result: ${JSON.stringify(ret)}`);
  410. return ret;
  411. }
  412. } catch (e) {
  413. const ret = {
  414. "code": -1, "msg": e.toString(), "requestId": requestId,
  415. }
  416. console.log(`search result error: ${JSON.stringify(ret)}`);
  417. return ret;
  418. }
  419. }
  420. recommend = async (requestId, platform) => {
  421. try {
  422. const body = {
  423. "context": {
  424. "client": {
  425. "clientName": "WEB", "clientVersion": "2.20240304.00.00"
  426. }
  427. }, "browseId": "VLPL4fGSI1pDJn69On1f-8NAvX_CYlx7QyZc"
  428. }
  429. let res = await request('POST', `https://www.youtube.com/youtubei/v1/browse?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8`, JSON.stringify(body), {}, requestId, platform);
  430. const {data, _} = res;
  431. res = JSON.parse(data);
  432. const videos = [];
  433. for (const item of res["contents"]["twoColumnBrowseResultsRenderer"]["tabs"][0]["tabRenderer"]["content"]["sectionListRenderer"]["contents"][0]["itemSectionRenderer"]["contents"]["0"]["playlistVideoListRenderer"]["contents"]) {
  434. const video = item["playlistVideoRenderer"];
  435. console.log(video);
  436. if (video && video["videoId"] && video["lengthText"]) {
  437. videos.push({
  438. "type": "videoWithContextRenderer", "data": {
  439. "videoId": video["videoId"],
  440. "title": video["title"]?.["runs"]?.[0]?.["text"],
  441. "thumbnails": video["thumbnail"]?.["thumbnails"],
  442. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  443. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  444. "viewCountText": video["viewCountText"]?.["simpleText"],
  445. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  446. "lengthText": video["lengthText"]?.["simpleText"]
  447. }
  448. });
  449. }
  450. }
  451. const ret = {
  452. "code": 200, "msg": "", "requestId": requestId, "data": {
  453. "data": videos,
  454. }, "id": "MusicRecommendResultViewModel_recommend_result"
  455. }
  456. console.log(`recommend result: ${JSON.stringify(ret)}`);
  457. return ret;
  458. } catch (e) {
  459. const ret = {
  460. "code": -1, "msg": e.toString(), "requestId": requestId,
  461. }
  462. console.log(`recommend result error: ${JSON.stringify(ret)}`);
  463. return ret;
  464. }
  465. }