Chronicle is an audio logger, designed for radio station use.
At the moment, it records audio from specified input to an audio file, on the hour, every hour. Once the recordings have become outdated, they will be deleted. As such, it is a full rotating logger.
If run without any command-line switches, chronicle will record the first two channels of the default soundcard to WAV in the local directory. Audio will be retained for 1000 hours (as per OfCom regulations).
However, you can easily specify which audio device to use, which channels to record, the audio format, audio file retention age, and more through a number of command-line flags.
For a list, use chronicle --help
.
Windows users (both 32 and 64 bit) can simply download the latest compiled binaries from the Releases page. Simply extract and run. Hooray!
Linux users can also download the binaries. However, you will need to manually install the pre-requisites:
librtaudio-dev
) >= 5.0.0libsndfile1-dev
)libboost-all-dev
) >= 1.68.0libncurses6-dev
) >= 6.0libmp3lame-dev
) >= 1.3.0+Or, you can compile chronicle from scratch.
You'll also need to download the build toolchain: build-essential
and pkg-config
Bleeding-edge source
If you want the latest bleeding-edge version, clone this repository and build from source:
git clone http://hcr923fm/chronicle
cd chronicle
mkdir _build && cd _build && cmake .. && cmake --build .
sudo make install
Stable builds
For the latest stable build, download the source tarball and run
tar xvf chronicle-*
cd chronicle-*
mkdir _build && cd _build && cmake .. && cmake --build .
sudo make install
NOTE: This requires CMake version 3.15 or above, which at the time of writing, is not available in many package managers.
.deb
s will happen soon!
If you find Chronicle to be useful, fancy buying me a coffee?
I'm on Patreon, or you can find the link at GitHub - hit 'Sponsor' at the top!
Copyright 2016-2019 Callum McLean. Distributed under the MIT Licence. See LICENCE for details.