要解决Android操作系统不支持非基线的AVC视频配置文件的问题,可以使用FFmpeg库进行视频转码和重新编码。
以下是一个使用FFmpeg库进行视频转码的示例代码:
import android.os.AsyncTask;
import android.util.Log;
import com.arthenica.mobileffmpeg.ExecuteCallback;
import com.arthenica.mobileffmpeg.FFmpeg;
import com.arthenica.mobileffmpeg.FFmpegExecuteResponse;
public class VideoTranscoder extends AsyncTask {
    private static final String TAG = "VideoTranscoder";
    @Override
    protected Boolean doInBackground(String... params) {
        String inputFilePath = params[0];
        String outputFilePath = params[1];
        String[] ffmpegCommand = {"-i", inputFilePath, "-c:v", "libx264", "-profile:v", "baseline", "-level", "3.0", "-c:a", "copy", outputFilePath};
        FFmpeg.execute(ffmpegCommand, new ExecuteCallback() {
            @Override
            public void apply(final FFmpegExecuteResponse response) {
                Log.i(TAG, "FFmpegExecuteResponse: " + response.getReturnCode());
            }
        });
        return true;
    }
    @Override
    protected void onPostExecute(Boolean result) {
        // 在视频转码完成后执行的操作
    }
}
 在上面的代码中,我们使用了com.arthenica.mobileffmpeg库来执行FFmpeg命令。首先,我们将输入文件路径和输出文件路径作为参数传递给doInBackground方法。然后,我们构建一个FFmpeg命令数组,其中-c:v libx264 -profile:v baseline -level 3.0指定了使用基线配置文件进行视频编码。
最后,我们使用FFmpeg.execute方法执行FFmpeg命令,并在回调中获取执行结果。
请注意,您需要将com.arthenica.mobileffmpeg库添加到您的Android项目中。您可以从https://github.com/tanersener/mobile-ffmpeg下载该库,并将其添加为Android库模块。
要使用上述示例代码,您需要在您的代码中调用以下方法:
String inputFilePath = "input.mp4";
String outputFilePath = "output.mp4";
VideoTranscoder videoTranscoder = new VideoTranscoder();
videoTranscoder.execute(inputFilePath, outputFilePath);
这将异步执行视频转码任务,并在完成后执行onPostExecute方法中的操作。
请注意,这只是一个示例代码,您可能需要根据您的需求进行一些调整和修改。