Created
January 12, 2013 18:28
-
-
Save arcusfelis/4519776 to your computer and use it in GitHub Desktop.
.asoundrc for Creative E-MU 0204 USB audiocard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .asoundrc for Creative E-MU 0204 USB audiocard. | |
| pcm.!default emu | |
| pcm.emudev "hw:1,0" | |
| pcm.emu | |
| { | |
| type asym | |
| playback.pcm | |
| { | |
| type plug | |
| slave { | |
| pcm emudev | |
| # 24bit | |
| format S24_3LE | |
| rate 44100 | |
| #rate 48000 | |
| #rate 192000 | |
| } | |
| } | |
| capture.pcm | |
| { | |
| type route | |
| slave { | |
| pcm | |
| { | |
| type plug | |
| slave { | |
| pcm emudev | |
| # Set a sampling rate for Skype | |
| rate 44100 | |
| } | |
| } | |
| channels 2 | |
| } | |
| ttable { | |
| # to.from volume | |
| # Copy from 0 channel (left channel) to 0 channel | |
| # Copy from 0 channel (left channel) to 1 channel | |
| 0.0 1 | |
| 1.0 1 | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment