https://github.com/lanzani/video_summarizer
🎞️✂️ A time saver tool that transform long footage in a short video, keeping the meaningful parts. Useful to compress video surveillance footage.
https://github.com/lanzani/video_summarizer
cctv surveillance video video-analysis video-compress video-summarisation video-summarization
Last synced: about 2 months ago
JSON representation
🎞️✂️ A time saver tool that transform long footage in a short video, keeping the meaningful parts. Useful to compress video surveillance footage.
- Host: GitHub
- URL: https://github.com/lanzani/video_summarizer
- Owner: lanzani
- License: mit
- Created: 2021-07-27T20:41:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-03T20:11:21.000Z (about 4 years ago)
- Last Synced: 2024-11-19T09:43:58.698Z (11 months ago)
- Topics: cctv, surveillance, video, video-analysis, video-compress, video-summarisation, video-summarization
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Video Summarizer
---
A time saver tool that transform long footage in a short video, keeping the meaningful parts.
Useful to compress video surveillance footage.> Note: This project started recently, so it is in initial form. Your suggestions are welcome and feel free to
contribute!## Installation
---
Use `pip install video_summarizer`.## Features / Usage
---
Tested video formats:
- .mp4
- .mpg### Video Summarization
#### Motion summarization
**Usage:**
```python
import video_summarizer as vidsuminput_video_path = "input_videos/original.mp4"
output_video_path = "output_videos/processed.mp4"vidsum.summarize(input_video_path, output_video_path, mode="motion")
```### Movement Detector
... Work in progress ...### Heatmap
... Work in progress ...