私はそれをいくつかの部分に分割せずにビデオの特定のフレームだけをスピードアップしようとしています、これが私がこれをするのに使ったコードです
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
"エラー
任意の助けをいただければ幸いです