Metadata-Version: 2.1
Name: auto-video-cut
Version: 0.0.2
Summary: Cut unnecessary parts of a video
Home-page: https://github.com/ybalcanci/auto_video_cut
Author: Yasin Balcancı
Author-email: ybalcanci@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# auto_video_cut
Creates a new video by cutting some portions of a given video according to the
sound volume level and the level's continuity. I.e. in order for a part of the video
to be taken off, it's sound volume must be under a threshold for a while.

## Example
```python
from auto_video_cut import Video

video = Video('sample.mp4')
video.autoCut('sample-out.mp4')
```
## Demo
[Auto Video Cut Demo (auto_video_cut)](https://www.youtube.com/watch?v=K3UMgwTyAAs)


