misled
11th July 2007, 14:01
Hi,
I'm pretty new to avisynth, but i think i've got the basics covered.
I'm wanting a good script/method of converting 1280x720p 50fps hdtv files to PAL dvd standard 720x576 25fps files to make dvd's.
My current process is:
dvb-t capture card -> .ts -> projectx to demux -> .m2v file -> avisynth for resizing... this is where i am unsure. the script i use is below...
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
Loadplugin("C:\Program Files\AviSynth 2.5\plugins\FDecimate.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\BT709ToBT601.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")
MPEG2Source("H:\TV_CAPS\03_-_CUT_M2V_+_AUDIO_FILES\02__HD_VIDS_TO_EDIT_+_BURN\foo_fighters_-_monkey_wrench_(unedited_HDTV).d2v",cpu=0)
FDecimate(rate=25.00,threshold=1.0)
LanczosResize(720,576)
BT709ToBT601()
UnDot()
I ahve tested this script and it does work ok. audio/video is synced and everything seesm ok. but i just want to know if the fdecimate filter is the correct one to use for this job?
Also, if the source is progressive, then no deinterlacing is required right ? And the final mpeg file should also stay progressive ? (i.e. 720x576i 25 fps) ?
Basically i want a high quality/most accurate encoding process.
Thx in advance.
Gav
I'm pretty new to avisynth, but i think i've got the basics covered.
I'm wanting a good script/method of converting 1280x720p 50fps hdtv files to PAL dvd standard 720x576 25fps files to make dvd's.
My current process is:
dvb-t capture card -> .ts -> projectx to demux -> .m2v file -> avisynth for resizing... this is where i am unsure. the script i use is below...
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
Loadplugin("C:\Program Files\AviSynth 2.5\plugins\FDecimate.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\BT709ToBT601.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")
MPEG2Source("H:\TV_CAPS\03_-_CUT_M2V_+_AUDIO_FILES\02__HD_VIDS_TO_EDIT_+_BURN\foo_fighters_-_monkey_wrench_(unedited_HDTV).d2v",cpu=0)
FDecimate(rate=25.00,threshold=1.0)
LanczosResize(720,576)
BT709ToBT601()
UnDot()
I ahve tested this script and it does work ok. audio/video is synced and everything seesm ok. but i just want to know if the fdecimate filter is the correct one to use for this job?
Also, if the source is progressive, then no deinterlacing is required right ? And the final mpeg file should also stay progressive ? (i.e. 720x576i 25 fps) ?
Basically i want a high quality/most accurate encoding process.
Thx in advance.
Gav