VideoHelp Forum




+ Reply to Thread
Results 1 to 10 of 10
  1. Hi all.. I have a few mpg, avi files which I want to convert to slow motion video. (ie which when played on any player will be played in slow motion).
    Any ideas re: which software is good for that??
    Thanks in advance..
    Quote Quote  
  2. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    Vegas - drop it on the timeline, Ctrl and drag the end point out. Of use velocity envelopes to vary the speed up/down/backwards if necessary.

    The best software solution is after effects and this plugin http://www.realviz.com/products/rtpro/index.php
    Read my blog here.
    Quote Quote  
  3. Member Cornucopia's Avatar
    Join Date
    Oct 2001
    Location
    Deep in the Heart of Texas
    Search PM
    You could also try just changing the stated fps in the header. Try AVIFrate.

    Scott
    Quote Quote  
  4. thank you all... I will look into these
    Quote Quote  
  5. Member
    Join Date
    Nov 2003
    Location
    United States
    Search Comp PM
    The way I do it is with an Avisynth script. That way I can also slow down the sound so it stays in sync but maintain the pitch of the sound so it is easier to understand. Then you just feed the script to your encoder, wait until it's done and voila. If you choose this route I'll be happy to post the script for you. I encode with CCE Basic but you could also use TMPGenc or one of the free encoders. Other than that you just need Avisynth and DGindex both free. It's easy to use this script on different files-you just change the name in the script. It's set for 50% speed right now but it's not hard to change it.
    Quote Quote  
  6. Member dipstick's Avatar
    Join Date
    Jan 2005
    Location
    Dark side of the Moon
    Search Comp PM
    trolltuning wrote:
    If you choose this route I'll be happy to post the script for you.
    Go ahead and post it.
    I stand up next a mountain and chop it down with the ledge of my hand........ I'm a Voodoo child.... Jimi Hendrix,
    Quote Quote  
  7. Member
    Join Date
    Nov 2003
    Location
    United States
    Search Comp PM
    Ok here are some scripts
    Thanks to Iantri at doom9.org
    For interlaced:

    Directshowsource("D:\capture\myvideo.mpg")
    Bob() # replace with your favourite higher-quality bobber of choice
    AssumeFPS(29.97)
    TimeStretch(tempo=50)

    For progressive
    Directshowsource("D:\capture\myvideo.mpg")
    ConvertFPS(59.94)
    AssumeFPS(29.97)
    TimeStretch(tempo=50)


    For PAL change 29.97 to 25 and 59.94 to 50
    Change the path in the first line. I actually now use mpeg2source in the first line and audiodub. I'll post that this evening.
    If the file you are starting with is an avi change directshowsource to avisource
    The tempo =50 represents the 50% slowdown in the audio 100 would be regular speed. This line is the one that keeps the pitch of the audio constant despite the slowdown of the video.
    This ratio should be the same as the AssumeFPS number divided by the ConvertFPS number (and multiplied by 100)
    Quote Quote  
  8. Member dipstick's Avatar
    Join Date
    Jan 2005
    Location
    Dark side of the Moon
    Search Comp PM
    Thank's.............. it works pretty good.
    I stand up next a mountain and chop it down with the ledge of my hand........ I'm a Voodoo child.... Jimi Hendrix,
    Quote Quote  
  9. Member
    Join Date
    Nov 2003
    Location
    United States
    Search Comp PM
    Here's the way I like to do it now. You make the d2v file with dgindex.exe available at http://neuron2.net/dgmpgdec/dgmpgdec.html
    You need to download mpasource filter from http://www.avisynth.org/warpenterprises/
    and install it in your Avisynth plugin directory
    Note that two of the lines in this script are commented out.


    video=Mpeg2source("D:\1elements\Mario1.d2v")
    #video=video.TemporalSoften(4,4,8,15,2)
    audio=mpasource("D:\1elements\Mario1.mpa")
    audiodub(audio,video)
    #Bob() # replace with your favourite higher-quality bobber of choice
    ConvertToYUY2(interlaced=true)
    ConvertFPS(59.94)
    AssumeFPS(29.97)
    TimeStretch(tempo=50)
    Quote Quote  



Similar Threads

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