Jump to content

-Veteran007-

Member
  • Posts

    68
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Gender
    Male
  • Location
    Estonia

System

  • CPU
    Intel Core i5 6500 @3,2GHz
  • Motherboard
    Asus B150M Pro Gaming
  • RAM
    Crucial Ballistix Sport 16GB Single Channel 2400MHz DDR4
  • GPU
    Sapphire Radeon Nitro+ RX 480 8GB
  • Case
    NZXT S340
  • Storage
    Crucial MX300 524GB SSD
  • PSU
    EVGA BQ650W
  • Display(s)
    LG 25UM58-P
  • Keyboard
    Trust GXT 280
  • Mouse
    Razer Deathadder 2013
  • Sound
    AKG K77
  • Operating System
    Windows 10 Home Premium SP1 64-bit

-Veteran007-'s Achievements

  1. They seem great from seeing them during the last livestream. But I really hope that you pay attention to one detail. That the pockets are extra durable. Because so far every pant I have owned, have had it's pockets worn out. My phone and my Ridge wallet both have digged through the pocket lining, creating small holes. The fact that the pocket material isn't made out of anything durable AND wallets and phones having quite sharp corners, doesn't help. Can't wait Sincerely Eternal shopper
  2. A bit late of an update, but still. Sorry for not responding to any of you, but life matters came up. To answer some questions so maybe others get some help from it too. Just the usual microphones with XLR connections, he already has them and if needed, he can easily loan some and get the audio to the camera. Nothing special in that sense. I thought that too. I threw out some alternatives, for example getting the blackmagic design studio camera 4k pro with a lense, but that didn't get his attention that much. After everything, it seems the ease of use was quite a big factor after all. I guess you are thinking of those big music concerts - big stage, bright flashing lights, everything else not well lit. That might be because of a language barrier. What I meant with music concerts was the usual piano music, kid's music school concerts, formal things. Hiring a camera was in the thoughts as well, but 100 something for one day was too much to make sense. In long term at least. He finally went with the mentioned JVC GY-HM250(E). Purely because it has an easy setup for streaming and all of that functionality already built-in. Bought an Ethernet adapter and USB Wifi stick. Already did the first stream with it, some 10 minutes for first setup and done. I checked it out myself too, seems to be quite decent picture quality, feature set good enough for quite a wide range of situations.
  3. Hi guys Trying to help someone out. The mission is to find a setup/video camera to live stream music concerts. I have actually asked the same question quite a few years back, but that didn't go in to works and other ventures were more important. The budget has gone up now too. So the need is to live stream to youtube maybe to facebook too. The main subject is going to be music concerts. With the main need for stereo sound - two XLR microphones inputs. Good enough camera feed quality - 1080p 30fps is good enough. He has searched himself and found a camera that fits him - JVC GY-HM250(E). It is a real professional streaming camera it seems, with even option to configure lower thirds. And it seems his budget is large enough With the JVC camera costing about 2000$. But my concern that it is maybe too much of a professional camera - backup batteries and other accessories are going to be quite expensive, proprietary. But the luxury of having the streaming configuration embedded and with a simple USB dongle you can have internet anywhere - wifi, ethernet, mobile data. It sounds all so good. Has anyone opinions on that video camera? Or can suggest other options? Just trying to brainstorm some ideas, alternatives.
  4. I haven't found time to work on my script for some time now. But now I have and figured I'd update. pandas.read_html really did work!! Don't know, how I missed that function. ? pd.read_html(link, header=0, index_col=0, attrs={'class': 'ss-data'}) That one line did it. Gets all the player names, frames and the results. Script is almost done, working now on pretty printing it to excel or csv. So I could make some statistics and stuff.
  5. I am trying with BeautifulSoup, but I am so overwhelmed, I don't know what kind of functions should I use, to get the best result out of this table. I have tried this: records = [] for tr in table_soup.findAll("tr"): trs = tr.findAll("td") records.append(trs[0].text.replace('\n', ' ')) df = pd.DataFrame(data=records) And the result is: Players 1 2 3 4 5 6 7 8 9 10 Total Anonymous1 5 / 18 8 1 27 5 - 32 4 / 49 7 1 57 9 / 73 6 / 90 7 / 110 X 130 7 / 7 147 147 Anonymous2 7 2 9 6 3 18 - 2 20 - - 20 1 2 23 9 / 33 - 9 42 4 3 49 5 / 69 X - 1 80 80 Anonymous3 7 2 9 - 4 13 7 - 20 9 - 29 3 - 32 4 - 36 6 / 55 9 - 64 9 - 73 - / 1 84 84 Anonymous4 - 9 9 3 - 12 - 8 20 4 5 29 8 - 37 9 / 57 X 76 9 - 85 9 / 105 X 6 - 121 121 Game 1 So I can kinda get the result, but it also somewhy prints this same line all out on different rows before it gets to the second game results, that are in one row. Also I am so lost as to what to do next, I can get the frame numbers and total as column headers, but parsing results and totals as different variables/strings seems way too hard.
  6. Hey! I get bowling results on my email. I have used Gmail API to get access to my email, find the emails and get to the result link. Now I am trying to parse the HTML table that is on the link, into a readable/logical table. I don't even know if I should use Pandas or just write to CSV file. I am using BeautifulSoup to parse through the HTML, but the table structure is so messy, I can't wrap my head around it. Here is a short example of the table code. Usually there are multiple tables on the page, tables sometimes with multiple player results, so it all makes that much harder. <table class="scoresheet tenpin TenPin"> <tr> <td> <table class="ss-data"> <tr class="cls_frameheader"> <td class="ss-name"> <t> Players </t> </td> <td> 1 </td> <td> 2 </td> <td> 3 </td> <td> 4 </td> <td> 5 </td> <td> 6 </td> <td> 7 </td> <td> 8 </td> <td> 9 </td> <td class="cls_framehdr10"> 10 </td> <td class="cls_frametotal"> <t> Total </t> </td> </tr> <td class="cls_player"> <tr class="notranslate"> Anonymous </td> <td class="cls_frame"> <table> <tr> <td> <table class="cls_tbl_balls"> <tr class="cls_ball_row"> <td class="cls_ball1"> 5 </td> <td class="cls_ball2"> / </td> </tr> </table> </td> </tr> <tr> <td class="cls_framescore"> 18 </td> </tr> </table> </td> <td class="cls_frame"> <table> <tr> <td> <table class="cls_tbl_balls"> <tr class="cls_ball_row"> <td class="cls_ball1"> 8 </td> <td class="cls_ball2"> 1 </td> </tr> </table> </td> </tr> <tr> <td class="cls_framescore"> 27 </td> </tr> </table> </td> <td class="cls_frame"> <table> <tr> <td> <table class="cls_tbl_balls"> <tr class="cls_ball_row"> <td class="cls_ball1"> 5 </td> <td class="cls_ball2"> - </td> </tr> </table> </td> </tr> <tr> <td class="cls_framescore"> 32 </td> </tr> </table> </td> <td class="cls_frame"> <table> <tr> <td> <table class="cls_tbl_balls"> <tr class="cls_ball_row"> <td class="cls_ball1"> 4 </td> <td class="cls_ball2"> / </td> </tr> </table> </td> </tr> <tr> <td class="cls_framescore"> 49 </td> </tr> </table> </td> <td class="cls_frame"> <table> <tr> <td> <table class="cls_tbl_balls"> <tr class="cls_ball_row"> <td class="cls_ball1"> 7 </td> <td class="cls_ball2"> 1 </td> </tr> </table> </td> </tr> <tr> <td class="cls_framescore"> 57 </td> </tr> </table> </td> That is the gist of the table. One full table is in the uploaded files. Could you guys give pointers on what to do, ideas on what other modules to use? test1.html
  7. Thanks for the reply. Now I started to think, were there more games you tested, because I recall Luke mentioning only the Batman VR. Is the game selection so small? Maybe the PSVR might come out okay, if only it had as much good games as Vive and Rift have.
  8. What interests me, is when Colton and Nick had motion sickness, was it in a bright room or in a dark room? If in bright room, did dimming the lights help with the tracking issues, jitter and did they still get motion sick or not?
  9. Rocking Razer Deathadder, I think the 2014 edition, the one before they decided that glossy sides isn't right and put rubber grips on, wish they had done it sooner. That is moving around on the Steelseries XXL mousepad, I like to whip my mouse around a lot. Keyboard is in the laptop, Doing a PC build before the going back to school. And listening to your awesome videos on AKG K77 headphones.
  10. Well, currently I have a laptop, using the almighty GT 320M. But I swear, I was planning an upgrade this summer to desktop. Have planned i5-6400, 480GB SSD, 8/16GB RAM (TBD), S340 case with black and red, yes I am doing a black and red build. But I don't have any GPU reserved yet, because of all the new lineups, RX 480 was one of the ones I was considering. Clad to see AMD coming back and strong with their lineup, go AMD
  11. Not only I would use it to play games with, I would watch movies with that, like being in the cinema, wow, LG is cool.
  12. Not to say bad things about my mouse I have right now, but it's sensor seems a bit touchy and when not moving it, the cursor still moves on the screen. So I would really like a something like this, which must be good, when esporters are using it
  13. Username: -Veteran007- Videos I liked: https://www.vessel.com/videos/LCoY5zfFfdamn, that is cool, let's just wait for the 150TB one!! woohoo! https://www.vessel.com/videos/JYZEYDYx0Always like the build logs, yet again, good work
  14. You should next time make another episode on reselling them, to see who gets the most profit out of the system and the next series would be with the money you got from the sell. And make way more of these.
×