Posts for feos

1 2
436 437 438 439 440 441
Post subject: HD encode with INPUT display
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
HD encode with INPUT display: Part 1 Part 2 Part 3 Playlist AT LAST!!!
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Flygon wrote:
Put ChangeFPS at the end of the script, so that no timing adjustments are required.
Then we will get unnecessary frames processed by x264. I prefer to cut them out before compressing/resizing. Though, my last encode was done with that: http://pastebin.com/raw.php?i=KBv5de3j
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
I had an idea which seemed interesting to Flygon & sgrunt. It's about simplier timing for subtitles in AviSynth script.
a = AVISource("movie.avi") 
b = ImageSource(file="logo.png", start=0, end=119, fps=a.FrameRate).ConvertToRGB24() 
c = BlankClip(b, audio_rate=a.AudioRate, channels=a.AudioChannels) 
d = AudioDub(b, c).Lanczos4Resize(c.width, c.height).AssumeFPS(a.FrameRateNumerator, a.FrameRateDenominator)

#Specify 'subff' as the first frame for your subtitles. It is better to set the first frame of the first level here. 
subff = 100 
last = d + a 

Subtitle("Super Example Bros. by Heavy Weapons Guy\nPlaying time: 4:48.07\nRerecord count: 9001", y=165, align=8, first_frame=subff, last_frame=subff+300, size=13.0, text_color=$30FFFFFF, halo_color=$00000000, lsp=1) 

Subtitle("This is a tool-assisted recording.\nFor details, visit http://TASVideos.org/", y=180, align=8, first_frame=subff+301, last_frame=subff+601, size=15.0, text_color=$30FFFFFF, halo_color=$00000000, lsp=1) 

ConvertToYV24(chromaresample="point", matrix="PC.601") 
ConvertToYV12(chromaresample="lanczos4", matrix="PC.601")
If we Change FPS, timing must be fixed acourding to that: a.FrameRate * 5 must be plused instead of defined 300 frames for 60 fps. Arguable example:
a = AVISource("movie.avi").ChangeFPS(25) 
b = ImageSource(file="logo.png", start=0, end=119, fps=a.FrameRate).ConvertToRGB24() 
c = BlankClip(b, audio_rate=a.AudioRate, channels=a.AudioChannels) 
d = AudioDub(b, c).Lanczos4Resize(c.width, c.height).AssumeFPS(a.FrameRateNumerator, a.FrameRateDenominator)

#Specify 'subf1' as the first frame for your subtitles. If is better to set the first frame of the first level here. 
subf1 = 100 
subf2 = a.FrameRate * 5 
last = d + a 

Subtitle("Super Example Bros. by Heavy Weapons Guy\nPlaying time: 4:48.07\nRerecord count: 9001", y=165, align=8, first_frame=subf1, last_frame=subf1+subf2, size=13.0, text_color=$30FFFFFF, halo_color=$00000000, lsp=1) 

Subtitle("This is a tool-assisted recording.\nFor details, visit http://TASVideos.org/", y=180, align=8, first_frame=subf1+subf2+1, last_frame=subf1+subf2+subf2+1, size=15.0, text_color=$30FFFFFF, halo_color=$00000000, lsp=1) 

ConvertToYV24(chromaresample="point", matrix="PC.601") 
ConvertToYV12(chromaresample="lanczos4", matrix="PC.601")
Example: http://www.youtube.com/watch?v=BYCl09zEljw
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
It was entertaining also about 3 hours before watching this movie. And all because I RICH! RICH OR DIE!!!
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Processing streaming SD encode.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
LOL, the subs look even more crappy than the game itself. PLZ, don't make them transparent all the time.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
22:29 <mmarks> HD encode already <mmarks> and <mmarks> already for publish 22:30 <feos> mmarks, native english speaker? 22:31 <mmarks> ? 22:33 <feos> mmarks, is english your native language? 22:34 <mmarks> feos, no <scrimpy> english as a native language is for wusses <scrimpy> REAL MEN SPEAK RUSSIAN <adelikat> real men speak american <adelikat> and only american 22:36 <Mothrayas> real men speak whatever the fuck they feel like speaking <Krabbe> that or german <scrimpy> German isn't for real men <scrimpy> it's for gods <scrimpy> isn't that right, mugg? <ALAKTORN> real men speak Japanese <ALAKTORN> もちろんだ <Krabbe> "hai" <Ilari> ALAKTORN: That script does not have line 51 nor it refers to 'arg' in any way. <ALAKTORN> lmao <Krabbe> real men play Tomb Raider - Anniversary <zeromus> just ask yourself: what does chuck norris speak? 22:37 <Krabbe> oh please, forget Chuck Norris. <Krabbe> He doesn't have to speak <zeromus> he speaks, but after he breaks your neck youre in no condition to hear which language he quips in 22:38 <Krabbe> in soviet russia, neck breaks Chuck Norris <adelikat> then it is settled <ALAKTORN> lol <adelikat> real men don't speak 22:44 <feos> scrimpy REAL MEN SPEAK RUSSIAN <feos> LOL. Я реальный чел <feos> so? <scrimpy> I was just joking, of course <scrimpy> Real Men speak Polish <feos> ahaha 22:45 <feos> u trolll mne <feos> me
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
May it depend from HD?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
nfq, create several ones with static picture & lowest quality to test. We don't need more than 3 hours, I believe.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Congratulations! Your account is now enabled for uploads longer than 15 minutes. Click the Upload button below to select a video.
Testing...
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Okay, if it's the deal now, hard subs will be in my next encode.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
HD encode (with good sound) Playlist Part 1 Part 2 Part 3 Single Segment movie.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Kuwaga has broken the page?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Noob Irdoh wrote:
dukhsan wrote:
"dude if this is what happens when megaman saves the world, maybe wily isn't so bad"
I think this comment should be featured in the TAS description.
I double that!
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Link to conclusion about all tests: http://tasvideos.org/forum/viewtopic.php?p=228842#228842 Tests themselves can be read above. Also, this is probably the first run which abuses the LAG (and only then the game itself)?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
ALAKTORN, agree.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Am I right that this is a proper "Glitched" run? The common MM is rather glitchy too, of cource, but when one skips levels, bosses, other things absolutely necessary to beat the game in reality - then it is namely Glitched. Like Super Metroid, or whatever appurtenant to that branch. No?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Nuff said!
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Marcokarty Women's brain
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
Ooooookay! Check that out: Part 1 Part 2 Playlist Source code
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1238)
Joined: 4/17/2010
Posts: 11304
Location: RU
HD encode: Part 1 Part 2 Playlist
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
1 2
436 437 438 439 440 441