Username:
B
I
U
S
"
url
img
#
code
sup
sub
font
size
color
smiley
embarassed
thumbsup
happy
Huh?
Angry
Roll Eyes
Undecided
Lips Sealed
Kiss
Cry
Grin
Wink
Tongue
Shocked
Cheesy
Smiley
Sad
page  <- 1234567891011121314151617 -> <- 1 .. 3 .. 17 ->
--
--
List results:
Search options:
Use \ before commas in usernames
Edit history:
UraniumAnchor: 2011-01-19 06:14:06 pm
Not a walrus
The main reason I'm worried about this one is that we only got VG's stream on the dvd recorder. If the other ones are single runs then we can just do the DVD recorders.
I caught the tail end of the marathon.  Good stuff.

I don't know were else to ask this:

Any chance of releasing vids that only have the video of the gameplay?
wonder how many people want that ... i guess i could just go for broke and keep uploading to the archive item (or make a different item) until space runs out.
Edit history:
UraniumAnchor: 2011-01-19 09:44:18 pm
Not a walrus
NIDL is fully recovered. Uploading it to my webspace shortly.

Edit: Nate now has NIDL.
1-Up!
Quote from nate:
wonder how many people want that ... i guess i could just go for broke and keep uploading to the archive item (or make a different item) until space runs out.

Tbh anybody who just wants the game feed can watch it in the side-by-side.  I just think no point in doing extra work when you're already providing us with the game feed AND the commentary feed.
Quote from Flip:
Quote from nate:
wonder how many people want that ... i guess i could just go for broke and keep uploading to the archive item (or make a different item) until space runs out.

Tbh anybody who just wants the game feed can watch it in the side-by-side.  I just think no point in doing extra work when you're already providing us with the game feed AND the commentary feed.


Agreed. No point in putting a lot of extra effort in when people can just watch it on the side.
Edit history:
Samthe3rd: 2011-01-19 08:54:47 pm
Or they can download the raw feeds, then sync encode a gameplay-only vid. I just might do that (one gameplay and commentary vid at a time for my limited HD space).  If they turn out good I'll try to upload them to Internet Archive myself.  In fact, I can try and experiment, having the commentary video for the setup and the gameplay video for the actual runs.
updated the first post with new instructions.

segmented source files are going up here: http://marathon2011.quandra.org/segmented/
there are several missing runs. sometimes i combined runs into a single file in order to cut down on syncing work.

original files (direct from fme) are going up here: http://marathon2011.quandra.org/original/
1-Up!
Quote from nate:
segmented source files are going up here: http://marathon2011.quandra.org/segmented/
there are several missing runs. sometimes i combined runs into a single file in order to cut down on syncing work.


To clarify, the files are being uploaded currently?  Or they will be uploaded once they're finished?  Currently I only see c.portal, portal, and c.halo.
yep, currently being uploaded. i didn't want to make people wait the 24 hours or whatever it's going to be.
1-Up!
Ok nice.
Edit history:
UraniumAnchor: 2011-01-19 11:22:39 pm
UraniumAnchor: 2011-01-19 11:12:31 pm
UraniumAnchor: 2011-01-19 11:03:36 pm
Not a walrus
megamanx.avs
Code:
game=directshowsource("E:\SDA\Marathon2011\g.10.f4v.avi").trim(164474,164474+79916)
commentary=directshowsource("Y:\video\c.1.my.avi").trim(929818,929818+79916)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


megamanx2.avs
Code:
game=directshowsource("E:\SDA\Marathon2011\g.10.f4v.avi").trim(244390,244390+81600)
commentary=directshowsource("Y:\video\c.1.my.avi").trim(1009734,1009734+81600)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


megamanx4.avs
Code:
game=directshowsource("E:\SDA\Marathon2011\g.10.f4v.avi").trim(325990,420696)
commentary=directshowsource("Y:\video\c.1.my.avi").trim(1091334,1186040)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


snakerattlenandroll.avs - this loses audio sync near the end
Code:
game=directshowsource("E:\SDA\Marathon2011\g.10.f4v.avi").trim(420697,420697+32091)
commentary=directshowsource("Y:\video\c.1.my.avi").trim(1186041,1186041+32091)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


That's all I can get from g.10 because the rest of it is black video. Looks like FME crapped out halfway through level 10 in Snake, throwing off audio sync and screwing up every game after it.
ooh, so that's what happened there. ok, may need to get one or more runs off the dvd recorder there.
SS Any% FF2 GBA
Just a heads up (not that it really matters since you are making new game segments now), g.31.f4v.avi freezes the viedo with audio still going at 3:22:57 during Super Monkey Ball at Master 10
yep, all runs including and after monkey ball will have to be sourced elsewhere as well probably. thanks.
Edit history:
UraniumAnchor: 2011-01-20 12:27:12 am
UraniumAnchor: 2011-01-19 11:55:27 pm
UraniumAnchor: 2011-01-19 11:52:55 pm
Not a walrus
battletoads.avs
Code:
game=directshowsource("E:\SDA\Marathon2011\g.11.f4v.avi")
game=blankclip(game,length=10117)++game
commentary=directshowsource("Y:\video\c.1.my.avi").trim(1455980,1455980+game.framecount)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


