Created
April 19, 2020 08:20
-
-
Save suapapa/d598d99360497252433af430902bb49e to your computer and use it in GitHub Desktop.
raw audio recording with portaudio and golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/binary" | |
"fmt" | |
"os" | |
"os/signal" | |
"time" | |
"github.com/gordonklaus/portaudio" | |
) | |
func main() { | |
if len(os.Args) < 2 { | |
fmt.Println("missing required argument: output file name") | |
return | |
} | |
fmt.Println("Recording. Press Ctrl-C to stop.") | |
sig := make(chan os.Signal, 1) | |
signal.Notify(sig, os.Interrupt, os.Kill) | |
fileName := os.Args[1] | |
f, err := os.Create(fileName) | |
chk(err) | |
defer func() { | |
chk(f.Close()) | |
}() | |
portaudio.Initialize() | |
time.Sleep(1) | |
defer portaudio.Terminate() | |
in := make([]int16, 64) | |
stream, err := portaudio.OpenDefaultStream(1, 0, 16000, len(in), in) | |
chk(err) | |
defer stream.Close() | |
chk(stream.Start()) | |
loop: | |
for { | |
chk(stream.Read()) | |
chk(binary.Write(f, binary.LittleEndian, in)) | |
select { | |
case <-sig: | |
break loop | |
default: | |
} | |
} | |
chk(stream.Stop()) | |
} | |
func chk(err error) { | |
if err != nil { | |
panic(err) | |
} | |
} |
If I'm using "mpg123 - " to play the output file will it work ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you also provide the shared library that the application will link, then no. A static binary also can be an option, but I'm not sure how Go does this.