简体   繁体   中英

Crop an audio with moviepy Python

I've extracted an audio from the video in python with library moviepy.

video = moviepy.editor.VideoFileClip('video.mp4')
audio = video.audio

How can I crop audio by 30 seconds? So, for example, I have an audio 1:25 length

After cropping I will have an array of audios with length [[0:29],[30:59],[60:85]]

You can use the .crop() function.

I have found a very useful code, you can refer to it here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM