I wrote a few useful AviSynth functions for:
- Automatically integrating videos from different cameras: ConvertFormat(…)
import ( "abarryAviSynthFunctions.avs" ) |
goproFormat = AviSource( "GOPR0099.avi" ) |
framerate = goproFormat.framerate |
audiorate = goproFormat.AudioRate |
width = goproFormat.width |
height = goproFormat.height |
othervid = AviSource( "othervid.avi" ) |
othervid = ConvertFormat(othervid, width, height, framerate, audiorate) |
- Slowing down video slowly (ie go from 1x -> 1/2x -> 1/4x automatically): TransitionSlowMo(…)
vid1 = AviSource( "GOPR0098.avi" ) |
vid1 = Trim(vid1, 2484 , 2742 ) |
vid1 = TransitionSlowMo(vid1, 123 , 190 , 0.25 , 15 ) |
03/5/14