What's your prefered resolution?

General discussion of Anime Music Videos
Locked
User avatar
TEKnician
Joined: Thu Mar 04, 2010 4:40 pm
Status: Not reading the spoilers or manga
Location: Smack in the middle of the Pacific Ocean
Org Profile

What's your prefered resolution?

Post by TEKnician » Thu Aug 25, 2011 12:15 pm

I'm converting my anime DVDs to 720x480. Is there a preferred resolution that you guys use other than that?
Almost as hard as fighting a Holy Paladin.

User avatar
l33tmeatwad
Joined: Wed Feb 16, 2005 3:22 pm
Location: Christiansburg, VA
Contact:
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by l33tmeatwad » Thu Aug 25, 2011 1:46 pm

After properly removing the interlacing I like to use 720x540, which is true 4:3 without having to reduce the width resolution, or I use 848x480 if it's widescreen. I use that simply for the main cuts, which I do in AviSynth. Once I'm ready to add effects I will carefully upscale to 720p (either 960x720 or 1280x720) for use in After Effects.
Software & Guides: AMVpack | AMV 101 | AviSynth 101 | VapourSynth 101
PixelBlended Studios: Website | Twitter | YouTube

User avatar
Kireblue
Forum Admin
Joined: Tue Mar 06, 2007 10:44 pm
Location: Atlanta, Georgia
Contact:
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by Kireblue » Thu Aug 25, 2011 2:57 pm

For 16:9 footage, I always use 864x480.

User avatar
Nya-chan Production
The :< point of view
Joined: Wed Nov 15, 2006 11:21 am
Status: White bracelet
Location: Ward 7F
Contact:
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by Nya-chan Production » Thu Aug 25, 2011 3:43 pm

The_TEKnician wrote:I'm converting my anime DVDs to 720x480. Is there a preferred resolution that you guys use other than that?
The_TEKnician wrote:converting my anime DVDs to 720x480.
The_TEKnician wrote:720x480
Image
Image

User avatar
BasharOfTheAges
Just zis guy, you know?
Joined: Tue Sep 14, 2004 11:32 pm
Status: Breathing
Location: Merrimack, NH
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by BasharOfTheAges » Thu Aug 25, 2011 4:44 pm

Your cruise control is stuck on. I'd have it looked at.
Anime Boston Fan Creations Coordinator (2019-2023)
Anime Boston Fan Creations Staff (2016-2018)
Another Anime Convention AMV Contest Coordinator 2008-2016
| | |

User avatar
Castor Troy
Ryan Molina, A.C.E
Joined: Tue Jan 16, 2001 8:45 pm
Status: Retired from AMVs
Location: California
Contact:
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by Castor Troy » Thu Aug 25, 2011 4:57 pm

A peaceful one...
"You're ignoring everything, except what you want to hear.." - jbone

User avatar
8bit_samurai
Hmm...
Joined: Wed May 17, 2006 1:47 pm
Location: Alaska
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by 8bit_samurai » Thu Aug 25, 2011 9:05 pm

320x244
Under Construction

User avatar
Phantasmagoriat
Joined: Mon Feb 06, 2006 11:26 pm
Status: ☁SteamPunked≈☂
Contact:
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by Phantasmagoriat » Fri Aug 26, 2011 3:10 am

Just so we're all aware, DVDs are peculiar in the sense that they start out as 720x480(NTSC) or 720x576(PAL) but stretch during playback to their respective AR (Aspect Ratio). This is how all DVD's with a common resolution of 720x480 can be both 4:3 or 16:9-- they just stretch to 720x540 or ~854x480 during playback.

Code: Select all

Aspect Ratio (AR) =
            = WidthxHeight
            = Width/Height
            = Width:Height 

   =  1280x720       =   720x540       =   720x480
   =  1280/720       =   720/540       =   720/480
   =  1280:720       =   720:540       =   720:480
   =    16:9         =     4:3         =     3:2
   =    16/9         =     4/3         =     3/2
   =   1.777...      =   1.333...      =    1.500
   = 'WideScreen'    = 'FullScreen'    =   'Wrong'

   =   640x360       =   640x480
   =   768x432       =   720x540
   =  ~848x480*      =   848x636
   =  1280x720       =   960x720
         etc...      =     etc...
