AnimeSuki Forums

Register Forum Rules FAQ Community Today's Posts Search

Go Back   AnimeSuki Forum > Anime Related Topics > General Anime > Fansub Groups

Notices

Reply
 
Thread Tools
Old 2008-03-09, 12:59   Link #81
comatose
Senior Member
 
Join Date: Dec 2007
Quote:
Originally Posted by Dark Shikari View Post
If a hardware player "didn't support non-mod16", it couldn't play 1080p , because 1920x1080 isn't mod16 either.
But are they encoded as 1080p?

I haven't gotten my hands on a bluray/hddvd iso yet, so I wouldn't know, but I've been thinking that they may have been resized to 1920x1088 and encoded, and then resized in the player to 1920x1080.


Anyway, is there a flag for the AVI container that lets you set the AR/resolution?
For the most part, I use 704x400 only with XviD encodes, which I make for the people who want to play the video on hardware players or have lesser computers... so, does AVI have a flag like this as well?

If I understood correctly, it doesn't, but I need to make sure.
comatose is offline   Reply With Quote
Old 2008-03-09, 14:14   Link #82
Dark Shikari
x264 Developer
 
 
Join Date: Feb 2008
Quote:
Originally Posted by comatose View Post
But are they encoded as 1080p?

I haven't gotten my hands on a bluray/hddvd iso yet, so I wouldn't know, but I've been thinking that they may have been resized to 1920x1088 and encoded, and then resized in the player to 1920x1080.
That's exactly what "encoding 1080p" means. If you don't encode mod16, the encoder pads it with a few lines of appropriate color pixels, and leaves a flag in the stream to crop it on playback.
Quote:
Originally Posted by comatose View Post
Anyway, is there a flag for the AVI container that lets you set the AR/resolution?
For the most part, I use 704x400 only with XviD encodes, which I make for the people who want to play the video on hardware players or have lesser computers... so, does AVI have a flag like this as well?
Yes, but basically nothing supports it.
Dark Shikari is offline   Reply With Quote
Old 2008-03-09, 15:53   Link #83
TheFluff
Excessively jovial fellow
 
 
Join Date: Dec 2005
Location: ISDB-T
Age: 37
It's also possible, even with ASP codecs like XviD, to set a PAR flag in the bitstream. That should work in most places, I would think (but I've never tested it extensively).
__________________
| ffmpegsource
17:43:13 <~deculture> Also, TheFluff, you are so fucking slowpoke.jpg that people think we dropped the DVD's.
17:43:16 <~deculture> nice job, fag!

01:04:41 < Plorkyeran> it was annoying to typeset so it should be annoying to read
TheFluff is offline   Reply With Quote
Old 2008-03-10, 19:22   Link #84
technomo12
Wise Otaku Seeker
 
 
Join Date: Feb 2008
Location: Philippines
Age: 34
it differs by a 6 pixel to the square power

thats all hmm maybe???

Last edited by technomo12; 2008-03-10 at 20:32.
technomo12 is offline   Reply With Quote
Old 2008-08-30, 14:27   Link #85
guest0815
Member
 
Join Date: Aug 2008
Hi, I'm noob and have some noob questions. I hope it's not too much of a bother.

I got a recent japanese capture in 1280x720. No letterboxing or anything so the actual picture's 16:9. I want to try a resize to 704x400 to learn resizing, which brings me to the first question.

Where does that 704x396/400 resolution come from? Why not use 768x432 and be mod16 without distortion or cropping?

So, I understood it like that:

I push the height from 720 down to 396 keeping the width at height*width/height which gets me 704x396. Then I change the height to the next mod16 711.11x400 and crop the excess pixel of the width down to 704 again. I've got a few questions regarding that.

What about the fractional numbers? Will 0,5 be displayed as 0 and 0,6 as 1 and I have to base my cropping on the rounded values? So I'd have to crop 7 pix to get from 711 to 704?

And what would I enter into a resizing avisynth script that's only accepting integers? Would I round down a resolution of xxx,5 pixel myself and introduce a small distortion?

And my last question. I used VD's resize filter to scale 704x396 to 711.11x400. I only constrained it to 16:9 and didn't use any other options like codec friendly sizings or boxing/cropping. Hitting ok the filter output reads 711x400.
BUT if I load the same file into VD through a script using nothing but AVISource ("C:\file.avi") and repeat the exact same steps the filter output will read 710x400 O_O

