Posts for feos


1 2 271 272 273 439 440
Experienced Forum User, Published Author, Site Admin, Skilled player (1236)
Joined: 4/17/2010
Posts: 11270
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
The one that's specified in the batch.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Of course.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Since we don't have the lossless sources of them anymore, I dunno how to make an educated judgment about it. But looking at how gimp compared to crashjpeg with proper parameters, we might be able to save a few kilobytes over the published jpegs (while not losing quality), because it seems they were compressed with gimp already (praise Ilari).
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Did some real testings now. For games that make screenshots go over 45kb, it's hardly possible to get a jpeg with no visible loss under the site's limit. If it's not some exceptional case (like png being smaller than the best sub 45kb jpeg, or best jpeg being 40kb), it'd be best to just pick the first one that's below the limit, since in most cases there will already be compression artifacts there. However, to know which one fits best, you'd need to create jpegs with quality step of 1 (down to some 70). Here are the images that I would use for publication. Format: Game: quality / jpeg size in bytes. Comment PNG JPEG images Abe: 94 / 44,685. "0" at the monitor starts fading at lower qualities. F-Zero: 92 / 48,624. Artifacts at the road stripes are already present on the first sub 50kb jpeg. Pinball: 76 / 50,578 (woops). No comments. Luigi 1: 98 / 40,649. Artifacts appear around the ligntning if you go under 98, but 98 is already small enough. Luigi 2: 97 / 42,458. BG on the right gets blurred and blocked under 97. Crash: 94 / 47,341. Hard to see, but artifacts around Crash and on the sky. So here are the steps that I'd be using when making a publication screenshot for such a game:
    1. Check the compressed PNG size. If sub 45kb, publish it. If it's bigger: 2. Make a bunch of jpegs from 99 to 70, with quality step of 1. Use the above batch for that. 3. Throw away everything above 45kb. 4. Compare the best one of the rest with the source. If there are artifacts already, publish. Otherwise: 5. Go through all the smaller jpegs to see where artifacts start appearing. 6. Pick the one right before the first artifacted one. Publish.
EDIT: Well, the limit is actually 45kb. Whatever.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Download test.bat
Language: batch

:: Supposed to be ran by itself, no drag'n'dropping :: Hardcoded source name is 0.png, change it if you wish @echo off : start echo Type 0-99 for the desired quality echo Type r to roll by quality step echo Type q to quit set /p quality= if "%quality%"=="q" goto end if "%quality%"=="r" goto bystep goto normal : bystep echo Type the step size set /p step= echo Type 0-99 for where to stop set /p stop= set /a quality=99 : loop crushedjpeg 0.png %quality%.jpeg "%quality%" set /a quality-=%step% if %quality% GTR %stop% goto loop : normal crushedjpeg 0.png %quality%.jpeg "%quality%" goto start : end
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Yes, but I don't know the reason. Encoders webpage is irrelevant, since you're going to send it to your own channel anyway, right? Or to TASVideosChannel?
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Since we don't know what's preventing you from making it, there's nothing to add.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Right, my monitor is 1440x900.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
What's the pixel height for that tool then? Curious about how much I am missing.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
I'm ready.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Re-encoding. Too much messy tweaks in my script...
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
I dunno what "slower" is supposed to mean, but the HD youtube stream for publication must be HD. Yours is not. https://en.wikipedia.org/wiki/High-definition_video
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Does cjpeg have an option to set subsampling to 4:4:4? Without it no matter how I try, the loss is visible against GIMP, even if the file size/quality is greater than GIMP's.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
That says to me "crushedjpeg is not a command, program, or a batch file"... Yes, I'm running it just near crashed.exe.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Woah! Gotta spend some time on testing. But I already have a usage suggestion: can you make it work by drag'n'dropping the file on a program icon? For quality input, it could just open a command prompt and ask for user numbers. This way using it will take seconds, and tons of images could be processed in a row with various settings (which would be needed to determine the best quality to size ratio for a particular screenshot). Anty-Lemon: please put spaces between images, it unbreaks the page for narrow browser windows.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Not by me :D
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Ugh.. maybe I'm really tired or busy :( The level doesn't care about 2p or pacifust, but the boss has 15 less HP with 1p, and the second player when participating can not seem to speedup the fight at all! His bullets just won't register. This results in a faster boss fight when you're alone, given the same rate of shooting. Rejecting I guess. Damn.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Hey look what I found! http://code.google.com/p/microemu/downloads/list EDIT: Tested it a bit with Diamond rush (the game that got me started). Most of the versions don't work, but there are some that do, if you disable sound: 176x220 for sagem and sony, and 3 less powerful versions: 126x160 for sagem and lg, and 132x176 for siemens. The latter 3 seem to work with sound too, but lag as hell. Overall the emulator IS pretty bad, laggy and glitchy, so it won't make sense to make it rerecord (yes, it's the only open-source mobile emulator), but its cores can be examined and used whenever a normal emulator is started by someone. Note: it seems to support iOS and Android games too, but I haven't tried. EDIT: Shit, microemu was already linked here, haha. That link is long broken anyway. EDIT:
klmz wrote:
I doubt if this kind of emulators simulators can be "accurate as the real hardware" to any degree, since the "J2ME Virtual Machine" on which the code runs does not emulate any real hardware at all. Could we be satisfied with a theoric "Generic J2ME Gaming Platform"? EDIT: More specifically about accuracy.
With 9000 models of mobile phones that this platform is supposed to supply with game support, I doubt hardware-like accuracy is even a matter. We must replicate the platform, not the phone. It makes sense, since that platform was designed to be ran on anything, as long as the virtual machine is supported. I'd say as soon as it syncs with real games images, it's legit.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Is Genesis VDP supposed to be broken into tabs? It shows all the panels stack together for me, with only 2 showing up fully, 2 partially, and all the rest are offscreen.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Doesn't have savestates, but is open source, so if someone really wants............ EDIT: Eh, seems there are 2 kemulators, the mobile phone one's code not being too available.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Now as Spike removed the 2p branch (because there's no 1p counterpart yet), I guess we can remove the pacifist branch as well, since that is not a restriction time-wise, just a feature.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
He uploaded a primary downloadable to youtube, despite my PM to him where I told him not to do it, and to upload an HD, and despite the encoding batch that says:
Press 1 for Modern HQ MKV. Press 2 for Compatibility MP4. Press 3 for HD Stream. Press 4 for All of the above.
And all the relevant pages telling the difference between standard definition and high definition encodes. Also, resolutuon can be viewed via MPC, by going to File - Properties - Details - Video size.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
Facepalm.
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 (1236)
Joined: 4/17/2010
Posts: 11270
Location: RU
You should add a tag (not description) "yt:stretch=4:3" to that video. Wait, what resolution is the 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.
1 2 271 272 273 439 440