2016-01-02 01:06:47 -05:00
|
|
|
# Introduction
|
|
|
|
|
|
|
|
Moonfire NVR is an open-source security camera network video recorder, started
|
2016-11-25 16:03:58 -05:00
|
|
|
by Scott Lamb <<slamb@slamb.org>>. It saves H.264-over-RTSP streams from
|
|
|
|
IP cameras to disk into a hybrid format: video frames in a directory on
|
2016-11-25 16:00:27 -05:00
|
|
|
spinning disk, other data in a SQLite3 database on flash. It can construct
|
|
|
|
`.mp4` files for arbitrary time ranges on-the-fly. It does not decode,
|
|
|
|
analyze, or re-encode video frames, so it requires little CPU. It handles six
|
|
|
|
1080p/30fps streams on a [Raspberry Pi
|
|
|
|
2](https://www.raspberrypi.org/products/raspberry-pi-2-model-b/), using
|
|
|
|
less than 10% of the machine's total CPU.
|
|
|
|
|
|
|
|
So far, the web interface is basic: just a table with links to one-hour
|
|
|
|
segments of video. Although the backend supports generating `.mp4` files for
|
|
|
|
arbitrary time ranges, you have to construct URLs by hand. There's also no
|
|
|
|
support for motion detection, no authentication, and no config UI.
|
2016-01-02 01:06:47 -05:00
|
|
|
|
|
|
|
This is version 0.1, the initial release. Until version 1.0, there will be no
|
|
|
|
compatibility guarantees: configuration and storage formats may change from
|
2016-12-21 01:08:18 -05:00
|
|
|
version to version. There is an [upgrade procedure](guide/schema.md) but it is
|
|
|
|
not for the faint of heart.
|
2016-01-02 01:06:47 -05:00
|
|
|
|
|
|
|
I hope to add features such as salient motion detection. It's way too early to
|
|
|
|
make promises, but it seems possible to build a full-featured
|
|
|
|
hobbyist-oriented multi-camera NVR that requires nothing but a cheap machine
|
|
|
|
with a big hard drive. I welcome help; see [Getting help and getting
|
|
|
|
involved](#help) below. There are many exciting techniques we could use to
|
|
|
|
make this possible:
|
|
|
|
|
|
|
|
* avoiding CPU-intensive H.264 encoding in favor of simply continuing to use the
|
|
|
|
camera's already-encoded video streams. Cheap IP cameras these days provide
|
|
|
|
pre-encoded H.264 streams in both "main" (full-sized) and "sub" (lower
|
|
|
|
resolution, compression quality, and/or frame rate) varieties. The "sub"
|
|
|
|
stream is more suitable for fast computer vision work as well as
|
|
|
|
remote/mobile streaming. Disk space these days is quite cheap (with 3 TB
|
|
|
|
drives costing about $100), so we can afford to keep many camera-months of
|
|
|
|
both streams on disk.
|
|
|
|
* decoding and analyzing only select "key" video frames (see
|
|
|
|
[wikipedia](https://en.wikipedia.org/wiki/Video_compression_picture_types).
|
|
|
|
* off-loading expensive work to a GPU. Even the Raspberry Pi has a
|
|
|
|
surprisingly powerful GPU.
|
|
|
|
* using [HTTP Live Streaming](https://en.wikipedia.org/wiki/HTTP_Live_Streaming)
|
|
|
|
rather than requiring custom browser plug-ins.
|
|
|
|
* taking advantage of cameras' built-in motion detection. This is
|
|
|
|
the most obvious way to reduce motion detection CPU. It's a last resort
|
|
|
|
because these cheap cameras' proprietary algorithms are awful compared to
|
|
|
|
those described on [changedetection.net](http://changedetection.net).
|
|
|
|
Cameras have high false-positive and false-negative rates, are hard to
|
|
|
|
experiment with (as opposed to rerunning against saved video files), and
|
|
|
|
don't provide any information beyond if motion exceeded the threshold or
|
|
|
|
not.
|
|
|
|
|
2017-10-02 01:02:39 -04:00
|
|
|
# Documentation
|
2016-01-02 01:06:47 -05:00
|
|
|
|
2017-10-02 01:02:39 -04:00
|
|
|
* [License](LICENSE.txt) — GPLv3
|
|
|
|
* [Building and installing](guide/install.md)
|
|
|
|
* [Troubleshooting](guide/troubleshooting.md)
|
2016-11-25 17:34:00 -05:00
|
|
|
|
2016-01-02 01:06:47 -05:00
|
|
|
# <a name="help"></a> Getting help and getting involved
|
|
|
|
|
|
|
|
Please email the
|
2017-10-17 01:20:29 -04:00
|
|
|
[moonfire-nvr-users](https://groups.google.com/d/forum/moonfire-nvr-users)
|
|
|
|
mailing list with questions, or just to say you love/hate the software and
|
|
|
|
why. You can also file bugs and feature requests on the
|
|
|
|
[github issue tracker](https://github.com/scottlamb/moonfire-nvr/issues).
|
2016-01-02 01:06:47 -05:00
|
|
|
|
2016-11-25 17:34:00 -05:00
|
|
|
I'd welcome help with testing, development (in Rust, JavaScript, and HTML),
|
|
|
|
user interface/graphic design, and documentation. Please email the mailing
|
2017-10-02 01:02:39 -04:00
|
|
|
list if interested. Pull requests are welcome, but I encourage you to discuss
|
|
|
|
large changes on the mailing list or in a github issue first to save effort.
|