Re: Why does this ALSA config no longer work in Fedora 12
- From: Neil Bird <neil@xxxxxxxxxx>
- Date: Fri, 05 Mar 2010 11:28:45 +0000
Around about 05/03/10 09:34, n2xssvv.g02gfr12930 typed ...
The following ALSA config enabled the recording of played sound
It is no longer working, any ideas as to why?
None at all, but I'd put money on pulse-audio.
I found the following on the net a while ago (still using F10 then), and
successfully used it to record a bit of radio I was listening to through
firefox+flash -> pulse-audio. It's slightly tweaked from the one I found,
and I don't recall where I found it:
#!/bin/bash
# pa-record
OUT="$1"
if [ -z "$OUT" ]; then
echo "Usage: $0 output-file" >&2
exit 1
fi
rm -f "$OUT"
EXT=${OUT##*.}
# Get sink monitor:
MONITOR=$(pactl list | grep -A1 '^\*\*\* Source #' | grep '^Name:
.*\.monitor$' | cut -d" " -f2 | tail -n1)
# Record it raw, and convert to a wav or ogg
echo "Recording to $OUT ..."
echo "Close this window to stop"
if [ "$EXT" == "ogg" ]; then
parec --format=s16le -d "$MONITOR" | oggenc --raw --quiet --quality=4
-o "$OUT" -
else
parec -d "$MONITOR" | sox -t raw -r 44k -sLb 16 -c 2 - "$OUT"
fi
--
[neil@fnx ~]# rm -f .signature
[neil@fnx ~]# ls -l .signature
ls: .signature: No such file or directory
[neil@fnx ~]# exit
--
users mailing list
users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
- Follow-Ups:
- Re: Why does this ALSA config no longer work in Fedora 12, RESOLVED
- From: n2xssvv.g02gfr12930
- Re: Why does this ALSA config no longer work in Fedora 12
- From: n2xssvv.g02gfr12930
- Re: Why does this ALSA config no longer work in Fedora 12, RESOLVED
- References:
- Why does this ALSA config no longer work in Fedora 12
- From: n2xssvv.g02gfr12930
- Why does this ALSA config no longer work in Fedora 12
- Prev by Date: nfs mounting
- Next by Date: F-12 yum update error -
- Previous by thread: Why does this ALSA config no longer work in Fedora 12
- Next by thread: Re: Why does this ALSA config no longer work in Fedora 12
- Index(es):
Relevant Pages
|