youtubev2.js 22 KB

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