Skip to content

jokane/clip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 14, 2025
e9b2cf3 · Jan 14, 2025
Aug 2, 2024
Jan 14, 2025
Aug 2, 2024
Dec 17, 2024
Jan 10, 2025
Jan 14, 2025
Jul 18, 2024
Jan 10, 2025
Jul 24, 2024
Jul 18, 2024
Jul 10, 2024
Jul 30, 2024

Repository files navigation

Clip

This is a Python library for creating videos.

To extract the first minute of an existing video, you might do something like this:

from clip import *
original = from_file('original.mp4')
first_minute = slice_clip(original, 0, 60)
save_mp4(first_minute, 'first_minute.mp4', frame_rate=original.frame_rate)

Loads of other functionality is included.

This video is an example of many of the things the library can do.

See the documentation for more details.