龙芯开发差不多了···据某叫兽说5年会改变现在的CPU市场格局···
政府如果要力挺龙芯的话大概也就得搞反盗版了,国人都穷噶,买不起正版(WINDOWS可是很贵的,PHOTOSHOP什么的都很贵的,还有就是龙芯的架构问题,是不能用windows的。)
所以大概开源程序会成主流?
不过现在说什么都还为时尚早,国产的CPU还是要支持的,等龙芯3出来了去弄他一块玩玩。
Read: 789
龙芯开发差不多了···据某叫兽说5年会改变现在的CPU市场格局···
政府如果要力挺龙芯的话大概也就得搞反盗版了,国人都穷噶,买不起正版(WINDOWS可是很贵的,PHOTOSHOP什么的都很贵的,还有就是龙芯的架构问题,是不能用windows的。)
所以大概开源程序会成主流?
不过现在说什么都还为时尚早,国产的CPU还是要支持的,等龙芯3出来了去弄他一块玩玩。
Read: 789
Using xine’s ALSA output pluggin, you can output to a specific device (or all devices).
Finding the names of your cards
cat /proc/asound/cards
oliver@panda:~$ cat /proc/asound/cards
0 [Live ]: EMU10K1 - SBLive! Value [CT4832]
SBLive! Value [CT4832] (rev.8, serial:0x80271102) at 0xd000, irq 5
1 [Headset ]: USB-Audio - Logitech USB Headset
Logitech Logitech USB Headset at usb-0000:00:04.2-2, full speed
Using a specific soundcard: method 1
plughw:Headset
Alternatively, I had to use this entry to make my USB headphones work.
hw:Headset,0
Using a specific soundcard: method 2
pcm.intel8x0 {
type plug
slave.pcm "hw:0"
}
ctl.intel8x0 {
type hw
card 0
}
pcm.usb-audio {
type plug
slave.pcm "hw:1"
}
ctl.usb-audio {
type hw
card 1
}
Using all your soundcards at once
This example allows Amarok to play music through all your sound devices at the same time.
# This creates a 2-channel interleaved pcm stream based on
# two 2-channel slave devices.
pcm.both {
type route;
slave.pcm {
# create a virtual 4-channel device from two sound devices
type multi;
slaves.a.pcm "plughw:Live";
slaves.a.channels 2;
slaves.b.pcm "plughw:Headset";
slaves.b.channels 2;
bindings.0.slave a;
bindings.0.channel 0;
bindings.1.slave a;
bindings.1.channel 1;
bindings.2.slave b;
bindings.2.channel 0;
bindings.3.slave b;
bindings.3.channel 1;
}
# Map two channels of input to four channels of output
ttable.0.0 1;
ttable.1.1 1;
ttable.0.2 1;
ttable.1.3 1;
}
# Some programs will be unhappy if there is no mixer to talk to,
# so we set this to one of the cards.
# This could be any card (Headset or Live in this example).
ctl.both {
type hw;
card Headset;
}
plug:both
Other tips
To use a dmixed virtual device, ensure that the "sound card can do mmap" checkbox is unchecked.
Read: 930