LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 10-16-2010, 02:59 PM   #1
pusrob
Member
 
Registered: Jan 2006
Distribution: Gentoo
Posts: 507

Rep: Reputation: 36
no midi playback so far with EMU10k1


Hi.

Here's the problem of mine: I cannot make my EMU10k1 based sound card (Audigy 2 ZS) to play midi.

What I tried to make it work so far:
1. Install sound fonts: unison.sf2 and FluidR3_GS.sf2
2. Use asfxload to load these soundfonts.
3. Check if they are truly loaded:
Code:
user@computer: cat /proc/asound/card0/wavetableD1
Device: Emu10k1
Ports: 4
Addresses: 17:0 17:1 17:2 17:3
Use Counter: 1
Max Voices: 64
Allocated Voices: 0
Memory Size: 134217728
Memory Available: 101757800
Allocated Blocks: 704
SoundFonts: 2
Instruments: 1614
Samples: 703
Locked Instruments: 1614
Locked Samples: 703
4. Check ports with 'aplaymidi -l'
Code:
user@computer: aplaymidi -l
 Port    Client name                      Port name
 14:0    Midi Through                     Midi Through Port-0
 16:0    SB Audigy 2 ZS Notebook [SB0530] Audigy MPU-401 (UART)
 16:32   SB Audigy 2 ZS Notebook [SB0530] Audigy MPU-401 #2    
 17:0    Emu10k1 WaveTable                Emu10k1 Port 0       
 17:1    Emu10k1 WaveTable                Emu10k1 Port 1       
 17:2    Emu10k1 WaveTable                Emu10k1 Port 2       
 17:3    Emu10k1 WaveTable                Emu10k1 Port 3
5. check again with 'aconnect -o'
Code:
user@computer: aconnect -o
client 14: 'Midi Through' [type=kernel]   
    0 'Midi Through Port-0'               
client 16: 'SB Audigy 2 ZS Notebook [SB0530]SB Audigy 2 ZS Notebook [SB0530' [type=kernel]
    0 'Audigy MPU-401 (UART)'                                                             
   32 'Audigy MPU-401 #2'                                                                 
client 17: 'Emu10k1 WaveTable' [type=kernel]                                              
    0 'Emu10k1 Port 0  '                                                                  
    1 'Emu10k1 Port 1  '                                                                  
    2 'Emu10k1 Port 2  '                                                                  
    3 'Emu10k1 Port 3  '
6. check what kernel modules are loaded
Code:
user@computer: lsmod | grep snd
snd_seq_dummy           1343  0                
snd_emu10k1_synth       4840  0                
snd_emux_synth         25522  1 snd_emu10k1_synth
snd_seq_virmidi         3787  1 snd_emux_synth   
snd_seq_midi_emul       4165  1 snd_emux_synth   
snd_hda_codec_realtek   235506  1                
snd_emu10k1           123260  4 snd_emu10k1_synth
snd_ac97_codec         99186  1 snd_emu10k1      
ac97_bus                1086  1 snd_ac97_codec   
snd_hda_intel          19907  1                  
snd_hda_codec          54244  2 snd_hda_codec_realtek,snd_hda_intel
snd_pcm_oss            32591  0                                    
snd_mixer_oss          12606  1 snd_pcm_oss                        
snd_seq_midi            4400  1                                    
snd_pcm                60471  5 snd_emu10k1,snd_ac97_codec,snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_util_mem            2064  2 snd_emux_synth,snd_emu10k1                                        
snd_rawmidi            15515  3 snd_seq_virmidi,snd_emu10k1,snd_seq_midi                          
snd_seq_midi_event      4628  2 snd_seq_virmidi,snd_seq_midi                                      
snd_seq                42881  8 snd_seq_dummy,snd_emux_synth,snd_seq_virmidi,snd_seq_midi_emul,snd_seq_midi,snd_seq_midi_event
snd_hwdep               5380  3 snd_emux_synth,snd_emu10k1,snd_hda_codec                                                      
snd_timer              15582  3 snd_emu10k1,snd_pcm,snd_seq                                                                   
snd_seq_device          4493  6 snd_seq_dummy,snd_emu10k1_synth,snd_emu10k1,snd_seq_midi,snd_rawmidi,snd_seq                  
snd                    46446  22 snd_emux_synth,snd_seq_virmidi,snd_hda_codec_realtek,snd_emu10k1,snd_ac97_codec,snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_rawmidi,snd_seq,snd_hwdep,snd_timer,snd_seq_device                                                                                             
soundcore               4598  1 snd                                                                                                                              
snd_page_alloc          6249  3 snd_emu10k1,snd_hda_intel,snd_pcm
7. check alsamixer if the synth channel is muted or the slider is set too low.

8. check if a simple midi file can be played with the variety of the above listed ports (used 'aplaymidi' here).

9. check if tuxguitar gives any sound during tab playback (actually, this is the reason I need midi)

And nothing so far. No midi. Any suggestions? Timidity or fluidsynth or any other softsynth is out of the question. I need my CPU power for other things.

Some extra info:
OS: Debian GNU/Linux: testing (squeeze)
Other sound (like music and movie playback) works fine.

If you need any more info or some extra output just write what you need, and I'll provide them as soon as possible.

Thanks for reading.

Last edited by pusrob; 10-16-2010 at 03:05 PM.
 
Old 10-17-2010, 11:35 AM   #2
pusrob
Member
 
Registered: Jan 2006
Distribution: Gentoo
Posts: 507

Original Poster
Rep: Reputation: 36
OK guys, no need for help any more. The problem solved itself. Somehow. I have no idea how. I didn't do anything. It just works now.

Actually this isn't the first time a problem solves itself on my computer. Interesting...

Anyway thanks again for reading.
 
  


Reply

Tags
emu10k1 no midi



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to configure xmms to use my sblive value emu10k1 midi synthesizer trist007 Linux - Newbie 5 03-31-2009 02:57 AM
MIDI Playback with amaroK earthmeLon SUSE / openSUSE 1 10-20-2006 11:50 AM
MIDI playback through midi keyboad. akihandyman Linux - Newbie 5 05-25-2005 01:37 AM
Midi playback, composition jerzakie Linux - Software 6 04-19-2005 02:45 PM
CreativeAudioPCI128+ALSA - No midi playback? leadazide Linux - Hardware 1 07-29-2004 12:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration