A 站视频缓存 视频链接解析

谁不想在遇到好视频的时候能够缓存下来呢?

  1. // ==UserScript==
  2. // @name A 站视频缓存 视频链接解析
  3. // @namespace czzonet
  4. // @version 1.1.1
  5. // @description 谁不想在遇到好视频的时候能够缓存下来呢?
  6. // @author czzonet
  7. // @include *://www.acfun.cn/v/ac*
  8. // @include *://www.acfun.cn/bangumi/aa*
  9. // @exclude *://*.eggvod.cn/*
  10. // @connect www.acfun.cn
  11. // @license MIT License
  12. // @grant GM_download
  13. // @grant GM_openInTab
  14. // @grant GM_setValue
  15. // @grant GM_getValue
  16. // @grant GM_xmlhttpRequest
  17. // @grant GM_addStyle
  18. // @grant unsafeWindow
  19. // @grant GM_setClipboard
  20. // @grant GM_getResourceURL
  21. // @grant GM_getResourceText
  22. // ==/UserScript==
  23. // 等待页面加载完毕
  24. window.onload = function () {
  25. // 插入到标题
  26. let descriptionElement = document.getElementsByClassName("video-description clearfix")[0];
  27. // 创建一个按钮节点
  28. let oButNode = nodeButton("获取链接");
  29. oButNode.onclick = function () {
  30. const dataVideos = getlink();
  31. if (!dataVideos) {
  32. descriptionElement.appendChild(nodeText(`解析播放器数据源失败!`));
  33. }
  34. else {
  35. // descriptionElement.appendChild(nodeText(`视频共${dataVideos.length}P`));
  36. for (let i = 0; i < dataVideos.length; i++) {
  37. // descriptionElement.appendChild(nodeText(`---`));
  38. // descriptionElement.appendChild(nodeText(`第${i + 1}P`));
  39. const representation = dataVideos[i].representation;
  40. for (let j = 0; j < representation.length; j++) {
  41. const dataVideo = representation[j];
  42. const url = dataVideo.url;
  43. const qualityLabel = dataVideo.qualityLabel;
  44. descriptionElement.appendChild(nodeText(`【${qualityLabel}】\n${url}`));
  45. }
  46. }
  47. }
  48. };
  49. descriptionElement.appendChild(oButNode);
  50. };
  51. // type Target = {
  52. // pagrInfo:any
  53. // }
  54. // type MyWindow = typeof that& Target
  55. // 解析链接
  56. function getlink() {
  57. // 获取当前window
  58. let pageWindow = this.window;
  59. // 视频链接的json对象
  60. const ksPlay = JSON.parse(pageWindow.pageInfo.currentVideoInfo.ksPlayJson);
  61. if (!ksPlay) {
  62. console.log("解析播放器数据源失败!");
  63. }
  64. else {
  65. const dataVideos = ksPlay.adaptationSet;
  66. // console.log("视频共" + dataVideos.length + "P");
  67. for (let i = 0; i < dataVideos.length; i++) {
  68. // console.log("---");
  69. // console.log(`第${i + 1}P`);
  70. const representation = dataVideos[i].representation;
  71. for (let j = 0; j < representation.length; j++) {
  72. const dataVideo = representation[j];
  73. const url = dataVideo.url;
  74. const qualityLabel = dataVideo.qualityLabel;
  75. console.log(`【${qualityLabel}】${url}`);
  76. }
  77. }
  78. }
  79. return ksPlay.adaptationSet;
  80. }
  81. // 创建一个文字节点
  82. function nodeText(text) {
  83. let textNode = document.createElement("div");
  84. textNode.innerText = text;
  85. return textNode;
  86. }
  87. // 创建一个按钮节点
  88. function nodeButton(text) {
  89. let oButNode = document.createElement("input");
  90. oButNode.type = "button";
  91. oButNode.value = text;
  92. oButNode.style.margin = "10px";
  93. oButNode.style.borderWidth = "1px";
  94. oButNode.style.paddingTop = "5px";
  95. oButNode.style.paddingBottom = "5px";
  96. oButNode.style.paddingLeft = "10px";
  97. oButNode.style.paddingRight = "10px";
  98. oButNode.style.backgroundColor = "#5e64ff";
  99. oButNode.style.color = "#fff";
  100. oButNode.style.fontSize = "12px";
  101. oButNode.style.lineHeight = "1.5";
  102. oButNode.style.borderRadius = "3px";
  103. oButNode.style.borderColor = "#444bff";
  104. oButNode.style.display = "block";
  105. oButNode.style.cursor = "pointer";
  106. return oButNode;
  107. }
  108. //# sourceMappingURL=index.js.map

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址