<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://hackepedia.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SycZek</id>
	<title>Hackepedia - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://hackepedia.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=SycZek"/>
	<link rel="alternate" type="text/html" href="https://hackepedia.org/index.php?title=Special:Contributions/SycZek"/>
	<updated>2026-05-08T16:52:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://hackepedia.org/index.php?title=Dsp&amp;diff=3848</id>
		<title>Dsp</title>
		<link rel="alternate" type="text/html" href="https://hackepedia.org/index.php?title=Dsp&amp;diff=3848"/>
		<updated>2007-09-18T17:15:39Z</updated>

		<summary type="html">&lt;p&gt;SycZek: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== device creation ==&lt;br /&gt;
&lt;br /&gt;
To create your /dev/dsp in linux if it doesn&#039;t exist:&lt;br /&gt;
&lt;br /&gt;
 $ grep snd_pcm_oss /proc/modules&lt;br /&gt;
 $&lt;br /&gt;
&lt;br /&gt;
not found.. so we&#039;ll add it:&lt;br /&gt;
&lt;br /&gt;
 # modprobe snd_pcm_oss &lt;br /&gt;
 # grep snd_pcm_oss /proc/modules&lt;br /&gt;
 snd_pcm_oss 54528 0 - Live 0xf04a2000 &lt;br /&gt;
 snd_mixer_oss 20032 1 snd_pcm_oss, Live 0xf048b000&lt;br /&gt;
 snd_pcm 95016 3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec, Live 0xf01dd000&lt;br /&gt;
 snd 58980 8    &lt;br /&gt;
 snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer, Live 0xf01b1000&lt;br /&gt;
&lt;br /&gt;
okay it&#039;s there now. The drivers will be different based on your soundcard. Now to make it take affect next reboot, we will add it to /etc/modules&lt;br /&gt;
&lt;br /&gt;
 # echo snd_pcm_oss &amp;gt;&amp;gt; /etc/modules&lt;br /&gt;
&lt;br /&gt;
 $ id&lt;br /&gt;
 uid=1000(franks) gid=1000(franks) groups=20(dialout),24(cdrom),25(floppy),29(audio),1000(franks)&lt;br /&gt;
&lt;br /&gt;
As you can see, I am in the group &amp;quot;audio&amp;quot;. If you don&#039;t see yourself in that group, ask your sysadmin to add you to the audio group in /etc/group:&lt;br /&gt;
 $ grep audio /etc/group&lt;br /&gt;
 audio:x:29:franks,asterisk&lt;br /&gt;
