Broadcasting with Lubuntu

Need to broadcast using Lubuntu? Hopefully this tutorial will be of some assistance to you. Special thanks to timfromtang for his work in getting this setup figured out. The setup i describe “just works” nocomplex bridging or such required.

Please note:
This setup will not work on the 64 bit architecture

. If you still want to give it a go you may want to read this post and let us know here if you were successful.
Install the Software

Software Installation

Setup Default Sound Device

create a file called “.asoundrc” in your home directory your home directory
copy the following code to that file:

pcm.jack { 
 type jack 
 playback_ports { 
  0 idjc_default:ch_in_3 
  1 idjc_default:ch_in_4 
 } 
 capture_ports { 
  0 alsa_pcm:capture_1 
  1 alsa_pcm:capture_2 
 } 
} 

pcm.dmixout { 
 # Just pass this on to the system dmix 
 type plug 
 slave { 
  pcm "dmix" 
  } 
 } 

pcm.!default { 
 type plug 
 slave { 
  pcm "jack" 
  }
 }

Final Stage of Setup