• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:24
CET 14:24
KST 22:24
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9
Community News
Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win22025 RSL Offline Finals Dates + Ticket Sales!9BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION1Crank Gathers Season 2: SC II Pro Teams10Merivale 8 Open - LAN - Stellar Fest3
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win Could we add "Avoid Matchup" Feature for rankgame The New Patch Killed Mech! Chinese SC2 server to reopen; live all-star event in Hangzhou
Tourneys
Crank Gathers Season 2: SC II Pro Teams 2025 RSL Offline Finals Dates + Ticket Sales! Merivale 8 Open - LAN - Stellar Fest $5,000+ WardiTV 2025 Championship $3,500 WardiTV Korean Royale S4
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions BW General Discussion BSL Team A vs Koreans - Sat-Sun 16:00 CET [ASL20] Finals Preview: Arrival
Tourneys
[ASL20] Grand Finals The Casual Games of the Week Thread BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION ASL final tickets help
Strategy
PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2 Current Meta
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Path of Exile Nintendo Switch Thread Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread YouTube Thread The Chess Thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread MLB/Baseball 2023 Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Just for future reference, …
Peanutsc
Reality "theory" prov…
perfectspheres
The Benefits Of Limited Comm…
TrAiDoS
Our Last Hope in th…
KrillinFromwales
Certified Crazy
Hildegard
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1335 users

Mac & Linux fans, you can now watch the GSL live. - Page 4

Forum Index > Tech Support
Post a Reply
Prev 1 2 3 4 5 6 7 8 Next All
goupyl
Profile Joined September 2010
France5 Posts
December 03 2010 10:17 GMT
#61
Thanks a lot for this great script.
Works fine at my office
VoLTa.
Profile Joined December 2010
7 Posts
December 03 2010 23:30 GMT
#62
On December 02 2010 20:54 RoyalCheese wrote:
I'm sorry this doesn't work for you guys, i would love to help but i am not familiar with the changes op did to my program, so i will take a look at them when i get home from school and hopefully make a post with working script later today, perhaps even with an instruction video!


Thanks for all the help so far and I would love you if you did this!
TheGiftedApe
Profile Blog Joined September 2010
United States1243 Posts
December 03 2010 23:41 GMT
#63
OP is a Saint
xO-Gaming.com || [xO]TheGiftedApe.364 || xO-Gaming Manager.
TheGiftedApe
Profile Blog Joined September 2010
United States1243 Posts
December 06 2010 10:03 GMT
#64
doesnt work on mac
xO-Gaming.com || [xO]TheGiftedApe.364 || xO-Gaming Manager.
TheValley
Profile Joined July 2010
Poland56 Posts
December 06 2010 10:40 GMT
#65
i think something stops working
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
December 06 2010 10:50 GMT
#66
On November 26 2010 19:56 Centorian wrote:
Traceback (most recent call last):
File "./gomstreamer.py", line 205, in <module>
main()
File "./gomstreamer.py", line 132, in main
url = parseStreamURL(responseData)
File "./gomstreamer.py", line 191, in parseStreamURL
regexResult = re.search(patternHTTP, regexResult).group(0)
AttributeError: 'NoneType' object has no attribute 'group'


got this error.


I was having the same problem, and was able to resolve it by deleting the following lines from gomstreamer.py:

# Collected the gomcmd URL, now need to extract the correct HTTP URL
# from the string
patternHTTP = r"(http%3a.+)&quot;"
regexResult = re.search(patternHTTP, regexResult).group(0)

# Found URL, just need to fix URL characters
regexResult = re.sub(r'%3[Aa]', ':', regexResult) # Fixing :
regexResult = re.sub(r'%3[Ff]', '?', regexResult) # Fixing ?
regexResult = re.sub(r'%3[Dd]', '=', regexResult) # Fixing =
regexResult = re.sub(r'%26', '&', regexResult) # Fixing &
regexResult = re.sub(r'%2[Ff]', '/', regexResult) # Fixing /
regexResult = re.sub(r'&amp;', '&', regexResult) # Removing amp;
regexResult = re.sub(r'&quot;', '', regexResult) # Removing &quot;

It seems the script was expecting the URL characters to be encoded when in fact they were not.