Any ideas?
I wanted to take the advice and concentrate on scripts but avisynth potentially pushing my error range of 0,5pix (?) up to a max of 1,5 is disheartening T_T

Thanks for reading.

Last edited by guest0815; 2008-08-30 at 15:37.
guest0815 is offline   Reply With Quote
Old 2008-08-30, 15:21   Link #86
Dark Shikari
x264 Developer
 
 
Join Date: Feb 2008
Quote:
Originally Posted by guest0815 View Post
Hi, I'm noob and have some noob questions. I hope it's not too much of a bother.

I got a recent japanese capture in 1280x720. No letterboxing or anything so the actual picture's 16:9. I want to try resizing to 704x400 to learn resizing, which brings me to the first question.

Where does that 704x396/400 resolution come from? Why not use 768x432 and be mod16 without distortion or cropping?
Because in the past, most sources have been DVD or television or similar, and therefore a native resolution of 720x480 or similar magnitude, and upscaling is bad.
Dark Shikari is offline   Reply With Quote
Old 2008-08-30, 16:52   Link #87
TheFluff
Excessively jovial fellow
 
 
Join Date: Dec 2005
Location: ISDB-T
Age: 37
Quote:
Originally Posted by guest0815 View Post
What about the fractional numbers? Will 0,5 be displayed as 0 and 0,6 as 1 and I have to base my cropping on the rounded values? So I'd have to crop 7 pix to get from 711 to 704?
you cannot crop to fractional pixels
__________________
| ffmpegsource
17:43:13 <~deculture> Also, TheFluff, you are so fucking slowpoke.jpg that people think we dropped the DVD's.
17:43:16 <~deculture> nice job, fag!

01:04:41 < Plorkyeran> it was annoying to typeset so it should be annoying to read
TheFluff is offline   Reply With Quote
Old 2008-08-31, 06:00   Link #88
edogawaconan
Hi
*Fansubber
 
 
Join Date: Aug 2006
Send a message via MSN to edogawaconan Send a message via Yahoo to edogawaconan
Quote:
Originally Posted by guest0815 View Post
Any ideas?
I wanted to take the advice and concentrate on scripts but avisynth potentially pushing my error range of 0,5pix (?) up to a max of 1,5 is disheartening T_T
I'm amazed that you can tell the difference. I can't detect any AR errors at less than 10px.
__________________
edogawaconan is offline   Reply With Quote
Old 2008-08-31, 07:00   Link #89
guest0815
Member
 
Join Date: Aug 2008
Haha, of course I can't. It just makes it seem even more redundant to correct for a mere 4 pixel (396-400) when it's not even accurate. Probably just be a problem with the vdgui though.
guest0815 is offline   Reply With Quote
Old 2008-09-24, 14:34   Link #90
jongu
To Ride On Little Lolis
 
Join Date: Feb 2004
Location: US
We need odd numbers like Mod17 or Mod19 (Prime number, even better).
People nowadays getting too fun with the upscaling that they won't be satisfied with multiples of 4 anymore.
jongu is offline   Reply With Quote
Old 2008-09-25, 09:04   Link #91
comatose
Senior Member
 
Join Date: Dec 2007
Quote:
That's exactly what "encoding 1080p" means. If you don't encode mod16, the encoder pads it with a few lines of appropriate color pixels, and leaves a flag in the stream to crop it on playback.
Well, this is a very late reply, but actually it isn't.

What I said is maybe it would be better to *resize* (not pad) to a mod16 res, and then on playback, resize again to the appropriate resolution (instead of cropping).
comatose is offline   Reply With Quote
Old 2008-09-25, 10:16   Link #92
Dark Shikari
x264 Developer
 
 
Join Date: Feb 2008
Quote:
Originally Posted by comatose View Post
Well, this is a very late reply, but actually it isn't.

What I said is maybe it would be better to *resize* (not pad) to a mod16 res, and then on playback, resize again to the appropriate resolution (instead of cropping).
Resizing unnecessarily for a few pixels is stupid, since resizing in any direction always introduces some form of aliasing and loses some detail.
Dark Shikari is offline   Reply With Quote
Old 2008-09-25, 14:41   Link #93
comatose
Senior Member
 
