Simple Questions Simple Answers - Page 473
Forum Index > Tech Support |
Dingodile
4135 Posts
| ||
Cyro
United Kingdom20316 Posts
On June 13 2014 03:24 Dingodile wrote: Does sc2 display show correct numbers? I have 57°C without fan on heatsink, 62°C with fan^^. Apparently case fan behind heatsink (~5cm away) is doing a better job than cpu-fan did all the time. Uh, sc2 displays your GPU core temperature, AFAIK that's the only thing it displays - not CPU. Graphics card load is variable when you're CPU bound, and even if it were not, a +-3c swing (say minimum 60c, maximum 66c depending on the day, room temp, how hot case is etc) is totally normal and even on the low end of variability. If 65c is your normal temp it might be 60c some days and 70c others, at the same load, due to environmental changes - unless you are in a room air conditioned to a set temperature, with no windows, without a PC case (open test bench) etc, to reduce that variability. But sc2.. with 200 units you might have 20% graphics card load, and with 50 units you might have 4x the FPS (cpu limited) and 80% graphics card load, and be 20c hotter there. You should look at CPU temperatures under a real load, for example after running Cinebench r15 multi-threaded three times back to back and noting max temperatures per core. | ||
BreakBad
Germany62 Posts
The end result I want is a 24 hour League of Legends stream of high elo solo queue in Korea. Is something like this even possible? Is there an OBS addon that can help with that? You are able to spectate games from the internet using OP.GG and other various sources, but since I'm one person, I can't be awake 24/7 and I have to work, etc. I want it to be a free stream, and I don't want to make money off of it. I just want the information out there so people can learn from a higher level of player than in NA or EU. If you guys can answer this question, I would love that! If not, can you tell me where I should post it? | ||
Craton
United States17254 Posts
It's more or less doable to write a program, have an ordered list of streams, and swap from A to B based on whether or not they're online when current one goes offline (or randomly pick, doesn't matter). The harder part is feeding the video source into something consistent (i.e. the same place on the screen). Think the likes of detecting "X" is online, so pipe the video to a particular instance of VLC using livestreamer, regularly check online status (once a minute to avoid rate limiting? did the vlc instance disappear, meaning checking process list/running programs constantly for a faster response time), then use some logic to determine what to open next. So short answer: yeah, it's probably doable. How easy or hard to do depends on a number of things. If you want it truly automatic you need to write some code. I can tell you that using the likes of twitch and livestreamer I could whip something like this up since I know I can easily check online status of twitch and pipe video through e.g. livestreamer (salient point being I can control how it's displayed better than in a browser). With OP.GG, I have no idea what you'd need to do to figure out online status or to pipe the video. I believe the likes of Snipealot are done largely manually, with a number of people that change the video throughout the day. Frankly that could be made much more automatic too, since I know you can use the Afreeca mobile site to check availability and pipe video (I just know I've seen someone moving windows around from time to time so it's probably manual). | ||
BreakBad
Germany62 Posts
On June 13 2014 11:02 Craton wrote: I don't know how automatic you could make it; it depends on its API / scraping the pages for online status, and how you can pull the source video. It's more or less doable to write a program, have an ordered list of streams, and swap from A to B based on whether or not they're online when current one goes offline (or randomly pick, doesn't matter). The harder part is feeding the video source into something consistent (i.e. the same place on the screen). Think the likes of detecting "X" is online, so pipe the video to a particular instance of VLC using livestreamer, regularly check online status (once a minute to avoid rate limiting? did the vlc instance disappear, meaning checking process list/running programs constantly for a faster response time), then use some logic to determine what to open next. So short answer: yeah, it's probably doable. How easy or hard to do depends on a number of things. If you want it truly automatic you need to write some code. I can tell you that using the likes of twitch and livestreamer I could whip something like this up since I know I can easily check online status of twitch and pipe video through e.g. livestreamer (salient point being I can control how it's displayed better than in a browser). With OP.GG, I have no idea what you'd need to do to figure out online status or to pipe the video. I believe the likes of Snipealot are done largely manually, with a number of people that change the video throughout the day. Frankly that could be made much more automatic too, since I know you can use the Afreeca mobile site to check availability and pipe video (I just know I've seen someone moving windows around from time to time so it's probably manual). Well I'm not looking to pull up random streams, I want to be able to pull up the spectator view of games currently going on. Not sure if this would help, but look at this thread from reddit: http://www.reddit.com/r/leagueoflegends/comments/1ixcwo/watch_korean_games_from_your_client/ It shows which URL is needed to spectate games in the Client in order to spectate Korean solo queue. I wanted to just bring in Korean solo queue games, but somehow limit it to higher level solo queue, if that makes sense. | ||
BreakBad
Germany62 Posts
| ||
Craton
United States17254 Posts
You'd need a to parse through the list of available featured games (get the players in them so you can do a simple lookup on their rating: there is a riot api for this and numerous sites that already use that api, you just need the summoner name/id). This is easy with the json you get from those URLs. You'd need a way to start the spectating, which I don't know how you pull off. I'm assuming this change alters what shows in your normal spectate area. If that's the only way to trigger spectating, you'd need a way to select the right indicator for your chosen game and then "press" the spectate button. Later in the thread seems to indicate you could set up a batch file to do this, so if you figure out what goes in the batch file, firing it off and passing params is trivial. You'd need a way to exit the game when it's finished and repeat the process. I don't know how you go about actually determining the end of a game -- exiting you can do with a simple process kill. | ||
BreakBad
Germany62 Posts
On June 13 2014 11:45 Craton wrote: Sounds harder. Lot more unknowns for me. You'd need a to parse through the list of available featured games (get the players in them so you can do a simple lookup on their rating: there is a riot api for this and numerous sites that already use that api, you just need the summoner name/id). This is easy with the json you get from those URLs. You'd need a way to start the spectating, which I don't know how you pull off. I'm assuming this change alters what shows in your normal spectate area. If that's the only way to trigger spectating, you'd need a way to select the right indicator for your chosen game and then "press" the spectate button. You'd need a way to exit the game when it's finished and repeat the process. I don't know how you go about actually firing off "spectate this one" or determining the end of a game -- exiting you can do with a simple process kill. It sounds like my question might be a bit more complex for a "Simple Question Simple Answer" thread, should I make this into a thread itself? Will that violate anything on the TL forum rules? | ||
Craton
United States17254 Posts
One way or another you're writing code or someone's writing it for you. | ||
BreakBad
Germany62 Posts
On June 13 2014 11:51 Craton wrote: Well you could try, but I doubt you'd get much love. You could ask for help in the programming thread but I wouldn't expect much from them either. One way or another you're writing code or someone's writing it for you. Why wouldn't I get much love from either forum? Not many League fans here? | ||
Craton
United States17254 Posts
| ||
BreakBad
Germany62 Posts
On June 13 2014 11:52 Craton wrote: It's a very niche question and answer. Someone is effectively coding for you or walking you through every step of how to do the code. Yeah I wish I knew coding. It would help so much. Web design and coding -- some good knowledge to have in the 21st century | ||
motterbe
United States1 Post
My desktop recently crapped out on me. I was watching a movie and it simply shut down, and it kicked over my battery backup/surge protector. My first thought was that it was my power supply, so I replaced that and it didn't work. When I pushed the power button, nothing happened. So then I replaced my motherboard, carefully transferring over my cpu/ram/video card/etc. Put it all together and push the power button and nothing. What do you recommend I try next? Thanks for any help. Otter | ||
Shiragaku
Hong Kong4308 Posts
![]() | ||
skyR
Canada13817 Posts
There is no longer a filter for Dota 2 as the content has moved to LiquidDota. | ||
Shiragaku
Hong Kong4308 Posts
| ||
Craton
United States17254 Posts
Should really put this in FAQ or something, it gets asked a ton. | ||
skyR
Canada13817 Posts
Untick "Hide filter buttons in top menu bar" and then click "Other" to remove the filter. ![]() | ||
Shiragaku
Hong Kong4308 Posts
Thanks a lot | ||
endy
Switzerland8970 Posts
What can I do? | ||
| ||