BlockABoots
20th July 2017, 19:53
So i have a script with 3 clips in total but 1 clip (which i recorded on a different device) appears to have a different framerate as avisynth is giving me a 'video framerate doesnt match' error. I have split the clips into 2 different script lines and added 'assumeFPS' to the end of the offending video line and added 'video+video2' BUT i have other effects that i need to add but there not being applied for some reason. Here is the script i have...
video=FFMpegSource2("C:\Users\karll\Desktop\VID_20170720_170742.mp4",atrack=-1) +FFMpegSource2("C:\Users\karll\Desktop\VID_20170720_171311.mp4",atrack=-1)
video1=FFMpegSource2("F:\Video Captures\2017-07-20 18-42-12.mp4",atrack=-1).assumeFPS(video)
video2=video+video2
video3=turn180(video)
video4=Amplify(video,2.0)
video5=fadein(video,50).fadeout(50)
return video5
It adds all the clips together and doesn't give me an error message anymore but the video clips on the first line of the script need to be rotated 180 degrees but the 'turn180(video)' command isnt being followed and neither are any of the other commands (amplify or fade).
Any help would be appropriated
video=FFMpegSource2("C:\Users\karll\Desktop\VID_20170720_170742.mp4",atrack=-1) +FFMpegSource2("C:\Users\karll\Desktop\VID_20170720_171311.mp4",atrack=-1)
video1=FFMpegSource2("F:\Video Captures\2017-07-20 18-42-12.mp4",atrack=-1).assumeFPS(video)
video2=video+video2
video3=turn180(video)
video4=Amplify(video,2.0)
video5=fadein(video,50).fadeout(50)
return video5
It adds all the clips together and doesn't give me an error message anymore but the video clips on the first line of the script need to be rotated 180 degrees but the 'turn180(video)' command isnt being followed and neither are any of the other commands (amplify or fade).
Any help would be appropriated