Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johmathe/shotdetect
Automated shot detection software
https://github.com/johmathe/shotdetect
Last synced: 19 days ago
JSON representation
Automated shot detection software
- Host: GitHub
- URL: https://github.com/johmathe/shotdetect
- Owner: johmathe
- License: other
- Created: 2010-11-04T21:28:17.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2023-10-23T20:24:55.000Z (about 1 year ago)
- Last Synced: 2024-11-14T20:03:59.544Z (29 days ago)
- Language: C
- Homepage: http://johmathe.name/shotdetect.html
- Size: 1.5 MB
- Stars: 199
- Watchers: 27
- Forks: 66
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
![Build status](https://api.travis-ci.org/johmathe/Shotdetect.svg?branch=master)
Shotdetect is a free software (LGPL) which detects shots and scenes from a video.
The result produced is a simple XML file containing all the informations about the movie generated.# Install
## Dependencies
sudo apt-get install libavdevice-dev libavformat-dev libgd2-noxpm libgd2-noxpm-dev
## Graphical version
sudo apt-get install libwxgtk2.6-dev wx2.6-doc libwxgtk2.6-headers## Building
mkdir -p build
cd build
cmake ..## Build command line version
mkdir -p build
cd build
cmake -D USE_WXWIDGETS:BOOL=OFF ..# Example
## Shell
shotdetect -i myvideo.avi -o output_dir -s 60 -w -v -f -l -m -r
## Options details
-s : set thresholdThe threshold is the level for shot detection. High will not detect a lot, low will detect a lot of false shots. A good choice is about 60.
-w : generates audio xml information
See the generated file for more details
-v : generates video xml informations
See the generated file for more details
-f : generates the first image of shots
-l : generates the last image of shots
-q : generates the middle image of shots
-m : generates the thumbnails images
-r : generates the real size images
# Comments
[email protected]