【发布时间】:2015-05-28 19:06:42
【问题描述】:
我正在尝试仅加速视频中的某些帧,而不是将其拆分为多个文件,这是我用来执行此操作的代码
AVISource("C:\Users\me\Desktop\source_10FPS.avi") # get the 10 fps video source
a= Trim(0,100) # trim the first 10 seconds
b= Trim(100,200).AssumeFPS(14, sync_audio=TRUE) # trim and speed it up
c= Trim(200,0).AssumeFPS(10, 1, true) #trim and go back to original speed
return (a+b+c) # combine the 3 Trims
但我收到“视频帧率不匹配”错误
任何帮助将不胜感激
【问题讨论】:
标签: video video-editing avisynth