个人工具

UbuntuHelp:MidiSoftwareSynthesisHowTo

来自Ubuntu中文

Oneleaf讨论 | 贡献2007年5月13日 (日) 11:19的版本 (New page: {{From|https://help.ubuntu.com/community/MidiSoftwareSynthesisHowTo}} {{Languages|php5}} Use this guide to get MIDI sound working unless: a. you have a [[UbuntuHelp:SoundcardsWithHardwa...)

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航, 搜索



Use this guide to get MIDI sound working unless:

a. you have a soundcard with a linux-supported hardware synth
a. you are using external MIDI instruments

Most people need to setup MIDI sound using software synthesis.

There are two main programs that do software synthesis, TiMidity++ and Fluidsynth. The installation and setup of TiMidity++ is covered in this guide.

Installing TiMidity++

Install TiMidity++

You will need the Universe repository enabled (see AddingRepositoriesHowto). Install the package `timidity` (see SynapticHowto).

Install samples

Next you need a set of samples. The easiest way is to install package 'freepats' (a 28 MB download), and you're done. Alternatively, for better sound, add the following repository line to your /etc/apt/sources.list file:

deb http://www.fbriere.net/debian/dists/etch misc/
</code>
You may then install the package 'timidity-patches-eaw' (a 31 MB download), and change the following line in the /etc/timidity/timidity.cfg file:
<pre>
source /etc/timidity/freepats.cfg
</code>
It should read:
<pre>
dir /usr/share/timidity/patches-eaw
source /etc/timidity/eawpats.cfg
</code>
Then get the configuration file:
<pre>
cd /etc/timidity
sudo wget http://timidity.s11.xrea.com/files/cfgs/eawpats.cfg
</code>
To use other samples, read 'Finding and setting up a soundfont' below.

==== See if midi plays ====
Once you've done that, you can try playing a midi file:
<pre>
timidity myfile.mid
</code>
If all is well, you should hear delicate strains of synthesised music. If you have problems, read 'Reducing CPU usage' below.

=== Setting up TiMidity++ as a MIDI server ===

Issue the following commands: You may not need all these (I found it worked with just the first two). 
<pre>
sudo modprobe snd-seq-device
sudo modprobe snd-seq-midi
sudo modprobe snd-seq-oss
sudo modprobe snd-seq-midi-event
sudo modprobe snd-seq
</code>
This loads missing modules. Then enter:
<pre>
timidity -iA -B2,8 -Os1l -s 44100
</code>
This loads TiMidity++ as a midi server and opens 2 midi ports, 128:0 and 128:1.
After issuing it, you should have midi players working.  You can open another terminal and issue a command such as:
<pre>
pmidi -p 128:0 music.mid
kmid music.mid
</code>
To close TiMidity++, press CTRL-C in the terminal it's running in.

Launching the server as root may improve performance because of higher priorities given to the process.

Notedit, or your score editor of choice can then be loaded and recognised the midi ports.

If the computer is busy doing something else other than playing music, you may hear scratches or have latency problems. This might be solved with a realtime kernel patch, but is out of the scope of this HOWTO.

=== Automatically starting TiMidity++ on boot ===

Ubuntu sets up scripts in /etc/init.d when you install TiMidity++. To start it on boot, edit /etc/default/timidity and uncomment the line
<pre>
TIM_ALSASEQ=true
</code>
You'll also need to add the modules you loaded earlier to /etc/modules.

=== Finding and setting up a soundfont ===

Websites: http://www.personalcopy.com (try Unison.sf2) http://www.hammersound.net/ or look up soundfonts in a search engine. A big list may be found at http://timidity.s11.xrea.com/files/readme_cfgp.htm in which the fifth soundfont from the top (SGM-whatever) is quite complete for general use with TiMidity++.

If you end up with a file ending with .sfArk, it's compressed in an annoying proprietary format. You may need a windows machine to decompress it, depending which version they've used. Details at http://melodymachine.com/sfark.htm There is a Linux version available on the website.

Then you need to edit the file /etc/timidity/timidity.cfg and add the following line (edit as appropriate):

<pre>
soundfont /pathtothesoundfontfile/soundfontfile.sf2
</code>

=== sfArk on Linux ===

If you need to decompress sfArk compressed Soundfonts whenever the Linux version of the extractor does not work, then you can easily install sfArk into linux using WINE.  If you don't have WINE installed on your machine then you can install it with the following command:
<pre>
sudo apt-get install wine
</code>
Next, you must obtain sfArk from this URL listed above.  Once you have WINE installed, all you must do is change to the directory where you have downloaded sfArk and issue the following command:
<pre>
wine nameoffile
</code>
sfArk also works beautifully in Crossover Office 5 as well.


=== Reducing CPU usage ===

If TiMidity++ uses too much CPU on your slow machine, and you're running a version prior to Breezy Badger, try adding these lines to the start of /etc/timidity/timidity.cfg (you may need to create this file)
<pre>
opt EFresamp=l          #use linear resampling
opt EFvlpf=d            #disable VLPF
opt EFreverb=d          #disable reverb
opt EFchorus=d          #disable chorus
opt EFdelay=d           #disable delay
</code>

On Breezy Badger and Dapper Drake, simply uncomment all the lines in the section of the file that deals with a slow CPU. However, one of the lines contains a mistake. The "opt no-antialias" line should read "opt --no-anti-alias" instead. Also, make "opt p32a" say "opt p64a" because 32 voices just isn't enough.
=== Discussion ===

Ask questions at [http://ubuntuforums.org/showthread.php?p=336935]

----
CategoryDocumentation

[[category:UbuntuHelp]]