Slashdot Mirror


User: coma

coma's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:Answer: the end of the world. on Will Instant Messaging Ever Unite? · · Score: 1

    Not so fast with the Jabber angle...

    Jabber.org would benefit from an open IM standard. Unfortunately, Jabber.com would lose its only competitive advantage and would quickly go out of business.

    It's important to distinguish between consumer IM and enterprise IM. The open source Jabber servers would be adopted by techies and small shops (like linux in the early days), while Jabber.com would have a fair chance at selling to the high end enterprise market where perceived scale, reliability and 24/7 support are a must.

    Remember, AOL and Microsoft don't even have an offering in the enterprise world yet.

  2. it's possible. here's some tips and command lines. on Multiple Soundcards Under Linux? · · Score: 1

    It's quite possible to set up linux with multiple sound cards. They manifest themselves as additional /dev/[mixer,audio,dsp] devices.

    The application I set up was using multiple Real encoders taking input from two soundcards and outputting it to 6 Real streams (2 sources @ 3 bandwidths each)

    Some software is hardcoded to use /dev/mixer when setting up the line/mic levels, if not /dev/audio, too.

    The solution? A sickening hack...but it worked :) You fire up one version of the player, and once it's happy, you change the device (via symlinks) that /dev/[mixer,audio,dsp] point to.

    For example:
    ln -s /dev/dsp0 /dev/dsp
    ln -s /dev/audio0 /dev/audio
    ln -s /dev/mixer0 /dev/mixer
    mp3play mp3file_for_soundcard1.mp3

    ln -s /dev/dsp1 /dev/dsp
    ln -s /dev/audio1 /dev/audio
    ln -s /dev/mixer1 /dev/mixer

    mp3play mp3file_for_soundcard2.mp3

    Yeah, yeah..I know it's horrible, but if you haven't got the source for the application, and it doesn't allow you to specify different devices on the command line, this should work.

    And as ppl have correctly pointed out, make sure you don't have any resource conflicts:
    cat /proc/interrupts
    cat /proc/ioports

    Check that all soundcards have been detected using:
    cat /dev/sndstat

    You should see entries for each of the soundcards.

    Hope this helps.

    Coma