Join Date: Dec 2007
I figured it would be more efficient since everybody always say you should use those extra pixels instead of leave it at a non-mod16 res...

Besides, resizing up so little and then back down to the original res shouldn't introduce any visible artifacts...
comatose is offline   Reply With Quote
Old 2008-10-04, 15:09   Link #94
Littm
ちょうど楽しみなさい
*IT Support
 
 
Join Date: Feb 2008
Location: Somewhere...
Age: 35
Hm, if we're talking here about resolution now, than I'll ask one interesting question - is there a real reason for fansubbers to making upscales (for example, from 740x480 to 1280x720) ?
Littm is offline   Reply With Quote
Old 2008-10-04, 15:18   Link #95
martino
makes no files now
 
 
Join Date: May 2006
No, none.

<spacefill>
__________________
"Light and shadow don't battle each other, because they're two sides of the same coin"
martino is offline   Reply With Quote
Old 2008-10-07, 08:15   Link #96
Koroku
formerly JKaizer
*Fansubber
 
 
Join Date: Dec 2005
Age: 35
Send a message via AIM to Koroku Send a message via MSN to Koroku Send a message via Yahoo to Koroku
Most fansubbers seem to think that if the raw is 1280x720, then of course the source must be as well.


Which of course, it isn't. :>
__________________
.~.
Koroku is offline   Reply With Quote
Old 2008-10-07, 08:31   Link #97
edogawaconan
Hi
*Fansubber
 
 
Join Date: Aug 2006
Send a message via MSN to edogawaconan Send a message via Yahoo to edogawaconan
Quote:
Originally Posted by Koroku View Post
Most fansubbers seem to think that if the raw is 1280x720, then of course the source must be as well.


Which of course, it isn't. :>
correction: it isn't always the case
__________________
edogawaconan is offline   Reply With Quote
Old 2008-10-07, 09:16   Link #98
TheFluff
Excessively jovial fellow
 
 
Join Date: Dec 2005
Location: ISDB-T
Age: 37
the broadcasts are almost always 1440x1080, obviously we must release everything as 1080p
__________________
| ffmpegsource
17:43:13 <~deculture> Also, TheFluff, you are so fucking slowpoke.jpg that people think we dropped the DVD's.
17:43:16 <~deculture> nice job, fag!

01:04:41 < Plorkyeran> it was annoying to typeset so it should be annoying to read
TheFluff is offline   Reply With Quote
Old 2008-10-17, 08:05   Link #99
DmonHiro
Senior Member
 
 
Join Date: Oct 2006
Location: Romania
Age: 37
Send a message via Yahoo to DmonHiro
Quote:
Originally Posted by Littm View Post
Hm, if we're talking here about resolution now, than I'll ask one interesting question - is there a real reason for fansubbers to making upscales (for example, from 740x480 to 1280x720) ?
Not really. Fansubbers don't ACTUALLY do the upscaling themselves (I belive), the raws are already upscaled. Itazuka Na Kiss, for example, had upscaled 1200x720 raws. Subbers could either use them like that, or downscale them to 700x400.

Now, I belive you are talking about upscaling DVDs, since you said 740x480. The answer is yes, sometimes there is a reason. For example, the upscales of Kodomo No Jikan (don't remember WHAT group) were actually better then the normal resolution ones. Weather that is because of the upscaling or the fact that all the other raws were not ecoded very well, I do not know. Other times, you end up with the exact same quality, only with a higher resolution, like some Baccano! raws that were around a couple of months ago. Most of the times, however, you end up with bloated pixels, and lost details. So it's really a matter of the original DVDs
DmonHiro is offline   Reply With Quote
Old 2008-10-17, 08:14   Link #100
checkers
Part 8
*IT Support
 
 
Join Date: Jul 2006
Location: Western Australia
Age: 35
Send a message via MSN to checkers
you can't add quality by upscaling except in two ways:
1. softsubs overlaid on the video are cripser -- if you even think super crisp subs look objectively better (I don't)
2. you can warpsharp / smooth lines better -- same caveat as above.
checkers is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 02:34.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
We use Silk.