16

Is there an application capable of recording sound that I can run from the command line on XP?

Ideally I'd start it with one command and stop it with another. Or I could specify a duration with the starting command.

5 Answers5

14

rec is no longer provided in the SoX Windows package. Instead you can use this command line:

sox -t waveaudio -d new-file.wav
tripulse
  • 264
laurent
  • 5,774
8

FFmpeg, besides conversion can do a lot more, Device I/O is our main focus.


Input devices are specific to host systems, for Windows FFmpeg uses DirectShow API for capturing both audio and video. The following retrieves a listing of available input devices visible to dshow.

ffmpeg -list_devices true -f dshow -i null

Usually, -sources following device name is used for listing input streams but for dshow it is quite weird, I don't know why.


The following captures 30 seconds of audio and saves it as a FLAC file, DEVICE_NAME is a placeholder for the name of the device reported by DirectShow.

ffmpeg -f dshow -t 30 -i "audio=DEVICE_NAME" out.flac

FFmpeg Documentation on dshow.

tripulse
  • 264
8

You can use SoX package.

rec recorded_track.wav 00:05

Records for 5 minutes.

More documentation on SoX manpage.

6

To record sound using command line on Windows you can use fmedia:

fmedia --record --out=Recording.wav

You can stop recording at any time by pressing Ctrl+C.

While recording, fmedia shows how loud the signal is, for example:

g:\fmedia>fmedia --record --out=myrec.flac
fmedia v0.10
0:19  [========..] -7.89dB / -1.31dB

Supported formats are WAV, FLAC, OGG and MP3. Output to WAV is the fastest. However, FLAC compression is quite fast too, so you probably won't notice any difference in CPU usage.


If you want to capture sound from a specific device (not just the default one):

Step 1. Use --list-dev switch to show all available devices.

Step 2. Pick a device you want to use and call fmedia with --dev-capture argument.

For example, start recording from a specific device - Microphone:

C:\>fmedia --list-dev
fmedia v0.10
Playback:
device #1: Realtek Digital Output (Realtek High Definition Audio)
device #2: Speakers (Realtek High Definition Audio)

Capture: device #1: Stereo Mix (Realtek High Definition Audio) device #2: Microphone (Realtek High Definition Audio) device #3: Line In (Realtek High Definition Audio)

C:>fmedia --record --out=Recording.wav --dev-capture=2

def
  • 61
1

This is old but might be an alternative

LiveInCode

This program encodes live audio from line-in or microphone directly into Ogg Vorbis, MP3, FLAC, Speex and other formats.

The current version only has built-in support for Ogg Vorbis and Speex. It means you can use any other encoders too, but for encoders other than Ogg Vorbis and Speex you'll need to manually specify the command-line.

Nifle
  • 34,998