bboris77
16th August 2005, 00:58
Hi guys.
I am relatively new to the AviSynth world, and I still cannot believe the kind of quality that I am getting from some of its deinterlacing filters - comparable to commercial products such as DVFilm Maker. Anyway, I wanted to give my DV project a film look by going from 60i to 30p. I am not necessarily interested in going to 24p, as I find that 30p gives the project sufficiently "choppy" film look. As I mentioned, my source footage is 60interlaced, bottom field first, 720x480 NTSC DV footage. This is my procedure:
1. I transfer DV files onto my computer, use Ulead Media Studio Pro to edit my project. I then output the final project in Huffyuv or Lagarith lossless AVI, 720x480, 60i, 29.97FPS, RGB24, Video/Audio.
2. I then deinterlace the created file using TDeint filter. I use the following script, called "tdeintstandard.avs":
Loadplugin("C:\Program Files\AviSynth 2.5\plugins\Tdeint.dll")
AVISource("C:\temp.avi")
AssumeBFF()
ConvertToYUY2()
TDeint(mode=0,order=0,field=0)
ConvertToRGB24()
3. Then I run VirtualDub, select the Fast Recompress option, change the Compression setting to either Lagarith or Huffyuv. I set the audio options to Direct Stream Copy/Source Audio. I then go to Save As AVI, and that's it.
4. Finally, I load the created file into Ulead Media Studio Pro, and create a DVD-compliant MPEG2 file from there.
Is this procedure correct? I would really appreciate if you can either confirm that I am doing this correctly, or offer any suggestions to optimize/improve this procedure.
Thanks in advance,
Boris
I am relatively new to the AviSynth world, and I still cannot believe the kind of quality that I am getting from some of its deinterlacing filters - comparable to commercial products such as DVFilm Maker. Anyway, I wanted to give my DV project a film look by going from 60i to 30p. I am not necessarily interested in going to 24p, as I find that 30p gives the project sufficiently "choppy" film look. As I mentioned, my source footage is 60interlaced, bottom field first, 720x480 NTSC DV footage. This is my procedure:
1. I transfer DV files onto my computer, use Ulead Media Studio Pro to edit my project. I then output the final project in Huffyuv or Lagarith lossless AVI, 720x480, 60i, 29.97FPS, RGB24, Video/Audio.
2. I then deinterlace the created file using TDeint filter. I use the following script, called "tdeintstandard.avs":
Loadplugin("C:\Program Files\AviSynth 2.5\plugins\Tdeint.dll")
AVISource("C:\temp.avi")
AssumeBFF()
ConvertToYUY2()
TDeint(mode=0,order=0,field=0)
ConvertToRGB24()
3. Then I run VirtualDub, select the Fast Recompress option, change the Compression setting to either Lagarith or Huffyuv. I set the audio options to Direct Stream Copy/Source Audio. I then go to Save As AVI, and that's it.
4. Finally, I load the created file into Ulead Media Studio Pro, and create a DVD-compliant MPEG2 file from there.
Is this procedure correct? I would really appreciate if you can either confirm that I am doing this correctly, or offer any suggestions to optimize/improve this procedure.
Thanks in advance,
Boris