youtubev2.js 21 KB

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