View Single Post
Old 31st May 2018, 23:55   #27379  |  Link
MrVideo
Registered User
 
MrVideo's Avatar
 
Join Date: May 2007
Location: Wisconsin
Posts: 2,132
Quote:
Originally Posted by musiclover View Post
content of the AVS file when trying to do the conversion with "Assume PAL for DVD output" set

#Created by BD Master Toolkit - v0.50.25
DirectshowSource("G:\WORK\IMPORTS\BBC_BIGGEST_WEEKEND\BDMV\STREAM\00000.m2ts", fps=50, framecount=134854, audio=false)
BilinearResize(720,576)
ConvertToYV12().ConvertFPS(25000,1000)
50 frames/sec is not a legal DVD frame rate. Not even a legal BD frame rate. 25 fps is the 576i/p frame rate. So, the ConvertFPS is correct.
Quote:
content of the AVS file when trying to do the conversion with "Assume PAL for DVD output" NOT set

#Created by BD Master Toolkit - v0.50.25
DirectshowSource("G:\WORK\IMPORTS\BBC_BIGGEST_WEEKEND\BDMV\STREAM\00000.m2ts", fps=50, framecount=134854, audio=false)
BilinearResize(720,480)
ConvertToYV12().AssumeFPS(50000,1000)
Again, 50 fps is not a legal value. For 480i/p video, the legal frame rate is 30 (29.97). So, the AssumeFPS is incorrect on two counts.
MrVideo is offline   Reply With Quote