我尝试在android studio中使用OSC,随后在http://courses.ideate.cmu.edu/physcomp/f14/16-223/tutorial-android-osc-communication/.它使用来自Illposed的JavaOSC。
然而,当我创建一个新的OSCPortOut时,我遇到了一个套接字异常错误。你能告诉我这里发生了什么吗?如何解决这个问题。
Android Studio1.5.1版本4.4非常感谢
package com.jiajunyang.emosoundcontrol1;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;
import java.net.*;
import java.util.*;
import com.illposed.osc.*;
public class MainActivity extends AppCompatActivity {
// init IP and port
private String myIP = "192.168.11.93";
private int myPort = 5000;
// This is for sending messagign.
private OSCPortOut oscPortOut;
// This thread will contain all the code for OSC
private Thread oscThread = new Thread(){
@Override
public void run(){
try{
// Connect to IP and port
oscPortOut = new OSCPortOut(InetAddress.getByName(myIP), myPort);
} catch(UnknownHostException e) {
Log.d("OSC2", "OSC Port Out UnknownHoseException");
//Error handling when your IP is not found
return;
} catch (SocketException e){
Log.d("OSC2", "Socket exception error!");
}
// } catch (Exception e){
// Log.d("OSC2", "OSC Port Out Other error");
// // Error handling for any other errors.
// }
/* 2nd loop infinitely and send messages every x ms.
* */
while (true){
//Log.d("OSC2", "Beginning to while loop");
if (oscPortOut != null){
// Creating the messages
Object[] m2send = new Object[3];
m2send[0] = "Hello";
m2send[1] = 100;
m2send[2] = 1.23;
OSCMessage message = new OSCMessage(myIP, Arrays.asList(m2send));
try{
Log.d("OSC2", "Successed to send");
// Send messages
oscPortOut.send(message);
// Pause
sleep(500);
} catch (Exception e){
Log.d("OSC2", "Failed to send.");
}
}
}
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
oscThread.start();
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
我也遇到了同样的问题,最终解决了。OSC使用术语地址两次,一次作为INetAddress(IP地址),另一次在OSC消息中使用。OSCMessage地址只是接收器要侦听的字符串,但必须以“/”开头
更改您的线路:
OSCMessage message = new OSCMessage(myIP, Arrays.asList(m2send));
收件人:
OSCMessage message = new OSCMessage("/msgAddress", Arrays.asList(m2send));
在接收器处:
receiver.addListener("/msgAddress", listener);
我正在写一个Android应用程序使用SDK为Android 4.0 我想知道android SDK中是否有用于发送OSC消息(开放声音控制)的API,或者我应该只使用java OSC SDK。 我试着浏览网页http://opensoundcontrol.org/introduction-osc在实现中,我发现了以下几点:http://www.illposed.com/software/java
开始播放音乐和音效后,你可能需要对它们进行一些控制,比如暂停、停止、恢复。这很容易完成,下面介绍: 暂停 #include "SimpleAudioEngine.h" using namespace CocosDenshion; auto audio = SimpleAudioEngine::getInstance(); // pause background music. audio->pa
问一下Xamarin.Forms便携里面Xamarin.Forms的音频怎么播放 正如我所知,有依赖服务,我看到了一些示例,只有iOS和Android,但没有Windows Phone 8.1/Windows 8.1和UWP。
问题内容: Hay Guys,我是Android的新手,但这里是我想要做的。 我希望能够使用给定的IP和PORT打开到服务器的连接,然后将命令发送到服务器并取回数据。 有什么想法我需要谷歌帮助吗?我知道如何在PHP中做到这一点(使用fputs,fgets和fsockopen)。 任何帮助将是无聊的。 谢谢 问题答案: 使用java.net类。以下是使用DatagramSockets的简单示例: 其
问题内容: 这是我用来在我的react应用程序中使用url(this.url)播放声音的代码。当我按下播放按钮时,它给我一个错误 我不确定为什么会这样,因为我没有看到任何未定义的状态。一个;; 状态已经声明。 我是新来的反应者,所以我可能会错过一些非常重要的东西。 请帮忙! 问题答案: 我稍微改进了Jaxx的版本,使其包含一个,以便在音频结束时重置按钮。 ES6类属性语法 挂钩版本(反应16.8+
我正在从调用firebase api的应用服务器向用户发送数据消息。用户正在接收通知,但通知到达时不会播放声音。 这是代码 有什么问题吗???