When making an amv, you need to compensate for this, either by
  • 1.) Resizing your footage, or
    2.) Making it Stretch during playback by setting an AR flag in the final encoding stage.
You can leave it at 720x480 if you know how to set your AR flag (simple with Zarx264)... and you know what you are doing-- actually you might even get better quality since neither the height or width is being altered, however I don't recommend doing so since it could make things more complicated when you add your own text/effects that will get warped when your footage is stretched during playback. It also leaves the door open for more errors... so I don't really recommend 'Anamorphic' encoding. Actually, I even suspect it can look worse in some players that aren't good at resizing because resizing is not symmetrical vertically and horizontally... which could possibly lead to aliasing (jagged lines) during playback, and might look worse than a lower resolution that uses square pixels (albeit less sharp).

So, the next best thing is to resize either your height or width (but not both) until your video matches the correct Aspect Ratio. That way your vertical or horizontal resolution is unaltered so you don't lose quality in both dimensions. And if you want to be traditional, try to use mod16 values (numbers divisible by 16)... which isn't really necessary any more (1080p anyone?), but could theoretically make the computing more efficient. *So, these are the guiding principals behind using 848x480 for 16:9 footage (720x480-->848x480) which if you look closely isn't actually 16:9 (848/480=1.7666...) but it's close enough while not altering the height and still being mod16 ... so it is commonly used... Of course this minor upscale will increase your file size, but that shouldn't be a problem these days with better compression methods, and improving internet speeds.

So when picking a resolution, you'll want Minimal Resizing from the original, Correct Aspect Ratio, and (maybe Mod16 Values):

FullScreen - 4:3 - 1.333...
640x480 (1.333)
720x540 (1.333)
960x720 (1.333)
etc...

WideScreen - 16:9 - 1.777...
640x360 (1.777)
720x400 (1.800)
768x432 (1.777)
848x480 (1.766)
1024x576 (1.777)
1280x720 (1.777)
etc...

You can get creative with your crop values too... like if you take 720x480 then crop(8,0,-8,-0), you can resize to 704x396 without changing your horizontal resolution, and you still hit the target of 1.777; and the real advantage here is your file sizes will be much, much smaller-- which is nice if you just want to do a quick project. Or crop off some extra pixels from the top/bottom to give your video a more cinematic feel (and have smaller file sizes as a bonus).

Of course... if you take into account upscaling, most of this becomes irrelevant. And if you really want to get picky, you'd have to take into account how your crop/resize values relate to the Active Picture Region... which really just gives you more information than anyone wants to know, or cares about... and probably only applies to really old footage..... so the bottom line: Just get your footage into it's correct Aspect Ratio, and nothing else matters.
PLAY FREEDOOM!! | Phan Picks! | THE424SHOW | YouTube | "Painkiller" | Vanilla MIDI's
"Effort to Understand; Effort to be Understood; to See through Different Eyes."

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by mirkosp » Fri Aug 26, 2011 10:41 am

http://ps-auxw.de/cgi-bin/ar-calc.pl

I just crop what necessary and flag the encode. Overcropping to at least mod4 suggested.
Image

User avatar
TEKnician
Joined: Thu Mar 04, 2010 4:40 pm
Status: Not reading the spoilers or manga
Location: Smack in the middle of the Pacific Ocean
Org Profile

Re: WHATS YOUR PREFERRED RESOLUTION?

Post by TEKnician » Sat Aug 27, 2011 2:29 am

Nya-chan Production wrote:WHY WOULD YOU POST THAT?
Image
Castor Troy wrote:A peaceful one...
LOL
8bit_samurai wrote:320x244
c'mon man...thats not even funny...
Phantasmagoriat wrote:Minimal Resizing from the original...do not resize both width and height
So i'm looking at the 720x400 cuz its seems that most of my DVDs are 720 wide already, but yet i'm just sighing cuz i finished converting All of Canaan, Clannad AND After Story, Eden of the Friggin east, My Eureka Seven Movie...*cries*...and Ghost in the Shell 2nd gig already. Now i'm kicking myself because I should've asked this sooner!
Almost as hard as fighting a Holy Paladin.

Locked

Return to “General AMV”