Jet Creator 音乐 - EAS Synth.dll

发布于 2024-08-24 04:34:28 字数 581 浏览 6 评论 0原文

我正在尝试使用 Android 中的 JET 音乐播放器为我的游戏创作音乐。我在安装 Sonar 7 的 eas 合成器插件时遇到问题,我将用它来编辑 MIDI 曲目。

我正在使用本指南来安装所有内容,以便我可以编辑我的 音乐

问题出在 3.1 安装 EAS Synth 插件 我应该将 EAS Synth.dll 安装到 Sonar vst 插件文件夹中。

在哪里可以找到 EAS Synth.dll 文件? SDK中肯定不包含它!我在 \tools\Jet\JetCreator 目录中发现了一个名为 EADDLL.dll 的文件,但是 Sonar 没有将其识别为插件。

我认为 JET 和 JET 创建者被谷歌记录得可笑!任何有关 JET 创建者的帮助将不胜感激!我希望这里有一些聪明的人已经成功地使用了jet Creator。

I am trying to use the JET music player in Android to create music for my game. I am having trouble installing the eas synth plugin for Sonar 7 which I will use to edit the midi tracks.

I am using this guide to get everything installed so that I can edit my music.

The problem is at point 3.1 Installing the EAS Synth Plugin I am supposed to install EAS synth.dll into the Sonar vst plugin folder.

Where can i find the EAS synth.dll file? It is definitely not included in the SDK! I found a file called EADDLL.dll in the \tools\Jet\JetCreator directory, but Sonar does not recognize it as a plugin.

I think JET and JET creator is ridiculously pour documented by google! Any help regarding JET creator would be appreciated! I'm hoping for some smart guy here who has successfully used jet creator.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

挖鼻大婶 2024-08-31 04:34:28

我也有这个问题。非常令人沮丧。问题是包含的 EASDLL.dll 文件实际上并不是 VST 插件。我编写了一个 VST 插件来完成这项工作,并将其发布在这里:

http://www.evanmallory.com/ eas_vst/

尝试一下。我希望它能帮助你。

I had this problem as well. Very frustrating. The problem is that the included EASDLL.dll file is not actually a VST plugin. I wrote the a VST plugin that does the job and have published it here:

http://www.evanmallory.com/eas_vst/

Give it a try. I hope it will help you out.

池予 2024-08-31 04:34:28

*.dll 文件仅适用于 Windows,Linux 等效文件是 *.so,但 JET 库区域已安装在 Android 设备上,因此您无需担心。至于Google的文档,该链接不是Google页面,这里是 Google 文档。它是这样说的:

播放 JET 内容 Android
平台包括一个 JET 发动机
让您添加交互式播放
您的 JET 音频内容
应用程序。您可以创建 JET
使用交互式播放内容
JetCreator 创作应用程序
随 SDK 一起提供。玩和
管理您的 JET 内容
应用程序,使用 JetPlayer 类。

有关 JET 概念的描述和
有关如何使用的说明
JetCreator 创作工具,请参阅
JetCreator 用户手册。该工具是
在 OS X 上可用,功能齐全
以及 Windows 平台和 Linux
版本支持所有内容
创建功能,但不是
导入资产的试镜。

以下是如何设置 JET 的示例
从存储在的 .jet 文件中播放
SD卡:

JetPlayer myJet = JetPlayer.getJetPlayer();
myJet.loadJetFile("/sdcard/level1.jet");
byte segmentId = 0;

// queue segment 5, repeat once, use General MIDI, transpose by -1 octave
myJet.queueJetSegment(5, -1, 1, -1, 0, segmentId++);
// queue segment 2
myJet.queueJetSegment(2, -1, 0, 0, 0, segmentId++);

myJet.play();

SDK 包含一个示例
应用程序 — JetBoy — 展示了如何
使用 JetPlayer 创建
您的互动音乐配乐
游戏。它还说明了如何使用
JET 事件同步音乐和
游戏逻辑。该应用程序位于

/platforms/android-1.5/samples/JetBoy。

*.dll files are for Windows only, the Linux equivalent is *.so, but the JET libraries area already installed on an Android device so you don't need to worry about it. As for Google's documentation, that link is not a Google page, here is the Google Documentation. Here is what it says:

Playing JET content The Android
platform includes a JET engine that
lets you add interactive playback of
JET audio content in your
applications. You can create JET
content for interactive playback using
the JetCreator authoring application
that ships with the SDK. To play and
manage JET content from your
application, use the JetPlayer class.

For a description of JET concepts and
instructions on how to use the
JetCreator authoring tool, see the
JetCreator User Manual. The tool is
available fully-featured on the OS X
and Windows platforms and the Linux
version supports all the content
creation features, but not the
auditioning of the imported assets.

Here's an example of how to set up JET
playback from a .jet file stored on
the SD card:

JetPlayer myJet = JetPlayer.getJetPlayer();
myJet.loadJetFile("/sdcard/level1.jet");
byte segmentId = 0;

// queue segment 5, repeat once, use General MIDI, transpose by -1 octave
myJet.queueJetSegment(5, -1, 1, -1, 0, segmentId++);
// queue segment 2
myJet.queueJetSegment(2, -1, 0, 0, 0, segmentId++);

myJet.play();

The SDK includes an example
application — JetBoy — that shows how
to use JetPlayer to create an
interactive music soundtrack in your
game. It also illustrates how to use
JET events to synchronize music and
game logic. The application is located
at
/platforms/android-1.5/samples/JetBoy.

默嘫て 2024-08-31 04:34:28

我想我的问题有点不清楚...

我正在尝试使用音乐编辑程序Sonar 7在我的计算机上编辑音乐。音乐将在我的游戏中使用...为了使midi文件与android设备兼容和 JET Creator 我需要使用 Sonar 7 的 EAS 合成器插件。问题是我找不到所需的“EAS Synth.dll”。是的,我已经阅读了您所引用的所有文档:)

该插件在指南的第 3.1 节中进行了描述:
http://www.netmite.com/android/ mydroid/1.6/external/sonivox/docs/JET_Authoring_Guidelines.html

I guess my question was a bit unclear...

I am trying to edit music on my computer using the music editing program Sonar 7. The music will be used in my game... In order to make the midi files compatible with android devices and JET Creator i need to use the EAS synth plugin for Sonar 7. The problem is that i cant find the "EAS Synth.dll" wich is needed for this. And yes, I have read trough all the documentation wich you are referring to :)

The plugin is described under section 3.1 in the guidelines:
http://www.netmite.com/android/mydroid/1.6/external/sonivox/docs/JET_Authoring_Guidelines.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文