关于HID转MIDI的问题
我想知道是否有人对将 HID 信号转换为 MIDI 信号有一些建议...我拥有的是 U-HID 板,由于它将 HID 信号发送到我的计算机,我无法使用其模拟功能(如电位计)它适用于其他不适合 HID 但喜欢 MIDI 的程序。
所以我想知道是否有人可以为我指出使该 HID 板与 MIDI 友好问题一起工作的方向。比如中间程序
我运行的是Windows Vista操作系统。 我正在使用的板的链接是 http://www.u-hid.com /home/index.php 我想使用这个板的程序是 Traktor(它可以在本机乐器主页找到......显然我不能发布多个链接......但它是一个数字 djing 程序)。 Traktor 也不支持 vst 插件。
我有 C 编程语言的基础知识,并且一直在搞 java。
谢谢, 杰西
I was wondering if anyone had some suggestions for converting HID signals to MIDI signals... what I have is a U-HID board and since it sends HID signals to my computer I can't use the analog capabilities (like the potentiometers) of it in other programs that are not HID friendly but do like MIDI.
So what I was wondering is if anyone could point me in the direction for making this HID board work with MIDI friendly probrams. such as intermediate programs
I run a Windows Vista operating system.
the link to the board I'm using is http://www.u-hid.com/home/index.php
the program I would like to use this board for is Traktor ( it can be found at the native instruments home page... transparently I can't post more than one link... but it is a digital djing program). Traktor does not support vst plugins either.
I have basic knowledge of the C programming language and have been messing with java.
Thanks,
Jesse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以看看通用虚拟 MIDI
我为 Windows 开发的驱动程序:
http://www.tobias-erichsen.de/virtualMIDI.html< /a>
该驱动程序有一个简单的用户空间 API 可供创建
Windows 系统上可自由命名的 MIDI 端口
从 XP 到 W7,32 位和 64 位。
该驱动程序用于我的 rtpMIDI 网络 midi 驱动程序
和我的loopMIDI虚拟MIDI电缆(以及在一些第三
以及派对产品)
最诚挚的问候,
托比亚斯
you could take a look at the generic virtual MIDI
driver I have developed for Windows:
http://www.tobias-erichsen.de/virtualMIDI.html
This driver has a simple user-space API to create
freely nameable MIDI-ports on Windows systems
from XP up to W7, both 32 and 64 bit.
This driver is used in my rtpMIDI network midi driver
and my loopMIDI virtual midi cable (and in some 3rd
party products as well)
Best regards,
Tobias
HID 报告类型因设备而异。虽然 HID 是一个标准协议,但它的级别非常低。您找不到更高级别的标准,因此没有软件可以通用地将 HID 转换为 MIDI。
不过,您也许能够编写一个程序来支持该板。 (事实上,如果我有这样的一块板,我很乐意应对这个挑战。)
我建议使用 http: //sourceforge.net/projects/usbsnoop/ 帮助调试。我使用该软件来找出信用卡读卡器上的 HID,并调试与 Wii 遥控器交互的软件 。
HID report types are different from device to device. While HID is a standard protocol, it is very low level. You won't find a higher-level standard, and thus no software to universally convert HID to MIDI.
You may however be able to write a program to support this board. (In fact, if I had such a board, I'd love to tackle this challenge.)
I recommend using http://sourceforge.net/projects/usbsnoop/ to help debug. I've used this software to figure out HID on credit card readers, and to debug software that interfaces with Wii Remotes.