您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Under development
// ==UserScript== // @name 学习自用 LiveStreamCapture 配套脚本 目前仅支持douyu // @namespace [email protected] // @version 0.1 // @description Under development // @author [email protected] // @match https://www.douyu.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license AGPL-3.0 // ==/UserScript== ( function() { 'use strict'; console.log("hello"); sourceAnalyze() function createButton(urlMaster) { var button = document.createElement("input"); button.setAttribute("type", "button"); button.setAttribute("value", "record"); button.setAttribute("id", "lh-button"); button.style.left = "50px"; button.style.top = "200px"; button.style.height = "30px"; button.style.width = "50px"; button.style['z-index'] = "999999"; button.style.position = "absolute"; if (urlMaster === "www.douyu.com") { button.onclick = function() { douyuLiveStream() }; } document.body.appendChild(button); } function sourceAnalyze() { let url = document.URL; var urlPicese = url.split("/"); if (urlPicese.length >= 3) { let urlMaster = urlPicese[2]; if (webIsLive(urlMaster) === 1) { createButton(urlMaster); } } } function webIsLive(urlMaster) { if (urlMaster === "www.douyu.com"){ let roomId = window.apm_room_id; return typeof(roomId) == "undefined" ? 0 : 1; } return 0; } function getCookie(name) { var cookieArr = document.cookie.split(";"); for(var i = 0; i < cookieArr.length; i++) { var cookiePair = cookieArr[i].split("="); if(name == cookiePair[0].trim()) { return decodeURIComponent(cookiePair[1]); } } return null; } function douyuLiveStream() { let roomId = window.apm_room_id; let url = "https://www.douyu.com/lapi/live/getH5Play/" + roomId; let douyuDid = getCookie("dy_did"); var newDate = parseInt((new Date).getTime() / 1e3, 10); var paramVar = window.ub98484234(roomId, douyuDid, newDate); let paramLet = "&cdn=&rate=-1&iar=1&ive=0&hevc=0&fa=0"; let streamUrl = url + "?" + paramVar + paramLet; console.log(streamUrl); fetch(streamUrl, { method: 'POST'}) .then(function(response) { return response.json(); }) .then(function(myJson) { console.log(myJson); var webError = myJson["error"]; if (webError != 0){ return; } let data = myJson["data"]; let rtmpUrl = data["rtmp_url"]; let rtmpLive = data["rtmp_live"]; let rtmpLiveUrl = rtmpUrl + "/" + rtmpLive; //window.open("testExe://"+rtmpLiveUrl, window.apm_room_id) window.open("LiveStreamCaptureExe://"+rtmpLiveUrl, window.apm_room_id) console.log(rtmpLiveUrl); }) .catch(function(error) { console.error('Error:', error) }); } } )();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址