What is thy bidding, my master? Command, and I will obey
Use the dark avisynth of the force to crush the rebel MVP into submission? Done!
Seriously, it works like a charm
I took a small clip from "Along came a spider", which was 576*256 and 23.976FPS (so something the MVP really can't play correctly) and here goes
Code:
AVISource("Along Came A Spider.avi")
ConvertToYUY2
BilinearResize(352,152)
AddBorders(0,44,0,44)
This resizes to 352*240. Plays with a correct aspect ratio on the MVP, however I get audio out of sync.
No problem, let's change the FPS
Code:
AVISource("Along Came A Spider.avi")
ConvertToYUY2
ConvertFPS(29.97)
BilinearResize(352,152)
AddBorders(0,44,0,44)
Voilą! plays flawlessly.
As long as I was there I thought I'd check on that 720*480 vs 640*480 question we had the other day
Code:
AVISource("Along Came A Spider.avi")
ConvertToYUY2
ConvertFPS(29.97)
AddBorders(0,64,0,64)
LanczosResize(720,480)
OK it does play, and no letterboxing is added by the MVP. However, whereas the aspect ratio is right on the PC, but wrong on the MVP. Image is stretched vertically, so I do suspect the MVP is reconverting that to 640*480
So to confirm, I did:
Code:
AVISource("Along Came A Spider.avi")
ConvertToYUY2
ConvertFPS(29.97)
AddBorders(0,88,0,88)
LanczosResize(640,480)
And bam, works fine again. Good aspect ratio, crisper image than the 352*240 one, and audio stays in sync.
Now all I have to figure out is why the colors in the avisynth file are off both on the PC and the MVP (looks like the blue green and red palettes have been switched around.
DISCLAIMER: don't try this until your MVP can correctly play a AVI file at 640*480 and 29.97FPS (or 640*576 at 25 FPS for PAL). If you aren't there yet, there's a thread called MVP and AVIs that can help you achieve that.