Hope this solution works for the rest of you having this problem!
PencilZerg
Profile Joined October 2010
Denmark76 Posts
Last Edited: 2010-12-06 12:44:23
December 06 2010 11:42 GMT
#67
Thank you so much HazenNZ, I always wanted to not watch restreams because I want to support the wonderful things that Blizzard, Gom and Sony Ericsson are doing for us (and them). I did have quite a bit of trouble completely grasping the different steps on your... program... and I have never used the Mac Terminal. For those of you have similar issues, this is what I did (I use Mac):

Download the file HazenNZ is directing you to. It should be unzipped automatically. Open the "run.sh" file it looks like this:

+ Show Spoiler +
#!/bin/sh
EMAIL="EMAIL"
PASSWORD="PASSWORD"
python ./gomstreamer.py "-e $EMAIL" "-p $PASSWORD"


In the space between the quotation marks after the equals sign write your GOMtv account email and password, but leave the EMAIL and PASSWORD written after the dollar signs as is.

Then, in spotlight (the magnifying glass in top right), type terminal and open the first suggestion.

In this window, type:
cd downloads/ (this will change the current directory to downloads)
then, type
cd sjp-GOMstreamer-81dc6ff/ (The unzipped folder you just downloaded)
then, type
sh run.sh

When you press "enter" the Terminal window should type out stuff. For me, it looked like this:
+ Show Spoiler +

Last login: Mon Dec 6 11:13:17 on ttys000
3e6b7fad:~ Thorhauge$ cd Downloads/
3e6b7fad:Downloads Thorhauge$ pwd
/Users/Thorhauge/Downloads
3e6b7fad:Downloads Thorhauge$ cd sjp-GOMstreamer-81dc6ff/
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ pwd
/Users/Thorhauge/Downloads/sjp-GOMstreamer-81dc6ff
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ /run run.sh
-bash: /run: No such file or directory
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ sh run.sh

Stream URL: http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE

VLC command: /Applications/VLC.app/Contents/MacOS/VLC "--http-caching=30000" "http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE"

Playing stream via VLC...
[0x1002149b8] main libvlc: VLC kører med standard-grænsefladen. Brug 'cvlc' for at køre VLC uden grænseflade.
no frame!

(Followed by a bunch of error messages)


It opened VLC, and when I clicked play the stream started, lag-free, after 10 seconds or so.

Thanks again HazenNZ

Edit: slash-sign improperly placed
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
Last Edited: 2010-12-06 12:19:46
December 06 2010 12:18 GMT
#68
derElbe
Profile Joined February 2009
Germany571 Posts
December 07 2010 09:56 GMT
#69
On December 06 2010 20:42 PencilZerg wrote:
Thank you so much HazenNZ, I always wanted to not watch restreams because I want to support the wonderful things that Blizzard, Gom and Sony Ericsson are doing for us (and them). I did have quite a bit of trouble completely grasping the different steps on your... program... and I have never used the Mac Terminal. For those of you have similar issues, this is what I did (I use Mac):

Download the file HazenNZ is directing you to. It should be unzipped automatically. Open the "run.sh" file it looks like this:

+ Show Spoiler +
#!/bin/sh
EMAIL="EMAIL"
PASSWORD="PASSWORD"
python ./gomstreamer.py "-e $EMAIL" "-p $PASSWORD"


In the space between the quotation marks after the equals sign write your GOMtv account email and password, but leave the EMAIL and PASSWORD written after the dollar signs as is.

Then, in spotlight (the magnifying glass in top right), type terminal and open the first suggestion.

In this window, type:
cd downloads/ (this will change the current directory to downloads)
then, type
cd sjp-GOMstreamer-81dc6ff/ (The unzipped folder you just downloaded)
then, type
sh run.sh

When you press "enter" the Terminal window should type out stuff. For me, it looked like this:
+ Show Spoiler +

Last login: Mon Dec 6 11:13:17 on ttys000
3e6b7fad:~ Thorhauge$ cd Downloads/
3e6b7fad:Downloads Thorhauge$ pwd
/Users/Thorhauge/Downloads
3e6b7fad:Downloads Thorhauge$ cd sjp-GOMstreamer-81dc6ff/
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ pwd
/Users/Thorhauge/Downloads/sjp-GOMstreamer-81dc6ff
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ /run run.sh
-bash: /run: No such file or directory
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ sh run.sh