&lt;br /&gt;
shows that franks and asterisk are the two users in the audio group on this system. The users are comma delimited.&lt;br /&gt;
&lt;br /&gt;
Finally, make sure that your volume and pcm are turned up in your mixer software, such as aumix.&lt;br /&gt;
&lt;br /&gt;
Now give it a try! &lt;br /&gt;
&lt;br /&gt;
[http://sourceforge.net/projects/mpg123 mpg123] is a [[CLI]] audio client.&lt;br /&gt;
[http://www.gnome.org/projects/rhythmbox/ rhythmbox] is a [[GUI]] audio client.&lt;br /&gt;
&lt;br /&gt;
== dsp already in use ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sometimes you will have two applications trying to access your audio device. &lt;br /&gt;
The culprit can be discovered with lsof assuming your audio device is /dev/dsp like it is on BSD:&lt;br /&gt;
&lt;br /&gt;
 $ lsof | grep dsp&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
&lt;br /&gt;
as you can see, one of the websites I am viewing with firefox has claimed access to my dsp first. I must now close that tab in firefox, and restart xmms, and all is well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Stop embedded audio in Firefox ==&lt;br /&gt;
&lt;br /&gt;
 vi ~/.mozilla/firefox/[[variables|0wt4rci4.default]]/chrome/userContent.css&lt;br /&gt;
&lt;br /&gt;
and add these lines (creating the file if it doesn&#039;t already exist)&lt;br /&gt;
&lt;br /&gt;
 /* block embedded sounds */&lt;br /&gt;
 embed[src*=.mid] { display: none !important }&lt;br /&gt;
 embed[src*=.mp2] { display: none !important }&lt;br /&gt;
 embed[src*=.mp3] { display: none !important }&lt;br /&gt;
 embed[src*=.mp4] { display: none !important }&lt;br /&gt;
 embed[src*=.wav] { display: none !important }&lt;br /&gt;
 embed[src*=.wma] { display: none !important }&lt;br /&gt;
&lt;br /&gt;
== Stop embedded audio in flash ==&lt;br /&gt;
&lt;br /&gt;
Not a highly recommended hack, but I opened &lt;br /&gt;
&lt;br /&gt;
 vi ~/.&lt;br /&gt;
1000&lt;br /&gt;
mozilla/plugins/libflashplayer.so&lt;br /&gt;
&lt;br /&gt;
and did a &lt;br /&gt;
&lt;br /&gt;
 /dsp&lt;br /&gt;
&lt;br /&gt;
which found /dev/dsp which I replaced with /dev/xxx in order to stop flash from accessing my /dev/dsp, as it never released it properly.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have audio working, you may want to try listening to an online streaming radio station such as our recommend [[Unixhelp:Audio|streaming stations]].&lt;/div&gt;</summary>
		<author><name>SycZek</name></author>
	</entry>
	<entry>
		<id>https://hackepedia.org/index.php?title=Dsp&amp;diff=3776</id>
		<title>Dsp</title>
		<link rel="alternate" type="text/html" href="https://hackepedia.org/index.php?title=Dsp&amp;diff=3776"/>
		<updated>2007-07-14T21:46:16Z</updated>

		<summary type="html">&lt;p&gt;SycZek: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[http://news.engin.brown.edu/forums/thread-view.asp?tid=211 music ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=80 cool ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1388 fioricet online]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=361 real ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=172 online lorazepam]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=333 soma online]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=182 clomid online]] [[http://library.cshl.edu/wp/vb/member.php?u=1355 clonazepam]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=205 paxil online]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=184 lisinopril online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=124 free samsung ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de60a04 sonyericsson ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=115 phentermine online]] [[http://library.cshl.edu/wp/vb/member.php?u=1387 alltel ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de60a05 sprint ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=167 clonazepam online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30283 didrex online]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=157 ultram online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=230 verizon ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30309 celexa online]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=348 cheap norco]] [[http://wc1.worldcrossing.com/WebX/.1de60a11 buy diethylpropion]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=188 cheap tenuate]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=212 free verizon ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30308 lipitor online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=82 buy diazepam]] [[http://library.cshl.edu/wp/vb/member.php?u=1380 verizon ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=163 cheap adipex]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2859 meridia online]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=209 free samsung ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=170 cingular ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=78 clomid online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30298 lisinopril online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=74 cheap carisoprodol]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=352 cheap paxil]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=227 free ericsson ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1386 free mono ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=69 cheap albuterol]] [[http://wc1.worldcrossing.com/WebX/.1de60a12 free ericsson ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=171 cheap ambien]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=188 levitra online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=83 didrex online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30358 midi ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2879 cheap clomid]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=186 cheap lipitor]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=215 sagem ringtones]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=346 meridia online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2923 free sony ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30237 valium online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=171 clomid online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=184 hoodia online]] [[http://wc1.worldcrossing.com/WebX/.1de60a1b music ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30264 cheap hydrocodone]] [[http://wc1.worldcrossing.com/WebX/.1de609db but adipex]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30321 hgh online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=90 cheap hgh]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30263 order levitra]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=133 tracfone ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=226 free sony ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=117 order propecia]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=165 cheap vicodin]] [[http://library.cshl.edu/wp/vb/member.php?u=1340 soma online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2909 free verizon ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30252 buy meridia]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=221 vicodin online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30347 free verizon ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1354 cheap alprazolam]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30330 nokia ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2903 qwest ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de60a26 free sharp ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30348 polyphonic ringtones]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=345 cheap viagra]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=239 cheap sildenafil]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2876 didrex online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=142 wellbutrin]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2872 cyclobenzaprine online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30333 free funny ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de60a00 cheap rivotril]] [[http://library.cshl.edu/wp/vb/member.php?u=1356 paxil online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30357 sharp ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=123 sagem ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30268 order xenical]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=92 cheap hydrocodone]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=100 lortab online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2850 phentermine online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2869 cheap lorazepam]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=116 free polyphonic ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1361 xenical online]] [[http://library.cshl.edu/wp/vb/member.php?u=1362 buy wellbutrin]] [[http://wc1.worldcrossing.com/WebX/.1de60a2b ultracet]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=113 paxil online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30279 cheap ultracet]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=229 jazz ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2863 alprazolam online]] [[http://wc1.worldcrossing.com/WebX/.1de609f4 mono ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1353 vicodin]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2880 cheap albuterol]] [[http://wc1.worldcrossing.com/WebX/.1de609eb funny ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=181 free ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2887 cheap pharmacy online]] [[http://library.cshl.edu/wp/vb/member.php?u=1364 cheap nexium]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=222 vigrx online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=166 ativan online]] [[http://library.cshl.edu/wp/vb/member.php?u=1381 free polyphonic ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=180 online flexeril]] [[http://wc1.worldcrossing.com/WebX/.1de609fd free punk ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=102 midi ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de60a2c ultram]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2853 cheap fioricet]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2899 tracfone ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=185 hydrocodone online]] [[http://library.cshl.edu/wp/vb/member.php?u=1378 sprint ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1350 meridia online]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=152 cheap valium]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=208 phentermine online]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=349 cheap vicodin]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=77 free cingular ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de60a0c wellbutrin online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2860 cheap adipex]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=223 free midi ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=126 cheap sildenafil]] [[http://library.cshl.edu/wp/vb/member.php?u=1383 sagem ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=197 cheap flexeril]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2898 free free ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de609ff free real ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30336 qwest ringtones]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=343 cialis online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2924 free ericsson ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=183 albuterol]] [[http://library.cshl.edu/wp/vb/member.php?u=1342 phentermine online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=220 real ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2883 cheap lipitor]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=203 free funny ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=73 cheap ativan]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=218 free qwest ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=202 free tracfone ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=96 cheap levitra]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=105 free mp3 ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1375 free real ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30238 cheap phentermine]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30355 free punk ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30349 free cingular ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=199 free music ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2914 sony ericsson ringtones]] [[http://wc1.worldcrossing.com/WebX/.1de609e7 cheap diazepam]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30315 lortab online]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=143 wwe ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2906 samsung ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=174 cyclobenzaprine online]] [[http://wc1.worldcrossing.com/WebX/.1de60a03 sony ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2857 cheap ativan]] [[http://wc1.worldcrossing.com/WebX/.1de60a2d cheap valium]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2856 cialis online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30242 cheap fioricet]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=160 cheap adipex]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=232 free sony ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2900 free funny ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2870 xenical online]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=150 order tramadol]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30332 free tracfone ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30354 free alltel ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=202 free nokia ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=134 tramadol online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=167 cheap carisoprodol]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30269 cheap wellbutrin]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2893 cheap hgh]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=219 viagra online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30240 carisoprodol online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30316 vigrx online]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30351 sonyericsson ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30350 sagem ringtones]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=332 cheap tramadol]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2925 free mtv ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2915 mono ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30359 free wwe ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2849 cheap valium]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2867 hydrocodone online]] [[http://wc1.worldcrossing.com/WebX/.1de60a16 levitra]] [[http://library.cshl.edu/wp/vb/member.php?u=1379 music ringtones]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2919 sharp ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30338 free motorola ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=174 cheap wellbutrin]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=84 diethylpropion online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2882 zoloft online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=217 punk ringtones]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=220 punk ringtones]] [[http://www.ees.ufl.edu/alumni/forums.asp?ForumId=5&amp;amp;TopicId=86 fioricet online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=186 jazz ringtones]] [[http://www.e.kth.se/cgi-bin/esekt/discussion?command=read&amp;amp;discussionid=4&amp;amp;id=30253 cheap norco]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2920 free midi ringtones]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=164 alprazolam online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2884 celexa online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=240 soma online]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=347 adipex]] [[http://news.engin.brown.edu/forums/thread-view.asp?tid=180 prozac online]] [[http://www.psfc.mit.edu/~jinseok/bbse/view.php?id=presentations&amp;amp;no=353 levitra]] [[http://wc1.worldcrossing.com/WebX/.1de60a33 prozac online]] [[http://itcweb.ecsu.edu/portal/forums.asp?ForumId=13&amp;amp;TopicId=179 fioricet online]] [[http://students.hsc.unt.edu/housing/item.cfm?type=2926 free jazz ringtones]] [[http://library.cshl.edu/wp/vb/member.php?u=1384 sonyericsson ringtones]] == device creation ==&lt;br /&gt;
&lt;br /&gt;
To create your /dev/dsp in linux if it doesn&#039;t exist:&lt;br /&gt;
&lt;br /&gt;
 $ grep snd_pcm_oss /proc/modules&lt;br /&gt;
 $&lt;br /&gt;
&lt;br /&gt;
not found.. so we&#039;ll add it:&lt;br /&gt;
&lt;br /&gt;
 # modprobe snd_pcm_oss &lt;br /&gt;
 # grep snd_pcm_oss /proc/modules&lt;br /&gt;
 snd_pcm_oss 54528 0 - Live 0xf04a2000 &lt;br /&gt;
 snd_mixer_oss 20032 1 snd_pcm_oss, Live 0xf048b000&lt;br /&gt;
 snd_pcm 95016 3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec, Live 0xf01dd000&lt;br /&gt;
 snd 58980 8    &lt;br /&gt;
 snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer, Live 0xf01b1000&lt;br /&gt;
&lt;br /&gt;
okay it&#039;s there now. The drivers will be different based on your soundcard. Now to make it take affect next reboot, we will add it to /etc/modules&lt;br /&gt;
&lt;br /&gt;
 # echo snd_pcm_oss &amp;gt;&amp;gt; /etc/modules&lt;br /&gt;
&lt;br /&gt;
 $ id&lt;br /&gt;
 uid=1000(franks) gid=1000(franks) groups=20(dialout),24(cdrom),25(floppy),29(audio),1000(franks)&lt;br /&gt;
&lt;br /&gt;
As you can see, I am in the group &amp;quot;audio&amp;quot;. If you don&#039;t see yourself in that group, ask your sysadmin to add you to the audio group in /etc/group:&lt;br /&gt;
 $ grep audio /etc/group&lt;br /&gt;
 audio:x:29:franks,asterisk&lt;br /&gt;
&lt;br /&gt;
shows that franks and asterisk are the two users in the audio group on this system. The users are comma delimited.&lt;br /&gt;
&lt;br /&gt;
Finally, make sure that your volume and pcm are turned up in your mixer software, such as aumix.&lt;br /&gt;
&lt;br /&gt;
Now give it a try! &lt;br /&gt;
&lt;br /&gt;
[http://sourceforge.net/projects/mpg123 mpg123] is a [[CLI]] audio client.&lt;br /&gt;
[http://www.gnome.org/projects/rhythmbox/ rhythmbox] is a [[GUI]] audio client.&lt;br /&gt;
&lt;br /&gt;
== dsp already in use ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sometimes you will have two applications trying to access your audio device. &lt;br /&gt;
The culprit can be discovered with lsof assuming your audio device is /dev/dsp like it is on BSD:&lt;br /&gt;
&lt;br /&gt;
 $ lsof | grep dsp&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
&lt;br /&gt;
as you can see, one of the websites I am viewing with firefox has claimed access to my dsp first. I must now close that tab in firefox, and restart xmms, and all is well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Stop embedded audio in Firefox ==&lt;br /&gt;
&lt;br /&gt;
 vi ~/.mozilla/firefox/[[variables|0wt4rci4.default]]/chrome/userContent.css&lt;br /&gt;
&lt;br /&gt;
and add these lines (creating the file if it doesn&#039;t already exist)&lt;br /&gt;
&lt;br /&gt;
 /* block embedded sounds */&lt;br /&gt;
 embed[src*=.mid] { display: none !important }&lt;br /&gt;
 embed[src*=.mp2] { display: none !important }&lt;br /&gt;
 embed[src*=.mp3] { display: none !important }&lt;br /&gt;
 embed[src*=.mp4] { display: none !important }&lt;br /&gt;
 embed[src*=.wav] { display: none !important }&lt;br /&gt;
 embed[src*=.wma] { display: none !important }&lt;br /&gt;
&lt;br /&gt;
== Stop embedded audio in flash ==&lt;br /&gt;
&lt;br /&gt;
Not a highly recommended hack, but I opened &lt;br /&gt;
&lt;br /&gt;
 vi ~/.mozilla/plugins/libflashplayer.so&lt;br /&gt;
&lt;br /&gt;
and did a &lt;br /&gt;
&lt;br /&gt;
 /dsp&lt;br /&gt;
&lt;br /&gt;
which found /dev/dsp which I replaced with /dev/xxx in order to stop flash from accessing my /dev/dsp, as it never released it properly.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have audio working, you may want to try listening to an online streaming radio station such as our recommend [[Unixhelp:Audio|streaming stations]].&lt;/div&gt;</summary>
		<author><name>SycZek</name></author>
	</entry>
	<entry>
		<id>https://hackepedia.org/index.php?title=Dsp&amp;diff=3718</id>
		<title>Dsp</title>
		<link rel="alternate" type="text/html" href="https://hackepedia.org/index.php?title=Dsp&amp;diff=3718"/>
		<updated>2007-07-01T00:58:16Z</updated>

		<summary type="html">&lt;p&gt;SycZek: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=114&amp;amp;forum=13 meridia]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=157&amp;amp;forum=13 free wwe ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=128&amp;amp;forum=13 cheap phentermine]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=158&amp;amp;forum=13 xanax online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=106&amp;amp;forum=13 hydrocodone online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=160&amp;amp;forum=13 cheap zanaflex]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=102&amp;amp;forum=13 free free ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=97&amp;amp;forum=13 didrex online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=135&amp;amp;forum=13 free real ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=100&amp;amp;forum=13 fioricet online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=96&amp;amp;forum=13 diazepam online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=136&amp;amp;forum=13 cheap rivotril]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=87&amp;amp;forum=13 cheap ativan]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=144&amp;amp;forum=13 sonyericsson ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=137&amp;amp;forum=13 sagem ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=152&amp;amp;forum=13 verizon ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=139&amp;amp;forum=13 sharp ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=125&amp;amp;forum=13 cheap ortho]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=156&amp;amp;forum=13 cheap wellbutrin]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=151&amp;amp;forum=13 valium]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=121&amp;amp;forum=13 nexium online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=147&amp;amp;forum=13 tracfone ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=142&amp;amp;forum=13 sony ericsson ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=94&amp;amp;forum=13 cool ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=161&amp;amp;forum=13 zoloft]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=117&amp;amp;forum=13 free motorola ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=133&amp;amp;forum=13 qwest ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=138&amp;amp;forum=13 samsung ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=122&amp;amp;forum=13 nextel ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=89&amp;amp;forum=13 cheap celexa]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=99&amp;amp;forum=13 ericsson ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=115&amp;amp;forum=13 free midi ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=146&amp;amp;forum=13 cheap tenuate]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=109&amp;amp;forum=13 levitra online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=82&amp;amp;forum=13 cheap adipex]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=132&amp;amp;forum=13 free punk ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=130&amp;amp;forum=13 propecia online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=83&amp;amp;forum=13 cheap albuterol]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=85&amp;amp;forum=13 alprazolam online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=153&amp;amp;forum=13 buy viagra]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=148&amp;amp;forum=13 order tramadol]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=143&amp;amp;forum=13 free sony ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=86&amp;amp;forum=13 order ambien]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=103&amp;amp;forum=13 free funny ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=104&amp;amp;forum=13 cheap hgh]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=129&amp;amp;forum=13 polyphonic ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=90&amp;amp;forum=13 cialis online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=123&amp;amp;forum=13 nokia ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=101&amp;amp;forum=13 flexeril]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=124&amp;amp;forum=13 norco]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=149&amp;amp;forum=13 ultracet online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=88&amp;amp;forum=13 cheap carisoprodol]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=108&amp;amp;forum=13 kyocera ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=93&amp;amp;forum=13 cheap clonazepam]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=127&amp;amp;forum=13 cheap pharmacy online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=95&amp;amp;forum=13 cyclobenzaprine online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=150&amp;amp;forum=13 cheap ultram]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=111&amp;amp;forum=13 cheap lisinopril]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=159&amp;amp;forum=13 cheap xenical]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=162&amp;amp;forum=13 zyban online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=116&amp;amp;forum=13 free mono ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=112&amp;amp;forum=13 lorazepam online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=145&amp;amp;forum=13 free sprint ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=110&amp;amp;forum=13 cheap lipitor]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=131&amp;amp;forum=13 prozac online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=120&amp;amp;forum=13 music ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=105&amp;amp;forum=13 cheap hoodia]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=155&amp;amp;forum=13 vigrx]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=98&amp;amp;forum=13 diethylpropion online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=113&amp;amp;forum=13 but lortab]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=154&amp;amp;forum=13 vicodin online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=119&amp;amp;forum=13 free mtv ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=84&amp;amp;forum=13 free alltel ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=141&amp;amp;forum=13 cheap soma]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=107&amp;amp;forum=13 jazz ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=140&amp;amp;forum=13 sildenafil online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=126&amp;amp;forum=13 paxil online]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=118&amp;amp;forum=13 mp3 ringtones]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=92&amp;amp;forum=13 cheap clomid]] [[http://people.msoe.edu/~millerni/forums.php?show=topic&amp;amp;id=91&amp;amp;forum=13 free cingular ringtones]] &lt;br /&gt;
== device creation ==&lt;br /&gt;
&lt;br /&gt;
To create your /dev/dsp in linux if it doesn&#039;t exist:&lt;br /&gt;
&lt;br /&gt;
 $ grep snd_pcm_oss /proc/modules&lt;br /&gt;
 $&lt;br /&gt;
&lt;br /&gt;
not found.. so we&#039;ll add it:&lt;br /&gt;
&lt;br /&gt;
 # modprobe snd_pcm_oss &lt;br /&gt;
 # grep snd_pcm_oss /proc/modules&lt;br /&gt;
 snd_pcm_oss 54528 0 - Live 0xf04a2000 &lt;br /&gt;
 snd_mixer_oss 20032 1 snd_pcm_oss, Live 0xf048b000&lt;br /&gt;
 snd_pcm 95016 3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec, Live 0xf01dd000&lt;br /&gt;
 snd 58980 8    &lt;br /&gt;
 snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer, Live 0xf01b1000&lt;br /&gt;
&lt;br /&gt;
okay it&#039;s there now. The drivers will be different based on your soundcard. Now to make it take affect next reboot, we will add it to /etc/modules&lt;br /&gt;
&lt;br /&gt;
 # echo snd_pcm_oss &amp;gt;&amp;gt; /etc/modules&lt;br /&gt;
&lt;br /&gt;
 $ id&lt;br /&gt;
 uid=1000(franks) gid=1000(franks) groups=20(dialout),24(cdrom),25(floppy),29(audio),1000(franks)&lt;br /&gt;
&lt;br /&gt;
As you can see, I am in the group &amp;quot;audio&amp;quot;. If you don&#039;t see yourself in that group, ask your sysadmin to add you to the audio group in /etc/group:&lt;br /&gt;
 $ grep audio /etc/group&lt;br /&gt;
 audio:x:29:franks,asterisk&lt;br /&gt;
&lt;br /&gt;
shows that franks and asterisk are the two users in the audio group on this system. The users are comma delimited.&lt;br /&gt;
&lt;br /&gt;
Finally, make sure that your volume and pcm are turned up in your mixer software, such as aumix.&lt;br /&gt;
&lt;br /&gt;
Now give it a try! &lt;br /&gt;
&lt;br /&gt;
[http://sourceforge.net/projects/mpg123 mpg123] is a [[CLI]] audio client.&lt;br /&gt;
[http://www.gnome.org/projects/rhythmbox/ rhythmbox] is a [[GUI]] audio client.&lt;br /&gt;
&lt;br /&gt;
== dsp already in use ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sometimes you will have two applications trying to access your audio device. &lt;br /&gt;
The culprit can be discovered with lsof assuming your audio device is /dev/dsp like it is on BSD:&lt;br /&gt;
&lt;br /&gt;
 $ lsof | grep dsp&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
 firefox-b 14905 frank    1w  VCHR       30,3        0t0     38 /dev/dsp0.0&lt;br /&gt;
&lt;br /&gt;
as you can see, one of the websites I am viewing with firefox has claimed access to my dsp first. I must now close that tab in firefox, and restart xmms, and all is well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Stop embedded audio in Firefox ==&lt;br /&gt;
&lt;br /&gt;
 vi ~/.mozilla/firefox/[[variables|0wt4rci4.default]]/chrome/userContent.css&lt;br /&gt;
&lt;br /&gt;
and add these lines (creating the file if it doesn&#039;t already exist)&lt;br /&gt;
&lt;br /&gt;
 /* block embedded sounds */&lt;br /&gt;
 embed[src*=.mid] { display: none !important }&lt;br /&gt;
 embed[src*=.mp2] { display: none !important }&lt;br /&gt;
 embed[src*=.mp3] { display: none !important }&lt;br /&gt;
 embed[src*=.mp4] { display: none !important }&lt;br /&gt;
 embed[src*=.wav] { display: none !important }&lt;br /&gt;
 embed[src*=.wma] { display: none !important }&lt;br /&gt;
&lt;br /&gt;
== Stop embedded audio in flash ==&lt;br /&gt;
&lt;br /&gt;
Not a highly recommended hack, but I opened &lt;br /&gt;
&lt;br /&gt;
 vi ~/.mozilla/plugins/libflashplayer.so&lt;br /&gt;
&lt;br /&gt;
and did a &lt;br /&gt;
&lt;br /&gt;
 /dsp&lt;br /&gt;
&lt;br /&gt;
which found /dev/dsp which I replaced with /dev/xxx in order to stop flash from accessing my /dev/dsp, as it never released it properly.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have audio working, you may want to try listening to an online streaming radio station such as our recommend [[Unixhelp:Audio|st&lt;br /&gt;
1000&lt;br /&gt;
reaming stations]].&lt;/div&gt;</summary>
		<author><name>SycZek</name></author>
	</entry>
</feed>