annotate record-audio @ 29:c2584db4a650
Make load recording more flexible and efficient
* Works with variable number of CPUs
* Use Python `enumerate()` function where possible
* Use long-running NVidia function
author |
IBBoard <dev@ibboard.co.uk> |
date |
Wed, 30 Dec 2020 17:22:29 +0000 |
parents |
e85e3470a41e |
children |
|
rev |
line source |
0
|
1 #! /bin/bash
|
|
2
|
|
3 WAV="$1"
|
|
4 if [ -z "$WAV" ]; then
|
|
5 echo "Usage: $0 OUTPUT.WAV" >&2
|
|
6 exit 1
|
|
7 fi
|
|
8 rm -f "$WAV"
|
|
9
|
|
10 MONITOR=$(pactl list | grep -A2 '^Source #' | \
|
|
11 grep 'Name: .*\.monitor$' | awk '{print $NF}' | tail -n1)
|
|
12 parec -d "$MONITOR" | sox -t raw -r 44100 -Lb 16 -e signed-integer -c 2 - "$WAV"
|