I have a source that appears to have been originally shot on film (24p), brought to PAL (50i) with 2:2, and then brought to NTSC (60i) with some kind of telecine pattern from the PAL conversion (not from the film source). So what I now have is similar to the following:
Is anyone familiar with something like this and do you know if it will be at all possible to bring this back to 24p with AVISynth? Thanks for any suggestions you can provide. If you PM me, I can send you an example of the source.Code:progressive frame, PAL 2:2 frame, NTSC telecined frame, NTSC telecined frame, NTSC telecined frame, PAL 2:2 frame, (repeat)
+ Reply to Thread
Results 1 to 10 of 10
-
-
Here's the link:
http://forum.doom9.org/showthread.php?t=95924
and here's more information:
http://avisynth.org/mediawiki/Srestore
If you have trouble getting SRestore to run, RePAL will probably handle it just as well and much more easily:
http://avisynth.org/warpenterprises/
A sample would be nice. But, just from the description a proper conversion will bring the framerate back to 24.975 or 25fps. You'll then have to slow the video (AssumeFPS) and audio to get it back to 23.976 or 24fps. And if you don't know AviSynth now, either learn or give up the idea of restoring it. -
Thanks guys! I can't wait to try this out. If what they are saying on the doom9 forums is true, then this looks like it is just what I am looking for. If this doesn't end up working out well, I will see about posting a short clip. And yes, I am quite familiar with AVISynth, but there are hundreds of plugins available and this is the first time I have ever come across a source like this. Its great to have a resource like this site (it seems like my posts on doom9 always go unanswered).
-
Thanks for everyone's help on this. I created two scripts which worked out quite well on this source:
Code:LoadCplugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll") import("C:\Program Files\AviSynth 2.5\plugins\srestore.avs") video=dgdecode_mpeg2source("source.d2v",info=3) audio=DirectShowSource("source.ac3") AudioDub(video,audio) Amplify(2) Yadif(mode=1,order=1) SRestore() tdecimate(mode=7,vfrdec=0,hint=false,nt=2,dupthresh=3,vidthresh=5) Crop(0, 64, -0, -64) LanczosResize(640,352,taps=4)
Code:LoadCplugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll") LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\repal.dll") video=dgdecode_mpeg2source("source.d2v",info=3) audio=DirectShowSource("source.ac3") AudioDub(video,audio) Amplify(2) Yadif(mode=1,order=1) repal() tdecimate(mode=7,vfrdec=0,hint=false,nt=2,dupthresh=3,vidthresh=5) Crop(0, 64, -0, -64) LanczosResize(640,352,taps=4)
-
Why'd you use TDecimate, rather than my earlier suggestion of AssumeFPS? By using TDecimate to get it to 23.976fps, you pulled out one unique and necessary frame every second and made it play jerky. Either that or your description of what you have is incorrect. If the framerate is really supposed to be 23.976fps, then it never had anything to do with PAL to begin with, and you could have gotten it directly to 23.976fps with SRestore(FRate=23.976). And a sample would still be helpful.
-
AssumeFPS left some blended frames. FRate=23.976 left some telecined frames. Neither one left that many of these "errors" (using VirtualDub to step through), so in a pinch the result was definitely acceptable, but with TDecimate I don't seem to run into these issues. My initial quick looks over the content didn't appear that there were missing frames (jerkiness). But I'll look over this again tomorrow and scrutinize the result more closely just to be certain. I'll also upload a short sample.
-
AssumeFPS left some blended frames.
FRate=23.976 left some telecined frames. -
manono,
Check your PM box. I posted a link to download a short sample there. Also, after further scrutinizing the result from the above scripts, you are correct that those scripts did introduce a slight judder due to a lost frame from the decimation. I failed to notice this initially because most of the clip is talking heads stuff, but there are a few scenes of cars moving and it is here where you can see it if you pay close enough attention.
Similar Threads
-
PAL converted from NTSC source - Ghosting and interlacing
By OngekibouRekka in forum Video ConversionReplies: 7Last Post: 3rd Dec 2011, 12:20 -
Hauppauge PVR-150 (PAL Version) Recording NTSC Source: Impossible?
By darkarn in forum Capturing and VCRReplies: 53Last Post: 16th Aug 2010, 10:06 -
Video in PAL and Audio from NTSC source
By jairovital in forum Authoring (DVD)Replies: 30Last Post: 17th Jun 2010, 13:16 -
PAL to NTSC conversions advice please !
By beammeup in forum Video ConversionReplies: 4Last Post: 21st Mar 2009, 22:11 -
hardware solutions to PAL/NTSC conversions
By JakeAy in forum Video ConversionReplies: 8Last Post: 19th Aug 2007, 11:26