fastedit

A simple python library to edit videos


Keywords
video, editing, ffmpeg, python, video-editing, video-processing
License
Apache-2.0
Install
pip install fastedit==0.7.0

Documentation

FastEdit

GitHub build PyPI PyPI - Python Version

FastEdit is a Python library to edit videos. Thanks to it you can manipulate videos and/or audios with actions such as cut, loop, or concatenate.

Installation

FastEdit is based on FFmpeg which means it has to be installed on your machine before using FastEdit.

Using pip

If pip is installed on your machine, you can install FastEdit by typing the following command:

pip install fastedit

If you want a specific version of FastEdit via pip, type the following command:

pip install fastedit==VERSION

If you want to install FastEdit from this GitHub repository, type the following command:

pip install git+https://github.com/ThomasMargnac/fastedit@main

Try your first FastEdit program

from fastedit.Medias import Video

video = Video("video.mp4")
clip = video.clip(0, 10)
clip.save("new_video.mp4")

For more information and examples, checkout the wiki.

Resources

Type Link
📚 Wiki GitHub Wiki
🛠 API Reference GitHub Page
🚨 Bug Reports GitHub Issue Tracker