It sounds like your video conversion wasnāt right, and probably why you have jagginess. The movie is hard interlaced and the fields occasionally go out of sync.
Iām a bit rusty and Iām on a cobbled together PC (not my usual one).
Using DGIndex is right. You need an AVISynth script like this:
loadplugin("ā¦dgdecode.dll")
loadplugin("ā¦tivtc.dll")
mpeg2source(ācroc.d2vā)
tfm(d2v=ācroc.d2vā)
assumefps(23.976) #NTSC Speed
spline36resize(720,480) #NTSC resolution
Then you can use DGPulldown to get soft telecine (23.976 -> 29.97).
For the audio, Iād use eac3to. A simple -slowdown option and you can go from ac3 right to ac3 in one step.
But as long as youāre using avisynth it give you an opportunity to try to adjust the black/white levels and colors if you want.
There are no subtitles, so that makes life easier, but if you want to put in the same chapter stops youāll need to extract and convert them. Somewhere here Iāve got a guide for PAL to NTSC conversion of full discs.