我正在开发一个Java移动应用程序,在该应用程序中播放URL“mmsh:// * .asf”,但我得到了异常“javax.microedition.media.MediaException :无法为:mmsh:// * .asf“创建数据源。 我怀疑是否能够为asf格式或mmsh协议创建播放器?
Player player = Manager.createPlayer("mmsh://****.asf");
有没有其他方法可以创建播放器?
答案 0 :(得分:0)
尝试使用其他构造函数:
Player player = Manager.createPlayer(InputStream is, String mimeType);
您可能需要通过调用以下内容来确保设备支持.asf格式:
Manager.getSupportedContentTypes(String protocol)