|
You last visited: Today at 16:38
Advertisement
[Method] Stream SkillCapped videos for free
Discussion on [Method] Stream SkillCapped videos for free within the League of Legends forum part of the Popular Games category.
02/09/2023, 04:11
|
#31
|
elite*gold: 0
Join Date: Jul 2020
Posts: 1
Received Thanks: 0
|
Quote:
Originally Posted by trolololman
Despite having the addon activated, i get the message "Fetch failed".
Using Firefox, but also tried Chrome with this link: 
|
If you installed the recommended extension, you have open the extension and look for the text that says "Turn ON | OFF". Like this:
|
|
|
02/10/2023, 11:53
|
#32
|
elite*gold: 0
Join Date: Dec 2012
Posts: 30
Received Thanks: 1
|
Quote:
Originally Posted by Schiel_1
If you installed the recommended extension, you have open the extension and look for the text that says "Turn ON | OFF". Like this:

|
Thanks, it's turned on but it still does not work
|
|
|
02/11/2023, 00:01
|
#33
|
elite*gold: 0
Join Date: Jan 2021
Posts: 3
Received Thanks: 0
|
Got it to work, it's amazing!
I've got no luck downloading the vids though, Jdownloader doesn't accept the .html link. Anyone have any idea on how to turn it into an mp4?
|
|
|
02/15/2023, 18:33
|
#34
|
elite*gold: 0
Join Date: Feb 2023
Posts: 1
Received Thanks: 0
|
works thank you so much; any tips to download them?
|
|
|
02/16/2023, 20:06
|
#35
|
elite*gold: 0
Join Date: Dec 2012
Posts: 30
Received Thanks: 1
|
Got it to work with another CORS addon.
Is there any way of downloading this videos?
|
|
|
02/23/2023, 10:03
|
#36
|
elite*gold: 0
Join Date: Feb 2023
Posts: 2
Received Thanks: 0
|
Is not working for me
When i lunch the file all i see on the browser (chrome) is a video box which is not working and an url box (any url that i add is saying invalid url).
Edit: nvm i got it thx you so much
|
|
|
03/24/2023, 10:57
|
#37
|
elite*gold: 0
Join Date: Mar 2023
Posts: 1
Received Thanks: 0
|
Hello, is it still working ?
Quote:
Originally Posted by xSh4adow
When i lunch the file all i see on the browser (chrome) is a video box which is not working and an url box (any url that i add is saying invalid url).
Edit: nvm i got it thx you so much
|
I have the same problem can you tell me please how you fixed ?
|
|
|
03/25/2023, 09:09
|
#38
|
elite*gold: 0
Join Date: Dec 2019
Posts: 2
Received Thanks: 1
|
UPDATE: Confirmed still working as of 25/03/2023
Can confirm that this is still working as of 25/03/2023
I just binged watch a whole bunch of Valorant Guides for the new Agent Gekko.
Quote:
Originally Posted by noche3x
Hello,
I just found  and made a small script to stream SkillCapped videos from your browser (I know tools exist but this method is without downloading anything).
1. Use a modern browser such as Chrome
2. Install a CORS Allow extension eg: 
3. Copy this script and save it as "skilluncapped.html" :
Code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SkillUncapped</title>
</head>
<label>url: </label>
<input onkeyup="if (event.key =='Enter') stream()" style="width: 300px;" id="url" placeholder="https://www.skill-capped.com/lol/commentaries/p1qcnwqt75" />
<button style="width: 80px;" onclick="stream()">Stream</button>
<label style="display: block;" id="status"></label>
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<video style="display: block; margin-top: 10px;" height="720" width="1280" id="video" controls autoplay crossorigin="anonymous" />
<script>
var hls = null;
if (Hls.isSupported()) {
var hlsjsConfig = {
"maxBufferSize": 0,
"maxBufferLength": 30,
"startPosition": 0
}
hls = new Hls(hlsjsConfig);
hls.on(Hls.Events.MANIFEST_PARSED, function () {
video.play();
});
}
const rgx = /([a-z0-9]{10})(:?\/|$)/g;
async function stream() {
if (hls == null) {
alert("hls not supported, please use a modern browser such as Chrome");
return;
}
const rawUrl = document.getElementById("url").value;
let ids = [];
let match = null;
while (match = rgx.exec(rawUrl)) {
ids.push(match[1]);
}
if (ids.length < 1) {
alert("invalid url");
return;
}
const videoId = rawUrl.includes("browse3") ? ids[0] : ids[ids.length - 1];
let statusLabel = document.getElementById("status");
console.log(`video id is ${videoId}`);
console.log("looking for final part...");
let last = 0;
let jump = true;
for (let i=300;i<=1000; i++) {
if (i==1000) {
alert("error finding last part");
return;
}
if (i==0) i = 1;
const url = `https://d13z5uuzt1wkbz.cloudfront.net/${videoId}/HIDDEN4500-${String(i).padStart(5, "0")}.ts`;
console.log(`testing ${url}`);
statusLabel.innerText = `Looking for final part ; Testing ${i}...`;
try {
const resp = await fetch(url, {method: 'HEAD'});
if (resp.status === 403) {
if (i>=50 && i%50 == 0 && jump) {
last = i;
jump = true;
i -= 51;
continue;
}
break;
}
last = i;
jump = false;
} catch(e) {
alert("fetch failed, please install a Cross-Origin disabler extension for your browser or check your internet connectivity.");
return;
}
}
statusLabel.innerText = "";
let data = "#EXTM3U\n#EXT-X-PLAYLIST-TYPE:VOD\n#EXT-X-TARGETDURATION:10";
for (let i=0; i<=last; i++) {
data += `#EXTINF:10,\nhttps://d13z5uuzt1wkbz.cloudfront.net/${videoId}/HIDDEN4500-${String(i).padStart(5, "0")}.ts\n`
}
console.log(data);
hls.loadSource(
"data:application/x-mpegURL;base64," + btoa(data)
);
hls.attachMedia(video);
}
</script>
</body>
</html>
4. Open the saved file using Chrome
5. Activate the CORS extension by clicking on the icon on the extensions bar
6. Enjoy !
For those who can't afford a subscription 
+rep if you like it 
|
|
|
|
03/25/2023, 15:17
|
#39
|
elite*gold: 0
Join Date: Mar 2023
Posts: 1
Received Thanks: 0
|
Is there a way to control the resolution or smth, since I have a slow internet connection that takes ages to watch the video.
|
|
|
03/27/2023, 00:03
|
#40
|
elite*gold: 0
Join Date: Mar 2023
Posts: 2
Received Thanks: 0
|
thank you this method still works 27.03.23. I wonder what else can be unlocked with this extension.
|
|
|
03/29/2023, 01:39
|
#41
|
elite*gold: 0
Join Date: Mar 2023
Posts: 2
Received Thanks: 0
|
we need a download option asap please
|
|
|
04/06/2023, 02:45
|
#42
|
elite*gold: 0
Join Date: Apr 2023
Posts: 1
Received Thanks: 0
|
bro this is working like a charm! thank you so much
I even created this account in this forum only to thank you!
|
|
|
04/18/2023, 11:16
|
#43
|
elite*gold: 0
Join Date: Nov 2020
Posts: 1
Received Thanks: 0
|
Thx men it works perfectly
|
|
|
04/19/2023, 12:53
|
#44
|
elite*gold: 0
Join Date: Feb 2021
Posts: 72
Received Thanks: 12
|
Any way we can download the videos?
|
|
|
04/19/2023, 14:45
|
#45
|
elite*gold: 0
Join Date: Nov 2022
Posts: 232
Received Thanks: 32
|
Anyone can explain what it is?
|
|
|
Similar Threads
|
LF Skillcapped Videos or Account
05/01/2017 - League of Legends Trading - 0 Replies
Hello,
do someone have the new skillcapped videos or a account for it which i can use ?
|
[S] Gold Frostwof [B] Skillcapped account zum Mitbenutzen
04/08/2012 - World of Warcraft Trading - 0 Replies
Ich Such ca. 10k GOld auf Frostwolf Horde ich biete euch einen SKillcapped account den ihr mitbenutzen könnt
|
WoW Skillcapped Account!
03/10/2012 - World of Warcraft Trading - 1 Replies
Hey suche jemanden bei dem ich den Skillcapped Account mitnutzen kann wäre echt super!
danke im vorraus! : )
|
SkillCapped account!
02/01/2012 - World of Warcraft - 1 Replies
hey suche jemanden mit einen Skillcapped account. Meine frage ist ob ich den eventuell von einen mitbenutzen könnte.
Wäre super danke! : )
|
All times are GMT +1. The time now is 16:38.
|
|