我有一个视频下载器android应用程序,它允许人们从Twitter上下载视频,并且在2个月内发生了某些变化。已下载的视频无法在Android版本<= 6.0上播放。错误是:“无法播放此视频”视频可以播放,但大多数不能播放。相同格式的mp4。
我没有对代码进行任何更改。我尝试从浏览器手动下载文件,仍然出现错误。
// Progress Dialog
private ProgressDialog pDialog;
public static final int progress_bar_type = 0;
// File url to download
private static String file_url = "https://video.twimg.com/ext_tw_video/1122253815884001280/pu/vid/1280x720/xTTWb4wnRMvFzpXk.mp4";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
new DownloadFileFromURL().execute(file_url);
}
/**
* Showing Dialog
* */
@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case progress_bar_type: // we set this to 0
pDialog = new ProgressDialog(this);
pDialog.setMessage("Downloading file. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setMax(100);
pDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pDialog.setCancelable(true);
pDialog.show();
return pDialog;
default:
return null;
}
}
/**
* Background Async Task to download file
* */
class DownloadFileFromURL extends AsyncTask<String, String, String> {
/**
* Before starting background thread Show Progress Bar Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(progress_bar_type);
}
/**
* Downloading file in background thread
* */
@Override
protected String doInBackground(String... f_url) {
int count;
try {
URL url = new URL(f_url[0]);
URLConnection conection = url.openConnection();
conection.connect();
// this will be useful so that you can show a tipical 0-100%
// progress bar
int lenghtOfFile = conection.getContentLength();
// download the file
InputStream input = new BufferedInputStream(url.openStream(),
8192);
// Output stream
OutputStream output = new FileOutputStream(Environment
.getExternalStorageDirectory().toString()
+ "/2011.mp4");
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....
// After this onProgressUpdate will be called
publishProgress("" + (int) ((total * 100) / lenghtOfFile));
// writing data to file
output.write(data, 0, count);
}
// flushing output
output.flush();
// closing streams
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
return null;
}
/**
* Updating progress bar
* */
protected void onProgressUpdate(String... progress) {
// setting progress percentage
pDialog.setProgress(Integer.parseInt(progress[0]));
}
/**
* After completing background task Dismiss the progress dialog
* **/
@Override
protected void onPostExecute(String file_url) {
// dismiss the dialog after the file was downloaded
dismissDialog(progress_bar_type);
}
}
我希望这些视频可以像其他视频一样播放。一些mp4视频很不错,而大多数不是。我不知道是不是编解码器,但我也想使它们可播放。
这个视频就是这种情况的例子。
https://video.twimg.com/ext_tw_video/1122253815884001280/pu/vid/1280x720/xTTWb4wnRMvFzpXk.mp4
答案 0 :(得分:1)
您的示例视频使用High @Level 3.
的H.264配置文件,在Android版本<= 6
中不受支持。
H.264是视频的“图像” 格式(其中音频为MP3 / AAC)。
从低到高的Profie顺序为:基线->主->高。
查看文档:{{3}}
https://developer.android.com/guide/topics/media/media-formats#video-codecs分析:
Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3.1
通常,您可以通过提供网站中视频文件的备用编码来解决问题。由于您不负责Twitter服务器,因此对于无法处理High-Def的较旧设备,您必须检查Twitter本身是否保留了任何Low / Standard-Def版本的上传视频。如果找到,则只需为用户提供多种“质量”链接选择。
或者尝试查看FFmpeg是否可以播放该格式。在有问题的设备上尝试使用VLC Player应用程序(由FFmpeg供电)。如果可以正常播放,请尝试将MediaInfo导入到您的应用代码中,并在其中使用它解码/播放应用中下载的视频。