Joined: 2/26/2007
Posts: 1360
Location: Minnesota
I can't understand a thing flygon says. :(
adelikat wrote:
I very much agree with this post.
Bobmario511 wrote:
Forget party hats, Christmas tree hats all the way man.
adelikat
He/Him
Emulator Coder, Site Developer, Site Owner, Expert player (3599)
Joined: 11/3/2004
Posts: 4739
Location: Tennessee
Tommorrow morning, about 10:30 (Eastern time zone) I'll be doing a live streaming tutorial on finding RAM addresses. I'll be recording the broadcast too, hopefully it will be good enough for an official tutorial video for the site.
It's hard to look this good. My TAS projects
Editor, Skilled player (1405)
Joined: 3/31/2010
Posts: 2086
Looking forward to this. I had a hard time finding RAM adresses.
Tompa
Any
Editor, Expert player (2142)
Joined: 8/15/2005
Posts: 1934
Location: Mullsjö, Sweden
Banned User, Former player
Joined: 3/10/2004
Posts: 7698
Location: Finland
That was actually quite interesting stuff. I think these types of tutorials would be good in text (because then they would be easier to find and understand to people who don't necessarily understand spoken English so well).
adelikat
He/Him
Emulator Coder, Site Developer, Site Owner, Expert player (3599)
Joined: 11/3/2004
Posts: 4739
Location: Tennessee
http://www.ustream.tv/myvideos/1/8547343 Recorded that live stream in hopes that it would be a helpful tutorial for TASers. Not the best nor most exciting commentary but I hope its useful. I hope to do some more, particularly with more basic stuff and maybe have a collection of tutorials.
It's hard to look this good. My TAS projects
P.JBoy
Any
Editor
Joined: 3/25/2006
Posts: 850
Location: stuck in Pandora's box HELLPP!!!
That's a long video, I advise splitting it into sections that are well labelled. That said, I might end up doing one for VBA or snes9x I reckon
Active player (417)
Joined: 8/22/2008
Posts: 301
Location: Brazil
Thanks master adelikat for archiving the tutorial for us TASers.
Skilled player (1308)
Joined: 9/7/2007
Posts: 1354
Location: U.S.
http://tasvideos.org/LiveStreams.html Anyone affiliated with TASVideos, List your TAS Streams and I will put it on here for ease of navagation.
adelikat
He/Him
Emulator Coder, Site Developer, Site Owner, Expert player (3599)
Joined: 11/3/2004
Posts: 4739
Location: Tennessee
I am adelikat and I approve this message. Good job Sonikkustar, hopefully this might grow into a more dynamic streaming situation. However, have we looked into whether or not ustream itself has a similar feature? Some kind of channel where all tas live streams could be grouped?
It's hard to look this good. My TAS projects
Rolanmen1
He/Him
Experienced player (752)
Joined: 2/20/2009
Posts: 569
Location: Dominican Republic
Add me in: http://www.ustream.tv/channel/live-tasing Also, SDA have a site wich tells who are online of a number of streamers, can this be done here?
adelikat
He/Him
Emulator Coder, Site Developer, Site Owner, Expert player (3599)
Joined: 11/3/2004
Posts: 4739
Location: Tennessee
That would be awesome to have a dynamic page like that. I would feature it on the main tabs or front page or something. I'd be curious how they are making that page.
It's hard to look this good. My TAS projects
Joined: 10/20/2006
Posts: 1248
adelikat wrote:
http://www.ustream.tv/myvideos/1/8547343 Recorded that live stream in hopes that it would be a helpful tutorial for TASers. Not the best nor most exciting commentary but I hope its useful. I hope to do some more, particularly with more basic stuff and maybe have a collection of tutorials.
For the hitpoints it would have been nice if you had mentioned that on some rare games, it won't subtract hitpoints, but count the times you've hit the enemy instead. Also that the y-address can be either 0 at the top or 0 at bottom or that speed doesn't get negative with every game when running to the left. Those kind of things can often cause some confusion. I would go comment on ustream, but I don't want to sign up there. :X
Editor, Expert player (2315)
Joined: 5/15/2007
Posts: 3856
Location: Germany
When I try to livestream recently, it just seems to be frozen. Also, when I watch others streaming and they run an emulator, it keeps lagging (it plays 3 seconds, then lags 5 seconds). But when they only stream their browser or nothing special the stream is fine.
Former player
Joined: 8/31/2009
Posts: 236
You guys TAS so weirdly. o_O 2.0.3's TASEdit is superior. ;D EDIT: I always thought your name was "A Deli Kat". My life has been changed. For today.
Skilled player (1637)
Joined: 11/15/2004
Posts: 2202
Location: Killjoy
testing: works, see the thread in Sites!
Sage advice from a friend of Jim: So put your tinfoil hat back in the closet, open your eyes to the truth, and realize that the government is in fact causing austismal cancer with it's 9/11 fluoride vaccinations of your water supply.
NitroGenesis
He/Him
Editor, Experienced player (551)
Joined: 12/24/2009
Posts: 1873
Check out my ustream at http://www.ustream.tv/channel/nitro-s-tas-land I did a live TASing segment of Gargoyles Quest 2 earlier and will do more!
YoungJ1997lol wrote:
Normally i would say Yes, but thennI thought "its not the same hack" so ill stick with meh.
Post subject: Improving streaming/commentaries
Skilled player (1637)
Joined: 11/15/2004
Posts: 2202
Location: Killjoy
So, I did a test commentary for a couple of my runs, and found it a fairly enjoyable experience. I decided to see what kind of improvements I could do for streaming the first is my setup to include the emulator audio, Skype, and my microphone. There are a few options to do this, however, this is the solution that worked for me. My Via Audio Deck (Onboard soundcard software) has the ability to create, in windows, a playback channel and a recording channel. Thus, I unmute my mic (so it can be heard through the speakers) and run the line-out through a standard 3/4" splitter, and run one side to my speakers, and the other directly back into the line-in port. Now, to stop feedback, the line-in is muted, however, it is still fed to the recording channel. Thus, everything coming through my speakers is heard in ustream. Also, I felt that the ability to draw on the screen, like a sports-commentator, would be beneficial for explaining parts of the runs. Thus, I whipped up a Lua script, and will be using this to do future commentaries. This one was built for gens, but could be easily adapted to other platforms. Download Madden.lua
Language: lua

TempBuf ={}; ScreenBuffer = {}; for i = 1,120,1 do NewBuf = {}; for j = 1,160,1 do NewBuf[j] = 0; end; ScreenBuffer[i] = NewBuf; end; --***************************************************************************** function press(button) --***************************************************************************** -- Checks if a button is pressed. -- The tables it accesses should be obvious in the next line. -- best function EVER, written by FatRatKnight if keys[button] and not last_keys[button] then return true end return false end pause_mode = false; cleared = true; PM = savestate.create(); while true do keys = input.get(); if keys.leftclick then cleared = false; xm = math.max(1,math.floor(keys.xmouse/2)); ym = math.max(1,math.floor(keys.ymouse/2)); TempBuf = ScreenBuffer[ym]; TempBuf[xm] = 1; ScreenBuffer[ym] = TempBuf; end; if keys.rightclick then end; if press("C") then cleared =true; for i = 1,120,1 do TempBuf = ScreenBuffer[i]; for j = 1,160,1 do TempBuf[j] = 0; end; ScreenBuffer[i] = TempBuf; end; end; if press("space") then pause_mode = not pause_mode; if pause_mode then savestate.save(PM); end; end; last_keys = keys; if pause_mode then savestate.load(PM); sound.clear(); end; gens.frameadvance(); if not cleared then for i = 1,120,1 do TempBuf = ScreenBuffer[i]; for j = 1,160,1 do if TempBuf[j] == 1 then gui.drawbox((j-1)*2+1,(i-1)*2+1,(j-1)*2+2,(i-1)*2+2,'yellow'); end; end; end; end; end;
This script has a psuedo-pause function, that allows you to draw on the screen, while the game appears to be paused. As most lua implementations don't have sound.clear(), there will be buzzing noises during these pauses. Here is an example So, I'm think I will do a full, real commentary of Shining Force 1 soon.
Sage advice from a friend of Jim: So put your tinfoil hat back in the closet, open your eyes to the truth, and realize that the government is in fact causing austismal cancer with it's 9/11 fluoride vaccinations of your water supply.
Skilled player (1308)
Joined: 9/7/2007
Posts: 1354
Location: U.S.
Woah, nice lua script DarkKobold. I think I will use this too. :)
Banned User
Joined: 6/18/2010
Posts: 183
Commentaries with football announcer arrows sounds awesome! Is there a way you can get the stream to be permanently recorded so we don't have to watch it live?
Skilled player (1308)
Joined: 9/7/2007
Posts: 1354
Location: U.S.
There are several streams already recorded. Take a look through the channels.
NitroGenesis
He/Him
Editor, Experienced player (551)
Joined: 12/24/2009
Posts: 1873
Pointless Boy wrote:
Commentaries with football announcer arrows sounds awesome! Is there a way you can get the stream to be permanently recorded so we don't have to watch it live?
Simple. On the Broadcast page, you click Broadcast, then Record. Ta-da.
YoungJ1997lol wrote:
Normally i would say Yes, but thennI thought "its not the same hack" so ill stick with meh.
Skilled player (1308)
Joined: 9/7/2007
Posts: 1354
Location: U.S.
[comment removed] Its DarkKobold's turn: Link to video Go view it!
Skilled player (1308)
Joined: 9/7/2007
Posts: 1354
Location: U.S.
So is this fad finally over now?
Skilled player (1637)
Joined: 11/15/2004
Posts: 2202
Location: Killjoy
From what I found, people just don't like watching TASes in progress. I advertise in #IRC, get maybe two viewers, and those viewers are not actually following. Sort of not worth the effort to set everything up, if no one is going to watch SDA's streams are fun to watch because you are watching actual speedruns, with the possibility of seeing death, increasing the interest. In progress TASes, on the other hand, are slow, repetitive, and boring if you aren't involved in the planning or execution. Really, I'd love for someone to disagree with me.
Sage advice from a friend of Jim: So put your tinfoil hat back in the closet, open your eyes to the truth, and realize that the government is in fact causing austismal cancer with it's 9/11 fluoride vaccinations of your water supply.