Zulko / moviepy

Video editing with Python
https://zulko.github.io/moviepy/
MIT License
12.07k stars 1.51k forks source link

Audio out of sync when I grab window bar. #2162

Open Gioth8281 opened 2 months ago

Gioth8281 commented 2 months ago

Expected Behavior

The audio should be synced with the video when I release the mouse from window bar.

Actual Behavior

The audio was out of sync with the video when I released the mouse from window bar.

Steps to Reproduce the Problem

import moviepy.editor as mp

video = mp.VideoFileClip('graphics/intro.mp4')
video.set_fps(video.fps)
video = video.resize(height=720)
video.preview()

Specifications