当前位置:  软件>(一个难倒不少的人问题)redhat 声卡 alsa 安装遇到的问题 iis7站长之家

ALSA的C++封装库 Drumstick

    来源:    发布时间:2014-12-27

    本文导语:  Drumstick 是一个ALSA的音序器 (MIDI 接口)的C++封装库 示例代码: #include #include int main(int argc, char **argv) { QApplication app(argc, argv, false); // create a client object on the heap drumstick::MidiClient *client = new drumstick::MidiClient; client->open();...

Drumstick 是一个ALSA的音序器 (MIDI 接口)的C++封装库

示例代码:

#include 
#include

int main(int argc, char **argv) {
QApplication app(argc, argv, false);

// create a client object on the heap
drumstick::MidiClient *client = new drumstick::MidiClient;
client->open();
client->setClientName( "MyClient" );

// create the port
drumstick::MidiPort *port = client->createPort();
port->setPortName( "MyPort" );
port->setCapability( SND_SEQ_PORT_CAP_READ | SND_SEQ_PORT_CAP_SUBS_READ );
port->setPortType( SND_SEQ_PORT_TYPE_MIDI_GENERIC );
// subscribe the port to some other client:port
port->subscribeTo( "20:0" ); // or "name:port", like in "KMidimon:0"

// create an event object on the stack, to send a note on message
drumstick::NoteOnEvent ev( 0, 66, 100 ); // (channel, note number, velocity)
ev.setSource( port->getPortId() );
ev.setSubscribers(); // deliver to all the connected ports
ev.setDirect(); // not scheduled, deliver immediately
client->output( &ev ); // or outputDirect() if you prefer not buffered
client->drainOutput(); // flush the buffer

// close and clean
client->close();
delete client;
return 0;
}

    
 
 

您可能感兴趣的文章:

  • ALSA库的C++封装 aseqmm
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • alsa应用编程alsa-lib怎么使用?
  • alsa-driver与alsa-lib之间的关系
  • 求助 !!ALSA声卡驱动错误!
  • 請問kernel 2.4能使用alsa sound driver嗎
  • 请教下关于alsa-lib的问题。
  • alsa 资料
  • (一个难倒不少的人问题)redhat 声卡 alsa 安装遇到的问题
  • 以下这个错误信息是什么意思(关于ALSA的)
  • Linux声卡驱动 ALSA driver
  • SDL与ALSA冲突?
  • 请问 linux 是如何调用 alsa的控制接口的??是通过控制接口名字吗?
  • 我在安装alsa时出错,请各位帮忙
  • alsa driver問題
  • 请教Linux下ALSA声道切换
  • alsa 框架分析,大家帮忙。
  • ALSA编程非交错模式采集到的数据都是0
  • [ALSA]如何使得采集buff中有数据时通知上层来取
  • 高级Linux声音架构 ALSA
  • alsa放音模式
  • ALSA打开设备问题求助


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3