kumi
8th March 2006, 23:19
I was testing some encoder settings in 1.08.1 with SelectRangeEvery(1200,12) added in the Filter Editor window. I noticed some of the segments were only 1-frame long, so I took a look at the .AVS files prepared by DVDRB:
#------------------
# AVS File Created by DVD Rebuilder
# VOBID:01, CELLID:02
#------------------
LoadPlugin("C:\Program Files\DVD-RB PRO 1.08.1\DGDecode.dll")
mpeg2source("G:\DVDRB WORKING\D2VAVS\V01.D2V",idct=7)
SelectRangeEvery(1200,12)
trim(510,9160)
ConvertToYV12()
I noticed that DVDRB is adding my filters before the trim statement. Isn't this incorrect behaviour? I remember older versions adding filters after the trim() statement, and the filter editor window states:
Any text entered below will appear in all AVS files after the trim() statement and before any resizing or color conversion.
#------------------
# AVS File Created by DVD Rebuilder
# VOBID:01, CELLID:02
#------------------
LoadPlugin("C:\Program Files\DVD-RB PRO 1.08.1\DGDecode.dll")
mpeg2source("G:\DVDRB WORKING\D2VAVS\V01.D2V",idct=7)
SelectRangeEvery(1200,12)
trim(510,9160)
ConvertToYV12()
I noticed that DVDRB is adding my filters before the trim statement. Isn't this incorrect behaviour? I remember older versions adding filters after the trim() statement, and the filter editor window states:
Any text entered below will appear in all AVS files after the trim() statement and before any resizing or color conversion.