1
Archive / Re: FF7 PSX videos
« on: 2009-11-19 06:55:20 »
photoshop is not for handling of videos, in addition, the resizing filters that it uses are simple bilinear or bicubic (VirtualDub has this filter as its internal resizer too).
hellbringer616, if you're really into video editing, you should spend a couple of days looking into AviSynth, it has a large base of filters which are suitable for many purposes. For resizing filters, the best I can think of is NNEDI2
For a quick general usage in your case:
hellbringer616, if you're really into video editing, you should spend a couple of days looking into AviSynth, it has a large base of filters which are suitable for many purposes. For resizing filters, the best I can think of is NNEDI2
For a quick general usage in your case:
- download and install Avisynth
- download nnedi2.zip, extract the nnedi2.dll file to the avisynth installed directory/plugins
- create a new text file with extension of avs, write these lines in it and then save it (change the areas indicated accordingly)
Code: [Select]
AviSource("your source file.avi")
nnedi2_rpow2(rfactor=2,cshift="spline36resize",fwidth=x,fheight=y) #this is the resizing filter, x and y are your final width and height of the video
- open the avs with some video editing program, like VirtualDub, and there you can do whatever you want to it