VideoHelp Forum




+ Reply to Thread
Results 1 to 9 of 9
  1. Member
    Join Date
    Sep 2010
    Location
    Detroit
    Search Comp PM
    I'm trying to convert a 720p recording of the world cup final I made with my TV tuner card and I'm wondering if there is a way to maintain the 59.940 framerate. Every conversion tool I've used changes it to 29.970 and the resulting video doesn't look smooth. Is it even possible? thanks in advance.
    Quote Quote  
  2. DVD-video doesn't support 60p

    The only way to keep the temporal information (smoothness) is to convert it to 720x480i60 (i.e. you have to convert it to interlaced DVD)

    You can do this conversion in avisynth , I'm not sure if any of the easy-to-use-1-click-converters do this properly, or allow you enough control

    e.g.

    Code:
    DirectShowSource("video.m2ts")
    AssumeFPS(60000,1001) #just in case frame rate is off a bit
    LanczosResize(720,480)
    AssumeTFF()
    SeparateFields()
    SelectEvery(4, 0, 3)
    Weave()
    Quote Quote  
  3. Member
    Join Date
    Sep 2010
    Location
    Detroit
    Search Comp PM
    Thanks , I searched everywhere for an answer and this info was very helpfull.
    Quote Quote  
  4. BTW, I assumed you meant "regular DVD" , because if you had a blu-ray player , you could playback 720p60 on DVD media (make an AVCHD disc with multiavchd or avchdcoder)
    Quote Quote  
  5. Banned
    Join Date
    Jun 2004
    Location
    ®Inside My Avatar™© U.S.
    Search Comp PM
    Originally Posted by Roge View Post
    Thanks , I searched everywhere for an answer and this info was very helpfull.
    Top left hand corner of every page, "WHAT IS",
    https://www.videohelp.com/dvd

    A standard dvd video has very specific standards.
    Quote Quote  
  6. Member
    Join Date
    Sep 2010
    Location
    Detroit
    Search Comp PM
    No just regular dvd
    Quote Quote  
  7. Member
    Join Date
    Jul 2010
    Location
    Australia
    Search PM
    If I can just add: if you are just going to DVD there is no need to convert 720p or even 1080p for that matter if you use an authoring software that accepts these formats and the codecs and containers they use. For example DVD Flick will take both of these HD resolutions and make a SD MPEG-2 file in a VOB container (plus the IFO and BUP files) ready for burning.
    Quote Quote  
  8. Originally Posted by poisondeathray View Post
    Code:
    DirectShowSource(\"video.m2ts\")
    AssumeFPS(60000,1001) #just in case frame rate is off a bit
    LanczosResize(720,480)
    AssumeTFF()
    SeparateFields()
    SelectEvery(4, 0, 3)
    Weave()
    He says original framerate is 59.94. I think it must be read as interlaced, right? So if you resize frame with both interlaced fields before separate them... I think it may degrade them? Should it be first bobbed and then resized?
    Correct me if I'm wrong...
    Quote Quote  
  9. sorry. I just read it is progressive... stupid me..
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!