record-audio

From Vivid Unit
Revision as of 13:55, 3 April 2026 by Admin (talk | contribs) (→‎Record Audio)

(diff) ← Older revision | Approved revision (diff) | Latest revision (diff) | Newer revision → (diff)

Record Audio

Vivid Unit has two on board microphones and it can be used for audio streaming or recording.

You may use the "Sound Recorder" app to record audio. This application is pre-installed in the old system (Debian 11). In the new system (Vivid Unit OS), it is not pre-installed, but you can still install it manually:

sudo apt update
sudo apt install gnome-sound-recorder

In the application menu, under the “Multimedia” category, you can find “Sound Recorder”.

Just click the blue “Record” button to start the recording:

To stop the recording, you just need to click the red button. You can then save this recording with specified name, and even export the audio file.

If you find the volume of the recorded .wav file is rather low, you may use the sox tool (already pre-installed in the system) to increase its valume:

sox -v 5 old.wav new.wav

The example above increase the volume of old.wav file and save it as the new.wav file (the old.wav file itself remains unchanged).