个人工具

“UbuntuHelp:BluetoothAudio”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第3行: 第3行:
 
=== Overview of Bluetooth Audio ===
 
=== Overview of Bluetooth Audio ===
 
There are two different Audio profiles implemented in Bluetooth, which one to use depends on how you will use your headset and how you plan to use it.
 
There are two different Audio profiles implemented in Bluetooth, which one to use depends on how you will use your headset and how you plan to use it.
 
 
The "sco" audio profile is a low quality, low latency connection.  The sound quality is comparable to a cell phone.  The poor sound quality is very noticeable when listening to music.
 
The "sco" audio profile is a low quality, low latency connection.  The sound quality is comparable to a cell phone.  The poor sound quality is very noticeable when listening to music.
 
 
The "a2d" audio profile is a high quality compressed connection, and provides excellent audio quality.  As of July 13, 2007 the a2d audio driver is not available via apt, and requires manual compiling for installation.  This is the preferred audio configuration for Bluetooth.
 
The "a2d" audio profile is a high quality compressed connection, and provides excellent audio quality.  As of July 13, 2007 the a2d audio driver is not available via apt, and requires manual compiling for installation.  This is the preferred audio configuration for Bluetooth.
 
 
=== Installing Low quality "sco" audio drivers ===
 
=== Installing Low quality "sco" audio drivers ===
 
Note:  This software is no longer maintained by the original authors
 
Note:  This software is no longer maintained by the original authors
 
===== Loading Prerequisites: =====
 
===== Loading Prerequisites: =====
 
sudo apt-get install bluez-btsco
 
sudo apt-get install bluez-btsco
 
 
===== Loading the btsco module. =====
 
===== Loading the btsco module. =====
 
sudo modprobe snd-bt-sco
 
sudo modprobe snd-bt-sco
 
 
Note:  If you prefer this module be loaded automatically at boot, run 'gksu gedit /etc/modules' and add a line for 'snd-bt-sco'.
 
Note:  If you prefer this module be loaded automatically at boot, run 'gksu gedit /etc/modules' and add a line for 'snd-bt-sco'.
 
 
===== Determine the BT Address of the headset. =====
 
===== Determine the BT Address of the headset. =====
* Put the device into "Pairing" mode.  This procedure varies by headset, but usually involves holding down the power button for 10-15 seconds.
+
# Put the device into "Pairing" mode.  This procedure varies by headset, but usually involves holding down the power button for 10-15 seconds.
* Open a terminal and run 'hcitool scan'
+
2. Open a terminal and run 'hcitool scan'
 
""Note:  I am using my address '00:07:a4:b8:f9:77' for this example.""
 
""Note:  I am using my address '00:07:a4:b8:f9:77' for this example.""
 
""Please substitute your address from the hcitool scan output for the remaining steps.""
 
""Please substitute your address from the hcitool scan output for the remaining steps.""
* Look for output like this.
+
3. Look for output like this.
 
+
 
ellie@ellie-laptop:~$ hcitool scan
 
ellie@ellie-laptop:~$ hcitool scan
 
Scanning ...
 
Scanning ...
 
00:07:A4:B8:F0:77      Motorola HT820
 
00:07:A4:B8:F0:77      Motorola HT820
 
ellie@ellie-laptop:~$
 
ellie@ellie-laptop:~$
 
+
4. Edit  /etc/bluetooth/hcid.conf (gksu gedit  /etc/bluetooth/hcid.conf ) and add a section like this
* Edit  /etc/bluetooth/hcid.conf (gksu gedit  /etc/bluetooth/hcid.conf ) and add a section like this
+
 
device 00:07:A4:B8:F9:77 {
 
device 00:07:A4:B8:F9:77 {
 
name "Motorola HT820"
 
name "Motorola HT820"
第36行: 第28行:
 
encrypt enable;
 
encrypt enable;
 
}
 
}
 
+
5. Restart Bluetooth services (sudo /etc/init.d/bluetooth restart)
* Restart Bluetooth services (sudo /etc/init.d/bluetooth restart)
+
 
+
 
+
 
===== Starting the "sco" driver for the first time. =====
 
===== Starting the "sco" driver for the first time. =====
* Place the Headset into "pairing" mode as above.
+
# Place the Headset into "pairing" mode as above.
* Open a terminal and run 'btsco -v 00:07:a4:b8:f9:77'
+
2. Open a terminal and run 'btsco -v 00:07:a4:b8:f9:77'
* This should cause the gnome bluetooth manager to ask you for a pin number to pair.  This is usually 0000 or 1234
+
3. This should cause the gnome bluetooth manager to ask you for a pin number to pair.  This is usually 0000 or 1234
 
+
 
===== Testing the "sco" driver. =====
 
===== Testing the "sco" driver. =====
 
aplay -B 1000000 -D plughw:Headset /usr/share/sounds/login.wav
 
aplay -B 1000000 -D plughw:Headset /usr/share/sounds/login.wav
 
 
You should hear the Ubuntu Login sound.
 
You should hear the Ubuntu Login sound.
 
 
===== Configuring btsco to run automatically at each boot. =====
 
