File file = new File(appfolderpath + "test.mp4");
FileOutputStream fileOutputStream = new FileOutputStream(file);
fileOutputStream.write(videoconnectionresponse.bodyAsBytes());
fileOutputStream.close();
Log.i("DOWNLOAD", "FINISHED");
videoconnectionresponse由Jsoup.connect(videoUrl).ignoreContentType(true).execute();
如果我以这种方式下载图像,似乎没有任何问题。 但是对于视频来说情况有所不同,到目前为止我只尝试了两个视频:
- 一个长度为30s;每次我下载并尝试播放时,播放器会在大约20秒后阻止它表示无法再现它。
- 另一个长度为1分钟;好吧,这会在7秒后被阻止..
有人能解释我为什么遇到这个麻烦吗?