Posts Tagged ‘audio’

fixing sound in debian

Monday, September 22nd, 2008

I’m running debian lenny/sid with  kernel 2.6.26-1 on my workstation and for a while, my audio hasn’t been working in most applications (I was most annoyed by the lack of sound in flash), though it has been working in amarok.  I was getting error messages like this when trying to do audio playback.  These particular messages are from Ekiga:

ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'defaults.namehint.extended'
ALSA lib conf.c:3513:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:3985:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2144:(snd_pcm_open_noupdate) Unknown PCM plughw:0
ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'defaults.namehint.extended'
ALSA lib conf.c:3513:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:3985:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2144:(snd_pcm_open_noupdate) Unknown PCM plughw:0
ALSA lib confmisc.c:1286:(snd_func_refer) Unable to find definition 'defaults.namehint.extended'
ALSA lib conf.c:3513:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:3985:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2144:(snd_pcm_open_noupdate) Unknown PCM plughw:0

I finally looked into this and was able to fix it with the simple command

 $ sudo asoundconf reset-default-card

Audio from WFHB’s Local Live Live

Monday, March 31st, 2008

Update: pushing this to the top because I messed up the quadrillion babes upload.

I ripped a few tracks from the Quadrillion Babes and Gourmet Scum Performances at WFHB’s fundraising Local Live Live show:

Defiance, Ohio Audio Files

Monday, December 24th, 2007

I finally posted audio files from the recent Defiance, Ohio record The Fear, The Fear, The Fear to the web.  After seeing how El-Iqaa distributed his recent release as well as the encouragement of others, I decided to make the audio available as both a free download of 128Kbps or Ogg/Vorbis files on archive.org as well as a donation-requested 320Kbps or FLAC file download where the proceeds get paypalled to the Midwest Pages to Prisoners Project.

Link

converting mp3 to wav using lame

Friday, May 26th, 2006

The CD burning program that I use under linux doesn’t support burning mp3s to audio cds directly, so I have to convert!

for i in *.mp3; do lame –decode $i `basename $i .mp3`.wav; done

The Linux MP3 CD Burning mini-HOWTO was super-helpful with this.

ripping realaudio to wav using mplayer

Wednesday, May 24th, 2006

$ mplayer rtsp://real.npr.org:80/real.npr.na-central/fa/20060414_fa_01.rm -ao pcm:file=hater.wav -vc dummy -vo null

This page was helpful as a reference.