Stream URL: http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE

VLC command: /Applications/VLC.app/Contents/MacOS/VLC "--http-caching=30000" "http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE"

Playing stream via VLC...
[0x1002149b8] main libvlc: VLC kører med standard-grænsefladen. Brug 'cvlc' for at køre VLC uden grænseflade.
no frame!

(Followed by a bunch of error messages)


It opened VLC, and when I clicked play the stream started, lag-free, after 10 seconds or so.

Thanks again HazenNZ

Edit: slash-sign improperly placed


doesnt work for me :
AttributeError: 'NoneType' object has no attribute 'group
any idea?

i am not sure about python, i don't know if i got it or not.

Hoejja - Bisu - Leenock - TLO
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
December 07 2010 10:20 GMT
#70
On December 07 2010 18:56 derElbe wrote:
Show nested quote +
On December 06 2010 20:42 PencilZerg wrote:
Thank you so much HazenNZ, I always wanted to not watch restreams because I want to support the wonderful things that Blizzard, Gom and Sony Ericsson are doing for us (and them). I did have quite a bit of trouble completely grasping the different steps on your... program... and I have never used the Mac Terminal. For those of you have similar issues, this is what I did (I use Mac):

Download the file HazenNZ is directing you to. It should be unzipped automatically. Open the "run.sh" file it looks like this:

+ Show Spoiler +
#!/bin/sh
EMAIL="EMAIL"
PASSWORD="PASSWORD"
python ./gomstreamer.py "-e $EMAIL" "-p $PASSWORD"


In the space between the quotation marks after the equals sign write your GOMtv account email and password, but leave the EMAIL and PASSWORD written after the dollar signs as is.

Then, in spotlight (the magnifying glass in top right), type terminal and open the first suggestion.

In this window, type:
cd downloads/ (this will change the current directory to downloads)
then, type
cd sjp-GOMstreamer-81dc6ff/ (The unzipped folder you just downloaded)
then, type
sh run.sh

When you press "enter" the Terminal window should type out stuff. For me, it looked like this:
+ Show Spoiler +

Last login: Mon Dec 6 11:13:17 on ttys000
3e6b7fad:~ Thorhauge$ cd Downloads/
3e6b7fad:Downloads Thorhauge$ pwd
/Users/Thorhauge/Downloads
3e6b7fad:Downloads Thorhauge$ cd sjp-GOMstreamer-81dc6ff/
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ pwd
/Users/Thorhauge/Downloads/sjp-GOMstreamer-81dc6ff
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ /run run.sh
-bash: /run: No such file or directory
3e6b7fad:sjp-GOMstreamer-81dc6ff Thorhauge$ sh run.sh

Stream URL: http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE

VLC command: /Applications/VLC.app/Contents/MacOS/VLC "--http-caching=30000" "http://211.43.144.197:8800/view.cgi?hid=1&cid=23&nid=800&uno=5109700&uip=62.107.127.173&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=0ad170701552018eec43a39c6c96c52e&Format=OGM&SecSize=45056&FixedHeader=TRUE&PosInData=TRUE"

Playing stream via VLC...
[0x1002149b8] main libvlc: VLC kører med standard-grænsefladen. Brug 'cvlc' for at køre VLC uden grænseflade.
no frame!

(Followed by a bunch of error messages)


It opened VLC, and when I clicked play the stream started, lag-free, after 10 seconds or so.

Thanks again HazenNZ

Edit: slash-sign improperly placed


doesnt work for me :
AttributeError: 'NoneType' object has no attribute 'group
any idea?

i am not sure about python, i don't know if i got it or not.




read my message about 2 posts above for the solution to this.
OneThreeOne
Profile Joined November 2010
Norway86 Posts
December 07 2010 11:12 GMT
#71
On December 06 2010 19:50 AcrossFiveJulys wrote:
Show nested quote +
On November 26 2010 19:56 Centorian wrote:
Traceback (most recent call last):
File "./gomstreamer.py", line 205, in <module>
main()
File "./gomstreamer.py", line 132, in main
url = parseStreamURL(responseData)
File "./gomstreamer.py", line 191, in parseStreamURL
regexResult = re.search(patternHTTP, regexResult).group(0)
AttributeError: 'NoneType' object has no attribute 'group'


