Android MediaPlayer 网络位置
我试图将自定义媒体播放器应用程序定向到我的网络服务器,但是当我启动该应用程序时,它会退出。我唯一能想到的是这行代码:
私有静态最终字符串 MEDIA_PATH = new String("192.168.0.100/audio/");
这非常适合内部地址 (/sdcard/),但不适用于网址。有什么想法吗?
我也是一个极端的新手。 :P
i'm attempting to direct a custom media player app to my web server, but when I start the app it forse quits. the only thing I can think of is this line of code:
private static final String MEDIA_PATH = new String("192.168.0.100/audio/");
This works perfect for an internal address (/sdcard/), but not for a web address. any thoughts?
I'm an extreme novice as well. :P
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
"http://192.168.0.100/audio/"
,即使用 http:// 前缀。Try
"http://192.168.0.100/audio/"
, i.e., with the http:// prefix.