All Projects → Arkq → svar

Arkq / svar

Licence: MIT license
SVAR - Simple Voice Activated Recorder

Programming Languages

c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to svar

Unimidi
Realtime MIDI IO for Ruby
Stars: ✭ 229 (+854.17%)
Mutual labels:  alsa
flutter sound
Flutter plugin for sound. Audio recorder and player.
Stars: ✭ 727 (+2929.17%)
Mutual labels:  audio-recorder
react-audio-analyser
基于react录音及绘制音频曲线
Stars: ✭ 69 (+187.5%)
Mutual labels:  audio-recorder
Android-Wave-Recorder
A powerful and efficient library to record WAVE form audio files (WAV) in Android
Stars: ✭ 137 (+470.83%)
Mutual labels:  audio-recorder
reco
A simple audio recording app for modern Linux desktop environment like Pantheon
Stars: ✭ 47 (+95.83%)
Mutual labels:  audio-recorder
orcanode
Software for live-streaming and recording lossy or lossless compressed audio (HLS, DASH, FLAC) via AWS S3 buckets. ⭐
Stars: ✭ 23 (-4.17%)
Mutual labels:  audio-recorder
Python Rtmidi
Python bindings for the cross-platform MIDI I/O library RtMidi
Stars: ✭ 189 (+687.5%)
Mutual labels:  alsa
audiobug
A simple Android app to record audio through the microphone.
Stars: ✭ 19 (-20.83%)
Mutual labels:  audio-recorder
vue-dictaphone
🎙️ Vue.js dictaphone component to record audio from the user
Stars: ✭ 22 (-8.33%)
Mutual labels:  audio-recorder
NaraeAudioRecorder
AudioRecorder for Android powered by Kotlin
Stars: ✭ 82 (+241.67%)
Mutual labels:  audio-recorder
fast-mixer
Mini recording and mixing studio for android
Stars: ✭ 47 (+95.83%)
Mutual labels:  audio-recorder
simple-web-audio-recorder-demo
A simple HTML/JS demo that uses WebAudioRecorder.js to record audio on a web page
Stars: ✭ 141 (+487.5%)
Mutual labels:  audio-recorder
SoundDeck
Sound Deck is a powerful audio-focused plugin for the Elgato Stream Deck.
Stars: ✭ 20 (-16.67%)
Mutual labels:  audio-recorder
simple-vmsg-demo
A plain HTML/JS demo that uses vmsg (a modern WebAssembly version of LAME) to record and encode mp3 audio in the browser
Stars: ✭ 17 (-29.17%)
Mutual labels:  audio-recorder
CallRecorder
SW Call Recorder is an Android app that records phone calls based on user selected phone numbers.
Stars: ✭ 56 (+133.33%)
Mutual labels:  audio-recorder
Musikcube
a cross-platform, terminal-based music player, audio engine, metadata indexer, and server in c++
Stars: ✭ 2,663 (+10995.83%)
Mutual labels:  alsa
android-audio-sensei
High-level library to make android audio recording and playing more simple by handling boring stuff like runtime permissions and by completely abstracting audio playback controller
Stars: ✭ 41 (+70.83%)
Mutual labels:  audio-recorder
KTAudioSoundWave
🍐KTSoundWave-根据语音绘制波浪动画,录音波形图及分贝检测
Stars: ✭ 22 (-8.33%)
Mutual labels:  audio-recorder
libvisual
Libvisual Audio Visualization
Stars: ✭ 67 (+179.17%)
Mutual labels:  alsa
Vienna
Vienna 是一款安卓音频操作工具,主要提供音频录制与播放的功能。提供简洁的接口降低音频开发的成本。
Stars: ✭ 43 (+79.17%)
Mutual labels:  audio-recorder

SVAR - Simple Voice Activated Recorder

Build Status

It is a simple console application (low memory footprint and CPU usage) designed for recording audio when a specified signal level is exceeded. It is commonly known solution called Voice Operated Recording (VOR). When the signal level is low for longer than the fadeout time, audio recording is paused.

On Linux systems, capturing the audio signal is based on the ALSA technology. For all other systems, PortAudio library will be used. Alternatively, it is possible to force PortAudio back-end on Linux systems by adding -DENABLE_PORTAUDIO=ON to the CMake configuration step.

Currently this application supports four output formats:

For low CPU consumption WAV is recommended - it is the default selection.

There is also possible to split output file into chunks containing continuous recording. New output file is generated every time a new signal appears (after the split time period). In such a case, the time of signal appearance can be determined by the output file name, which by default is in the format of "rec-DD-HH:MM:SS". It is possible to customize it with a strftime(3) format string.

For the fine adjustment of the activation condition (the signal level), one can run svar with the --sig-meter parameter. This activates the signal meter mode, in which the maximal peak value and the RMS is displayed. Activation threshold is based on the maximal peak value in the signal packed (time of tenth of the second).

Installation

mkdir build && cd build
cmake .. -DENABLE_SNDFILE=ON -DENABLE_MP3LAME=ON -DENABLE_VORBIS=ON
make && make install
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].