We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSound,  Music Libraries › Minim error (possibly OS X)
Page Index Toggle Pages: 1
Minim error (possibly OS X) (Read 488 times)
Minim error (possibly OS X)
Jan 6th, 2009, 6:19pm
 
Hi Everyone

Im trying to write a simple sequencer using Minim and Processing in Eclipse on Mac OS X. When I instantiate this class I get an error:

Code:

import processing.core.PApplet;
import ddf.minim.*;

public class Sequencer
{

Minim m;

AudioPlayer song;



public Sequencer( PApplet p )

{


m = new Minim( p );


song = m.loadFile( "bling1.wav" );


song.play();

}



public void stop(){


song.close();


m.stop();

}

}


Error:

Code:

2009-01-06 17:52:50.054 java[977:17203] Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio, 262): Symbol not found: __keymgr_get_per_thread_data
Referenced from: /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
Expected in: /usr/lib/libSystem.B.dylib
2009-01-06 17:52:50.055 java[977:17203] Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x1b7a10 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)


In the documentation for Minim it is mentioned that the library is not tested on OS X. Could this be an OSX issue?

Best
Carl Emil
Re: Minim error (possibly OS X)
Reply #1 - Jan 7th, 2009, 9:39pm
 
Well, what do you know? I unplugged my M-audio Firewire 401. That helped.
Page Index Toggle Pages: 1