got this error.


I was having the same problem, and was able to resolve it by deleting the following lines from gomstreamer.py:

# Collected the gomcmd URL, now need to extract the correct HTTP URL
# from the string
patternHTTP = r"(http%3a.+)&quot;"
regexResult = re.search(patternHTTP, regexResult).group(0)

# Found URL, just need to fix URL characters
regexResult = re.sub(r'%3[Aa]', ':', regexResult) # Fixing :
regexResult = re.sub(r'%3[Ff]', '?', regexResult) # Fixing ?
regexResult = re.sub(r'%3[Dd]', '=', regexResult) # Fixing =
regexResult = re.sub(r'%26', '&', regexResult) # Fixing &
regexResult = re.sub(r'%2[Ff]', '/', regexResult) # Fixing /
regexResult = re.sub(r'&amp;', '&', regexResult) # Removing amp;
regexResult = re.sub(r'&quot;', '', regexResult) # Removing &quot;

It seems the script was expecting the URL characters to be encoded when in fact they were not.

Hope this solution works for the rest of you having this problem!


I was getting the same error, and this fixed it.
derElbe
Profile Joined February 2009
Germany571 Posts
December 07 2010 11:21 GMT
#72
thanks for helping,
i did your fix, but it still doesnt work.

the vlc opens and everything seems fine. but as soon as i click the url in vlc,
there occures another error in the terminal:

[0x1012b9088] access_http access error: failed to read answer
[0x1012b9088] access_http access error: failed to read answer
[0x1012b9088] access_mms access error: failed to read answer
main input error: open of `http://211.43.144.189:8900/view.cgi?hid=1&cid=23&nid=900&uno=NUMBER&uip=77.22.208.250&title=SonyEricssonSTARCRAFTIIOpenSeason3&key=NUMBER' failed: (null)

Hoejja - Bisu - Leenock - TLO
Nick.TNA
Profile Joined June 2010
209 Posts
Last Edited: 2010-12-18 06:43:47
December 18 2010 06:43 GMT
#73
How do you run run.sh? it just opens into a text pad..
makoplux
Profile Joined April 2010
88 Posts
December 18 2010 07:11 GMT
#74
On December 18 2010 15:43 Nick.TNA wrote:
How do you run run.sh? it just opens into a text pad..


Same for me... but it opens in Coda. VLC doesn't open or anything.
who is john galt?
benjammin
Profile Blog Joined August 2008
United States2728 Posts
December 18 2010 07:57 GMT
#75
for people who don't know how to run it:

open up terminal, navigate to the folder with the script, then type: ./run.sh

vlc will open, press play, give it a few seconds, boom
wash uffitizi, drive me to firenze
Nick.TNA
Profile Joined June 2010
209 Posts
December 18 2010 08:09 GMT
#76
How do i "navigate to the folder with the script"? As in just open it? I have it open and im typing that and it doesn't do anything, says no such file
benjammin
Profile Blog Joined August 2008
United States2728 Posts
December 18 2010 08:14 GMT
#77
navigate to it in terminal, here's more info if you don't know how: http://macapper.com/2007/03/08/the-terminal-an-introduction/
wash uffitizi, drive me to firenze
Curtismcfly
Profile Joined November 2010
United States215 Posts
December 18 2010 09:50 GMT
#78
Unable to find URLs on the Live streaming page. Is the stream available?
curtis-blevinss-imac:sjp-GOMstreamer-81dc6ff curtismcfly$

this is the message i get when i try to run run.sh thru terminal... I couldn't find a URL in the source code on gomtv's page either...
¯\__(O.o)__/¯ curtis-mcfly.tumblr.com
deconduo
Profile Blog Joined January 2008
Ireland4122 Posts
January 02 2011 11:30 GMT
#79
They've changed the way you do it.

1. Open the source of the page with the Live Stream Buttons
2. Ctrl +F and look for 'var goxUrl'
3. Use SQTest (or HQ if you have a ticket) for playtype
4. Paste the url into your browser, should be something like
http://www.gomtv.net/gox/gox.gom?leagueid=20119&strLevel=SQTest&target=live&mb_no=99999999999999&title=
5.Look at the source of the new page. There will be a huge long link. The important part is between LiveAddr= and ;Format
RaGe
Profile Blog Joined July 2004
Belgium9947 Posts
January 02 2011 15:17 GMT
#80
On December 03 2010 04:18 zhurai wrote:
Show nested quote +
On December 02 2010 21:04 VIB wrote:
It's working great, thanks a lot!
You mean illegal like their GomPlayer? http://www.ffmpeg.org/shame.html


hint: just because it's on ffmpeg's hall of shame doesn't mean that you can pirate their stream and host it elsewhere.

those are two seperate shit.

ffmpeg just wants people that use the open source code to _fully_ follow the GPL, which then again I doubt GOMtv even knows what that's supposed to mean, given where they are from.

Code license violations are fucking totally different from pirating streams.
Stop confusing them.


EDIT:

Show nested quote +
On December 02 2010 22:01 VIB wrote:
I think Mac commands are like unix, right? If so you should just run "./run.sh" and that should work.


Yes, mac's commandline is an old version of bash (borne again shell), which most Unix's (Well *BSD's) and Linux (Arch, Gentoo, Ubuntu, Fedora, ...) use (But they use more recent versions)


if somehow you can't run it (permission denied)

$ chmod +x run.sh
$ ./run.sh

https://roundup.ffmpeg.org/issue112

Looks like they're trying to fix the violation.
Moderatorsometimes I get intimidated by the size of my right testicle
Prev 1 2 3 4 5 6 7 8 Next All
Please log in or register to reply.
Live Events Refresh
CrankTV Team League
13:00
Playoffs: 2 Bo9s
Shopify Rebellion vs Team FalconLIVE!
BASILISK vs Team Liquid
LiquipediaDiscussion
OSC
12:00
King of the Hill #229
WardiTV608
IndyStarCraft 87
iHatsuTV 19
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko398
Rex 102
IndyStarCraft 87
RotterdaM 81
ProTech80
Codebar 9
StarCraft: Brood War
Bisu 2700
BeSt 950
actioN 338
EffOrt 236
Mini 230
Last 208
sSak 152
Light 128
Mind 82
Liquid`Ret 76
[ Show more ]
ToSsGirL 68
Larva 61
Aegong 53
PianO 42
Sharp 19
soO 17
yabsab 16
Terrorterran 14
Sacsri 14
scan(afreeca) 12
sorry 8
HiyA 7
Dota 2
Gorgc1595
qojqva741
Dendi298
XcaliburYe260
420jenkins163
ODPixel139
BananaSlamJamma87
Fuzer 1
Counter-Strike
fl0m1561
olofmeister1436
x6flipin654
Other Games
singsing2042
B2W.Neo735
hiko490
crisheroes340
DeMusliM310
Pyrionflax220
Sick193
Hui .172
byalli97
Mew2King61
Organizations
Counter-Strike
PGL15134
StarCraft: Brood War
lovetv 17
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 1598
League of Legends
• Jankos3240
Upcoming Events
OSC
2h 36m
Replay Cast
9h 36m
The PondCast
19h 36m
CrankTV Team League
23h 36m
Replay Cast
1d 20h
WardiTV Invitational
1d 22h
ByuN vs Spirit
herO vs Solar
MaNa vs Gerald
Rogue vs GuMiho
CrankTV Team League
1d 23h
Replay Cast
2 days
BSL Team A[vengers]
3 days
Dewalt vs Shine
UltrA vs ZeLoT
BSL 21
3 days
[ Show More ]
Sparkling Tuna Cup
3 days
BSL Team A[vengers]
4 days
Cross vs Motive
Sziky vs HiyA
BSL 21
4 days
Wardi Open
4 days
Monday Night Weeklies
5 days
Liquipedia Results

Completed

CSL 2025 AUTUMN (S18)
WardiTV TLMC #15
Eternal Conflict S1

Ongoing

BSL 21 Points
BSL 21 Team A
C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
CranK Gathers Season 2: SC II Pro Teams
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025

Upcoming

SC4ALL: Brood War
YSL S2
BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
META Madness #9
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.