#camera #rtsp #mp4 #video-stream #command-line-utilities

app retina-record

Command-line application to record MP4 video from RTSP cameras

6 releases

0.2.2 Apr 11, 2024
0.2.1 Mar 26, 2024
0.1.2 Mar 13, 2024
0.1.1 Feb 18, 2024

#20 in Video

Download history 117/week @ 2024-02-12 103/week @ 2024-02-19 78/week @ 2024-02-26 119/week @ 2024-03-11 3/week @ 2024-03-18 201/week @ 2024-03-25 24/week @ 2024-04-01 74/week @ 2024-04-08

307 downloads per month

MIT/Apache

51KB
1K SLoC

retina-record

Crates.io Crate License Rust

Command-line application to record MP4 video from RTSP cameras.

Documentation and repository at github.com/strawlab/retina-record.

Features

  • Does not transcode video from the camera but streams the already-encoded H264 video directly to an .mp4 file. Consequently, CPU usage is minimal.
  • Stores additional timing data inline in the .mp4 file. See "Timing data" below.
  • Based on the retina Rust crate to support H264 RTSP cameras. This is the same library underlying Moonfire NVR.
  • Written in pure Rust.

Timing data

retina-record saves additional timing data during recording. This allows best-effort reconstruction of the timing of individual camera frames and synchronizing videos from multiple cameras. The overall philosophy is to log, in a lossless manner, the timing information sent from the camera as well as the nanosecond-specified time at which retina-record received the data. If the camera has a good internal clock (e.g. because it is using a well behaved NTP client), the timestamps from the camera alone should be sufficient to reconstruct quite precisely (see below for details about "quite precisely") when images were acquired. Alternatively, if the camera's internal clock is not as ideal, the timestamps saved by retina-record can be used to align the data under the assumptions that network delays are insignificant and that the clock of the PC on which retina-record runs is reliable. Furthermore, supported by the partial redundancy of these data types, more sophisticated time reconstruction approaches can be implemented on videos recorded with retina-record. These data are saved in the H264 video track in the MP4 file using Supplemental Enhancement Information (SEI).

Frame timing data

Each frame is stored with its "RTP timestamp" from the camera and the "receive timestamp" from retina-record. The formal description of the data saved in the H264 stream as Supplemental Enhancement Information (SEI) is at strawlab.org/89H.

Sender report timing data

Occasional (every few seconds) sender reports from the camera with additional NTP timestamps are stored alongside RTP and receive timestamps. The formal description of the data saved in the H264 stream as Supplemental Enhancement Information (SEI) is at strawlab.org/o8B.

The NTP timestamps are in the 64-bit NTP timestamp format and thus theoretically have nanosecond-level precision. Practically, this depends on the quality of the internal clock on the camera.

Installing

  1. Install rust
  2. Run cargo install retina-record --locked.

Running

Here is an example command-line to record from a camera to the file output.mp4. This will run until Ctrl-C is used to stop the program. You will need to update the URL for your camera and presumably the password and output filename.

retina-record --url rtsp://192.168.1.32/cam1/onvif-h264 --username admin --password secret-password output.mp4

Dependencies

~18–32MB
~468K SLoC