avisynth-视频帧速率不匹配(AssumeFPS-ChangeFPS)

avisynth-视频帧速率不匹配(AssumeFPS-ChangeFPS)

我想只加速视频中的某些帧,而不将其分成几个部分,下面是我用来执行此操作的代码

AVISource("C:\Users\me\Desktop\source_10FPS.avi")   # get the 10 fps video source

b= Trim(0,100)                                       # trim the first 10  seconds
a= 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 framerate doesn't match”错误

任何帮助,将不胜感激

答案1

如果使用剪辑串联,则必须为串联链中的每个剪辑提供相同的格式和帧速率

相关内容