以下の入力ストリームからビデオファイルを再生していますが、私の方法です:
public static String getDataSource(InputStream inputStream) throws IOException {
InputStream stream = inputStream;
if (stream == null)
throw new RuntimeException("stream is null");
File temp = File.createTempFile("mediaplayertmp", "dat");
temp.deleteOnExit();
String tempPath = temp.getAbsolutePath();
FileOutputStream out = new FileOutputStream(temp);
byte buf[] = new byte[128];
do {
int numread = stream.read(buf);
if (numread <= 0)
break;
out.write(buf, 0, numread);
} while (true);
try {
stream.close();
out.close();
} catch (IOException ex) {
// Log.e(TAG, "error: " + ex.getMessage(), ex);
}
return tempPath;
}
しかし、ボタンをクリックするとdelay of 3 to 4 seconds
、ビデオファイルを再生することができます。なぜ誰か助けてもらえますか?