Had to add the blank clip for padding. It might still be slightly off, since I had to sync the piano by ear.

edit: fixed duration

punchout.avs
Code:
game=directshowsource("E:\SDA\Marathon2011\g.12.f4v.avi").trim(0,55624)
game=blankclip(game,length=5202)++game
commentary=directshowsource("Y:\video\c.1.my.avi").trim(1518820,1518820+game.framecount)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


See above. Might need a slight tweak but it was hard to tell.

That's it for me tonight, need some sleep.
updated the first post with the list of runs we can't do without mike and trihex's dvd sources.
Not a walrus
Was there more than one NIDL run? Did what I sent you not cover everything?
sorry, totally forgot about that
Not a walrus
I realize it's late but c'mon man. Wink
i don't actually know what nidl is and i hadn't watched it until just now
Edit history:
Aktan: 2011-01-20 07:00:01 am
Okay, I took a look at c.2.flv and found the following.  The video is variable frame rate (which is normal for FLV) with a max frame rate of ~542.479542025521 FPS and a average frame rate of ~65.2656476779418 FPS.  While I muxed the video successfully into MKV, the audio seems to be missing frames and there is a desync due to it.  I think I have a solution though, if I extract the audio timecodes also.  The audio seems to be a constant bitrate, so I'm a little surprised VirtualDub complains about variable bitrate MP3.
Edit history:
DeliciousPi: 2011-01-20 08:24:59 pm
DeliciousPi: 2011-01-20 05:29:56 pm
DeliciousPi: 2011-01-20 05:12:31 pm
DeliciousPi: 2011-01-20 04:56:08 pm
Here's Excite Bike
Code:
game=avisource("C:\SDA\019_andrewg.avi").trim(12295-319,28351)
commentary=avisource("C:\SDA\019_c.andrewg.avi").trim(0,16245)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono,48000)))


Mario (Both Blind and Normal)
Code:
game=avisource("C:\SDA\019_andrewg.avi").trim(31685-3446,53000)
commentary=avisource("C:\SDA\019_c.andrewg.avi").trim(16261,41026)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono,48000)))


Mario 2
Code:
game=avisource("C:\SDA\019_andrewg.avi").trim(54065-487,81960)
commentary=avisource("C:\SDA\019_c.andrewg.avi").trim(41600,69625)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono,48000)))


Mario 3
Code:
game=avisource("C:\SDA\019_andrewg.avi").trim(82181-454,114112)
commentary=avisource("C:\SDA\019_c.andrewg.avi").trim(69748,102258)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono,48000)))


Super Mario World
Code:
game=avisource("C:\SDA\019_andrewg.avi").trim(116249-58,147370)
commentary=avisource("C:\SDA\019_c.andrewg.avi").trim(104210,135479)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono,48000)))


The andrewg game file has marble madness before excite bike, but the commentary starts right at excite bike; it's missing marble madness.
Edit history:
Eisenefaust: 2011-01-20 08:07:19 pm
Eisenefaust: 2011-01-20 03:29:48 pm
Eisenefaust: 2011-01-20 03:15:24 pm
Eisenefaust: 2011-01-20 02:54:24 pm
Eisenefaust: 2011-01-20 02:44:27 pm
Eisenefaust: 2011-01-20 02:43:27 pm
Eisenefaust: 2011-01-20 02:43:08 pm
Eisenefaust: 2011-01-20 02:25:58 pm
SS Any% FF2 GBA
Thexder Neo.avs
Code:
game=avisource("E:\Downloads\SDA\Marathon 2011\032_thexderneo.avi").trim(3454,3454+22770)
commentary=avisource("E:\Downloads\SDA\Marathon 2011\032_c.thexderneo.avi").trim(10876-131,10876+22770)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


Actraiser.avs
Code:
game=avisource("E:\Downloads\SDA\Marathon 2011\033_actraiser.avi").trim(33+1301,33+60520)
commentary=avisource("E:\Downloads\SDA\Marathon 2011\033_c.actraiser.avi").trim(17763+1301,17763+60520)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


Morrowind.avs
Code:
game=avisource("E:\Downloads\SDA\Marathon 2011\034_morrowind.avi").trim(4110,4122+29500)
commentary=avisource("E:\Downloads\SDA\Marathon 2011\034_c.morrowind.avi").trim(4000+3824,4000+3824+29500)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


Myst.avs
Code:
game=avisource("E:\Downloads\SDA\Marathon 2011\035_myst.avi").trim(1503,1503+4800)
commentary=avisource("E:\Downloads\SDA\Marathon 2011\035_c.myst.avi").trim(1,1+4800)
stackhorizontal(game,commentary)
audiodub(mergechannels(resampleaudio(game.converttomono, 48000), resampleaudio(commentary.converttomono, 48000)))


Thanks again guys for the great games. I need to get some other work done so that's all for me right now. I'll probably try and do some more a bit later.
Well I've successfully converted the FLV to MKV with no audio desync after feeding MKV the timecodes for audio also.  Now to get it working fine in Avisynth!