gpt4 book ai didi

java - 下载的视频在 Android 版本 <= 6.1 上无法播放

转载 作者:行者123 更新时间:2023-12-02 09:57:35 25 4
gpt4 key购买 nike

我有一个视频下载 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

最佳答案

您的示例视频使用 High @Level 3. 的 H.264 配置文件Android版本不支持<= 6
H.264 是视频的“图像”格式(其中音频为 MP3/AAC)。

从低到高的 Profie 顺序为:基线 --> 主要 --> 高。

参见文档:https://developer.android.com/guide/topics/media/media-formats#video-codecs

MediaInfo分析:

Video
ID : 1
Format : AVC
Format/Info : Advanced Video Codec
Format profile : High@L3.1

通常,您可以通过提供站点中视频文件的替代编码来修复。由于您不负责 Twitter 服务器,因此您必须检查 Twitter 本身是否保留上传视频的任何低/标准清晰度版本,以适应无法处理高清的旧设备。如果找到,则只需为用户提供多种“优质”链接选择即可。

或者尝试看看 FFmpeg 是否可以播放该格式。在有问题的设备上尝试 VLC Player 应用程序(由 FFmpeg 供电)。如果播放正常,则尝试导入 Android-FFmpeg到您的应用程序代码中,您可以在其中使用它来解码/播放应用程序中下载的视频。

关于java - 下载的视频在 Android 版本 <= 6.1 上无法播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55886508/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com