Metadata-Version: 2.1
Name: videosplatter
Version: 0.2
Summary: Splat videos
Home-page: http://github.com/ryanfox/videosplatter
Author: Ryan Fox
Author-email: ryan@foxrow.com
License: ACSL
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Video splatter

Splat a video into a mosaic by sampling a frame at regular intervals. Useful
for seeing the changes over time of an entire video or movie.

## Installation

```
pip install videosplatter
```

## Usage
Command line:
```
$ videosplatter <filename> [--start <start time in seconds>] [--end <end time in seconds>] [--interval <number of seconds between samples]
```

Example:

```
$ python splat.py city.mp4
```
![mosaic image from New York City aerial footage](city.jpg)
_Original from The Dronalist, used under CC-BY_


Programmatic usage:
```
from videosplatter import splat

splat.splat(filename, start_time, end_time, interval)
```