===== Configuring btsco to run automatically at each boot. =====
* Open System -> Preferences -> Sessions and select "startup Programs"
+
# Open System -> Preferences -> Sessions and select "startup Programs"
* Click New.
+
2. Click New.
* Enter "BT Sco Headset audio" for the Name.
+
3. Enter "BT Sco Headset audio" for the Name.
* Enter '/usr/bin/btsco -r -f 00:07:a4:b8:f9:77'
+
4. Enter '/usr/bin/btsco -r -f 00:07:a4:b8:f9:77'
* Click Ok and Apply
+
5. Click Ok and Apply
 
+
 
===== Setting the headset as your default alsa audio device. =====
 
===== Setting the headset as your default alsa audio device. =====
 
asoundconf set-default-card Headset
 
asoundconf set-default-card Headset
 
This will create the appropriate entries in your .asoundrc file.  This setting is per-user.
 
This will create the appropriate entries in your .asoundrc file.  This setting is per-user.
 
 
 
=== Installing High quality "a2d" audio drivers ===
 
=== Installing High quality "a2d" audio drivers ===
 
See [[http://bluetooth-alsa.sf.net/build.html new build docs]] for information on these drivers.
 
See [[http://bluetooth-alsa.sf.net/build.html new build docs]] for information on these drivers.
 
 
There is a bluetooth-alsa package in the testing Debian apt repository, perhaps we can port it for gutsy?
 
There is a bluetooth-alsa package in the testing Debian apt repository, perhaps we can port it for gutsy?
 
 
=== Troubleshooting ===
 
=== Troubleshooting ===
 
The BluetoothSkype; page has additional information for configuring the new driver.
 
The BluetoothSkype; page has additional information for configuring the new driver.
 
See [[http://bluetooth-alsa.sf.net/contact.html Contact/troubleshooting]] for troubleshooting information.
 
See [[http://bluetooth-alsa.sf.net/contact.html Contact/troubleshooting]] for troubleshooting information.
 
 
----
 
----
 
[[category:CategoryBluetooth]] [[category:CategoryAudio]]
 
[[category:CategoryBluetooth]] [[category:CategoryAudio]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2007年11月30日 (五) 16:18的版本


Overview of Bluetooth Audio

There are two different Audio profiles implemented in Bluetooth, which one to use depends on how you will use your headset and how you plan to use it. The "sco" audio profile is a low quality, low latency connection. The sound quality is comparable to a cell phone. The poor sound quality is very noticeable when listening to music. The "a2d" audio profile is a high quality compressed connection, and provides excellent audio quality. As of July 13, 2007 the a2d audio driver is not available via apt, and requires manual compiling for installation. This is the preferred audio configuration for Bluetooth.

Installing Low quality "sco" audio drivers

Note: This software is no longer maintained by the original authors

Loading Prerequisites:

sudo apt-get install bluez-btsco

Loading the btsco module.

sudo modprobe snd-bt-sco Note: If you prefer this module be loaded automatically at boot, run 'gksu gedit /etc/modules' and add a line for 'snd-bt-sco'.

Determine the BT Address of the headset.
  1. Put the device into "Pairing" mode. This procedure varies by headset, but usually involves holding down the power button for 10-15 seconds.

2. Open a terminal and run 'hcitool scan' ""Note: I am using my address '00:07:a4:b8:f9:77' for this example."" ""Please substitute your address from the hcitool scan output for the remaining steps."" 3. Look for output like this. ellie@ellie-laptop:~$ hcitool scan Scanning ... 00:07:A4:B8:F0:77 Motorola HT820 ellie@ellie-laptop:~$ 4. Edit /etc/bluetooth/hcid.conf (gksu gedit /etc/bluetooth/hcid.conf ) and add a section like this device 00:07:A4:B8:F9:77 { name "Motorola HT820" auth enable; encrypt enable; } 5. Restart Bluetooth services (sudo /etc/init.d/bluetooth restart)

Starting the "sco" driver for the first time.
  1. Place the Headset into "pairing" mode as above.

2. Open a terminal and run 'btsco -v 00:07:a4:b8:f9:77' 3. This should cause the gnome bluetooth manager to ask you for a pin number to pair. This is usually 0000 or 1234

Testing the "sco" driver.

aplay -B 1000000 -D plughw:Headset /usr/share/sounds/login.wav You should hear the Ubuntu Login sound.

Configuring btsco to run automatically at each boot.
  1. Open System -> Preferences -> Sessions and select "startup Programs"

2. Click New. 3. Enter "BT Sco Headset audio" for the Name. 4. Enter '/usr/bin/btsco -r -f 00:07:a4:b8:f9:77' 5. Click Ok and Apply

Setting the headset as your default alsa audio device.

asoundconf set-default-card Headset This will create the appropriate entries in your .asoundrc file. This setting is per-user.

Installing High quality "a2d" audio drivers

See [new build docs] for information on these drivers. There is a bluetooth-alsa package in the testing Debian apt repository, perhaps we can port it for gutsy?

Troubleshooting

The BluetoothSkype; page has additional information for configuring the new driver. See [Contact/troubleshooting] for troubleshooting information.