Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to record sound in OS X Terminal? [closed]

Tags:

I need to record voice from built-in microphone using only Terminal.app in Mac OS X. Is there any way?

like image 854
roboslone Avatar asked Feb 07 '13 17:02

roboslone


People also ask

How do I record audio on my Mac OS X?

In the Voice Memos app on your Mac, click the Record button (or use the Touch Bar). To pause, click the Pause button . To continue, click Resume. When you finish, click Done in the lower-right corner.

How do I record with USB mic on Mac?

1) Open QuickTime Player (Applications > Utilities). 2) Choose "New Audio Recording" from the File menu. 3a) Select your external mic by clicking the arrow next to the record button.


2 Answers

Install brew and then install sox

$ brew install sox  $ sox -d recording.wav 
like image 57
epatel Avatar answered Oct 24 '22 22:10

epatel


As epatel mentioned, but using the port system instead:

$ sudo port install sox 
like image 26
Terry Avatar answered Oct 24 '22 22:10

Terry