大家好,欢迎来到IT知识分享网。
此文可用于学习MediaCodec的使用,没有涉及到转码所需的格式修改。
与低配版文件转码 https://blog.csdn.net/h2948203216/article/details/102838871 类似,都是多线程跑的转码。大致流程也没什么修改,代码注释都有写,也就不多说了。
唯一的臭毛病就是都在每一段结束后塞EOF阻塞编解码器,导致需要初始化codec或者重置codec。
替换initXXXCodec的方式,根据MediaCodec的状态转换图,我尝试了flush刷新,无效;尝试了stop,Configure,start,无效。
最终使用了reset,configure,start,成功。
也就是调用如下:
initxxxCodec()
->
xxxcodec.reset();
xxxcodec.configure(,,,);
xxxcodec.start();
如此Codec可以再次使用。
话不多说,上代码
public class TranscodeWrapperDemo3 {
/private //
private List<TailTimer> fileList;
private MediaExtractor extractor,audioExtractor;
private MediaCodec decodec,encodec,audioDecodec,audioEncodec;
private MediaMuxer muxer;
private String filePath;
private AssetFileDescriptor srcFilePath = null;
private AssetFileDescriptor srcFilePath2 = null;
private int isMuxed = 0;
private int audioTrackIndex = -1 ;
private int videoTrackIndex = -1 ;
private int videoIndex = -1;
private int audioIndex = -1;
private boolean isMuxerStarted = false;
private double assignSizeRate = 1.0;
private double durationTotal = 0;
private long TIME_US = 70000L;
private long startTime1 = 0;
private long endTime1 = 0;
private long startTime2 = 0;
private long endTime2 = 0;
private boolean isNeedTailed = false;
private long timeA = 0;
private long timeV = 0;
private long startsTime1 = 0;
// private long startsTime2 = 0;
/**
* @param startTime 视频起始解码时间戳
* @param endTime 视频终止解码时间戳
*/
private void setTailTimeVideo(long startTime,long endTime){
long s = 0;
long e = (long)durationTotal;
startTime *= 1000000;
endTime *= 1000000;
this.startTime1 = startTime > s ? startTime : s;
this.endTime1 = (endTime < e) && (endTime != 0) ? endTime : e;
this.isNeedTailed = (startTime > 0) || (endTime < e);
}
/**
*
* @param startTime 音频起始解码时间戳
* @param endTime 音频终止解码时间戳
*/
private void setTailTimeAudio(long startTime , long endTime){
long s = 0;
long e = (long)durationTotal;
startTime *= 1000000;
endTime *= 1000000;
this.startTime2 = startTime > s ? startTime : s;
this.endTime2 = (endTime < e) && (endTime != 0) ? endTime : e;
this.isNeedTailed = (startTime > 0) || (endTime < e);
}
TranscodeWrapperDemo3(String filePath , List<TailTimer> fileList){
this.filePath = filePath;
this.fileList = fileList;
initMediaMuxer();
initVideoExtractor();
initAudioExtractor();
initVideoDecodec();
initVideoEncodec();
initAudioDecodec();
initAudioEncodec();
}
/**
* pauseAudio 控制音频比视频慢,保证音频线程每一段可以取到同一段视频的基准也就是第一帧关键帧
*/
private boolean pauseAudio = true;
/**
* 以下总是先初始化codec再执行操作的原因是因为,后一段使用codec的时候,因为第一段接受了EOS指令导致codec停止工作,所以需要重置
* 而我这里没有重置,而是新建一个
* 替代方案:
* codec.reset()
* codec.configure(format, null, null, 0|MediaCodec.CONFIGURE_FLAG_ENCODE)
* codec.start()
* 以上方案是根据codec状态得到的解决方案,
* 下面是解释:
* codec(uninitiated) -> codec(configured) -> codec(flushed) -> codec(running) -> codec(EOS) -> codec(released)
* 这是完整的状态,其中存在的闭环:
* codec(running) -> codec(flushed)
* codec(EOS) -> codec(flushed)
* codec(EOS) -> codec(uninitiated) -> codec(configured) -> codec(flushed) -> codec(running) -> codec(EOS)
* 有几个状态转换需要调用的方法,就说比较陌生的地方,比如codec(flushed) 调用了dequeueInputBuffer() 就会进入到codec(running)
* 那running 或 EOS 回到 flushed 就调用flush()即可,不过这里我试过,没用。
* 所以我就用了第三个闭环,EOS 回到 uninitiated 就调用了reset(),然后就是重置codec正常使用。
*/
private Thread inputThread = new Thread(new Runnable() {
@Override
public void run() {
if (fileList != null){
for (int i = 0; i < fileList.size(); i++){
initVideoDecodec();
TailTimer tailTimer = fileList.get(i);
setTailTimeVideo(tailTimer.getStartTime(),tailTimer.getEndTime());
inputLoop();
Log.d("tag","执行到fileListVideo的"+i);
}
}else{
inputLoop();
}
extractor.release();
decodec.stop();
decodec.release();
Log.v("tag","released decode");
}
});
private Thread outputThread = new Thread(new Runnable() {
@Override
public void run() {
if (fileList != null){
for (int i = 0; i < fileList.size(); i++){
initVideoEncodec();
outputLoop();
Log.d("tag","执行到fileListVideo的"+i);
}
}else{
outputLoop();
}
encodec.stop();
encodec.release();
Log.v("tag", "released encode");
isMuxed++;
releaseMuxer();
}
});
private Thread audioInputThread = new Thread(new Runnable() {
@Override
public void run() {
if (fileList != null){
for (int i = 0; i < fileList.size(); i++){
initAudioDecodec();
TailTimer tailTimer = fileList.get(i);
setTailTimeAudio(tailTimer.getStartTime(),tailTimer.getEndTime());
audioInputLoop();
Log.d("tag","执行到fileListAudio的"+i);
}
}else{
audioInputLoop();
}
audioExtractor.release();
audioDecodec.stop();
audioDecodec.release();
Log.v("tag","released audioDecode");
}
});
private Thread audioOutputThread = new Thread(new Runnable() {
@Override
public void run() {
if (fileList != null){
for (int i = 0; i < fileList.size(); i++){
initAudioEncodec();
audioOutputLoop();
Log.d("tag","执行到fileListAudio的"+i);
}
}else{
audioOutputLoop();
}
audioEncodec.stop();
audioEncodec.release();
Log.v("tag","released audio encode");
isMuxed++;
releaseMuxer();
}
});
private synchronized void releaseMuxer(){
if (isMuxed == 2){
isMuxed++;
muxer.stop();
muxer.release();
Log.v("tag","released muxer");
}
}
private void initVideoExtractor(){
if (fileList != null){
srcFilePath = fileList.get(0).getSrcPath();
}
extractor = new MediaExtractor();
try {
extractor.setDataSource(srcFilePath);
} catch (IOException e) {
e.printStackTrace();
}
for (int i = 0; i < extractor.getTrackCount(); i++){
MediaFormat format = extractor.getTrackFormat(i);
String formatType = format.getString(MediaFormat.KEY_MIME);
assert formatType != null;
if (formatType.startsWith("video")){
videoIndex = i;
videoFormatType = formatType;
frameRate = format.getInteger(MediaFormat.KEY_FRAME_RATE);
bitRate = format.getInteger(MediaFormat.KEY_BIT_RATE);
width = format.getInteger(MediaFormat.KEY_WIDTH);
height = format.getInteger(MediaFormat.KEY_HEIGHT);
durationTotal = format.getLong(MediaFormat.KEY_DURATION);
}
}
}
private void initAudioExtractor(){
if (fileList != null){
srcFilePath2 = fileList.get(0).getSrcPath();
}
audioExtractor = new MediaExtractor();
try{
audioExtractor.setDataSource(srcFilePath2);
} catch (IOException e) {
e.printStackTrace();
}
for (int i = 0; i < audioExtractor.getTrackCount(); i++){
MediaFormat format = audioExtractor.getTrackFormat(i);
String formatType = format.getString(MediaFormat.KEY_MIME);
assert formatType != null;
if (formatType.startsWith("audio")){
audioIndex = i;
audioFormatType = formatType;
audioBitRate = format.getInteger(MediaFormat.KEY_BIT_RATE);
sampleRate = format.getInteger(MediaFormat.KEY_SAMPLE_RATE);
channelCount = format.getInteger(MediaFormat.KEY_CHANNEL_COUNT);
}
}
}
private String videoFormatType = null;
private String audioFormatType = null;
private int width = -1;
private int height = -1;
private int frameRate = -1 ;
private int bitRate = -1;
private int audioBitRate = -1 ;
private int sampleRate = -1;
private int channelCount = -1;
private void initAudioDecodec(){
try {
audioDecodec = MediaCodec.createDecoderByType(audioFormatType);
} catch (IOException e) {
e.printStackTrace();
}
MediaFormat format = audioExtractor.getTrackFormat(audioIndex);
audioDecodec.configure(format,null,null,0);
audioDecodec.start();
}
/**
* bitrate必须有
*/
private void initAudioEncodec(){
MediaFormat audioFormat = MediaFormat.createAudioFormat(audioFormatType, sampleRate, channelCount);
audioFormat.setInteger(MediaFormat.KEY_BIT_RATE,(int)(audioBitRate * assignSizeRate));
try {
audioEncodec = MediaCodec.createEncoderByType(audioFormatType);
} catch (IOException e) {
e.printStackTrace();
}
audioEncodec.configure(audioFormat,null,null,MediaCodec.CONFIGURE_FLAG_ENCODE);
audioEncodec.start();
}
private void initVideoDecodec(){
try {
decodec = MediaCodec.createDecoderByType(videoFormatType);
} catch (IOException e) {
e.printStackTrace();
}
MediaFormat format = extractor.getTrackFormat(videoIndex);
decodec.configure(format,null,null,0);
decodec.start();
}
/**
* bitrate、colorformat、iframeInterval、frameRate必须有
*/
private void initVideoEncodec(){
MediaFormat videoFormat = MediaFormat.createVideoFormat(videoFormatType, width, height);
videoFormat.setInteger(MediaFormat.KEY_FRAME_RATE, frameRate);
videoFormat.setInteger(MediaFormat.KEY_BIT_RATE,(int)(bitRate * assignSizeRate));
videoFormat.setInteger(MediaFormat.KEY_COLOR_FORMAT, MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Flexible);
videoFormat.setInteger(MediaFormat.KEY_I_FRAME_INTERVAL,1 );
try {
encodec = MediaCodec.createEncoderByType(videoFormatType);
} catch (IOException e) {
e.printStackTrace();
}
encodec.configure(videoFormat, null,null,MediaCodec.CONFIGURE_FLAG_ENCODE);
encodec.start();
}
private void initMediaMuxer(){
try {
muxer = new MediaMuxer(filePath,MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4);
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 裁剪视频:
* seek的部分我纠结过,想来想去只有这么seek,即便丢帧也不会出现绿屏的情况,因为第一帧不是关键帧就会绿屏
* 其次,因为视频的帧,不只有关键帧,还有前向、双向预测帧,所以不能先prev_sync再一个个advance读下一个帧
* close_sync的模式是不确定的,要么前要么后,或许直接使用next_sync更好点
* readEOS出现的原因,我debug的时候,发现进入到endTime那里的次数超出了一次,差不多会有三次进入,这是没必要的。
* 转码:
* 难度在理解解码的outputBuffer与编码的inputBuffer的关系上,一开始我还傻傻的用队列去存,后来发现没这必要,
* 直接塞到编码器无疑效率更高。
*
*/
private void inputLoop() {
//video decode///
extractor.selectTrack(videoIndex);
MediaCodec.BufferInfo info = new MediaCodec.BufferInfo();
startsTime1 = extractor.getSampleTime();
if (isNeedTailed) {
extractor.seekTo(startTime1, MediaExtractor.SEEK_TO_CLOSEST_SYNC);
if (extractor.getSampleTime() < startTime1) {
extractor.seekTo(startTime1,MediaExtractor.SEEK_TO_NEXT_SYNC);
}
startsTime1 = extractor.getSampleTime();
}
boolean readEOS = false;
while (true) {
if (!readEOS) {
int inputIndex = decodec.dequeueInputBuffer(TIME_US);
if (inputIndex >= 0) {
ByteBuffer inputBuffer = decodec.getInputBuffer(inputIndex);
assert inputBuffer != null;
int size = readSampleData(extractor, inputBuffer);
if (size > 0) {
if (extractor.getSampleTime() > endTime1 && isNeedTailed) {
decodec.queueInputBuffer(inputIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
readEOS = true;
} else {
decodec.queueInputBuffer(inputIndex, 0, size, extractor.getSampleTime(), extractor.getSampleFlags());
extractor.advance();
}
} else {
decodec.queueInputBuffer(inputIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
readEOS = true;
}
}
}
int outputIndex = decodec.dequeueOutputBuffer(info, TIME_US);
if (outputIndex >= 0) {
ByteBuffer outputBuffer = decodec.getOutputBuffer(outputIndex);
int inputBufferEncodeIndex = encodec.dequeueInputBuffer(TIME_US);
if (inputBufferEncodeIndex >= 0) {
ByteBuffer inputEncodeBuffer = encodec.getInputBuffer(inputBufferEncodeIndex);
if (info.size >= 0) {
// Log.d("tag","into video encode...");
assert outputBuffer != null;
assert inputEncodeBuffer != null;
inputEncodeBuffer.put(outputBuffer);
encodec.queueInputBuffer(inputBufferEncodeIndex,0,info.size,info.presentationTimeUs,info.flags);
} else {
encodec.queueInputBuffer(inputBufferEncodeIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
}
}
decodec.releaseOutputBuffer(outputIndex, true);
}
if ((info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0 ) {
Log.d("tag", "start release video Decode");
break;
}
}
}
/**
* 裁剪:
* output_format_changed这里注意以下,第一帧关键帧会给出编码器出来的正确的格式信息,这个才是muxer需要的
* 有人会看到media.presentationTimeUs这里为什么要大于等于statrtTime
* 这里我在音频那里同样写了,就是为了保证音频和视频的起始时间戳相同,这样只要解码编码过程正确,DST无误,那么音视频就必定同步。
* info1为什么要有的原因也是为了每一段的播放最终时间戳作为上一段的起始播放时间戳
*
*/
private void outputLoop(){
MediaCodec.BufferInfo mediaInfo = new MediaCodec.BufferInfo();
MediaCodec.BufferInfo info1 = null;
final long time = timeV;
long startTime = startsTime1;
video encode/
while(true) {
int outputBufferIndex = encodec.dequeueOutputBuffer(mediaInfo, TIME_US);
switch (outputBufferIndex) {
case MediaCodec.INFO_TRY_AGAIN_LATER:
break;
case MediaCodec.INFO_OUTPUT_FORMAT_CHANGED: {
Log.d("tag", "video format changed");
MediaFormat format = encodec.getOutputFormat();
if (videoTrackIndex < 0)
videoTrackIndex = muxer.addTrack(format);
if (!isMuxerStarted) {
startMuxer();
}
startTime = startsTime1;
pauseAudio = false;
break;
}
default: {
ByteBuffer outputBuffer = encodec.getOutputBuffer(outputBufferIndex);
if (mediaInfo.size >= 0 && mediaInfo.presentationTimeUs >= startTime && isMuxerStarted) {
info1 = new MediaCodec.BufferInfo();
info1.size = mediaInfo.size;
info1.offset = mediaInfo.offset;
info1.presentationTimeUs = time + mediaInfo.presentationTimeUs - startTime ;
info1.flags = mediaInfo.flags;
assert outputBuffer != null;
muxer.writeSampleData(videoTrackIndex, outputBuffer, info1);
// Log.d("tag", "video muxing");
}
encodec.releaseOutputBuffer(outputBufferIndex, true);
}
}
if ((mediaInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0 ) {
Log.d("tag", "start release video Encode");
assert info1 != null;
timeV = info1.presentationTimeUs;
break;
}
}
}
/**
* 裁剪:
* 以视频时间戳为基准,直接使用视频的起始时间戳seek
* 其余同视频,最后的sleep是为了保证muxer启动前减少丢帧,因为明显两个线程同时跑,format_changed必定不同时
* 总会有一个线程先跑完那段,然后开始转码,所以会丢帧
* 而在后续的编码里,也有一段sleep操作减少丢帧,效果是显著的
*
*/
private void audioInputLoop() {
audioExtractor.selectTrack(audioIndex);
MediaCodec.BufferInfo info = new MediaCodec.BufferInfo();
// startsTime2 = audioExtractor.getSampleTime();
// if (isNeedTailed) {
// audioExtractor.seekTo(startTime2, MediaExtractor.SEEK_TO_CLOSEST_SYNC);
// if (audioExtractor.getSampleTime() < startTime2){
// audioExtractor.seekTo(startTime2,MediaExtractor.SEEK_TO_NEXT_SYNC);
// }
// startsTime2 = audioExtractor.getSampleTime();
// }
boolean readEOS = false;
while(pauseAudio){
try {
Thread.sleep(0L);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
if (isNeedTailed){
audioExtractor.seekTo(startsTime1,MediaExtractor.SEEK_TO_CLOSEST_SYNC);
if (audioExtractor.getSampleTime() < startsTime1){
audioExtractor.seekTo(startsTime1,MediaExtractor.SEEK_TO_NEXT_SYNC);
}
}
while (true) {
if (!readEOS) {
int inputIndex = audioDecodec.dequeueInputBuffer(TIME_US);
if (inputIndex >= 0) {
ByteBuffer inputBuffer = audioDecodec.getInputBuffer(inputIndex);
assert inputBuffer != null;
int size = readSampleData(audioExtractor, inputBuffer);
if (size >= 0) {
if (audioExtractor.getSampleTime() > endTime2 && isNeedTailed) {
audioDecodec.queueInputBuffer(inputIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
readEOS = true;
} else {
// Log.d("tag","video decode...");
audioDecodec.queueInputBuffer(inputIndex, 0, size, audioExtractor.getSampleTime(), audioExtractor.getSampleFlags());
audioExtractor.advance();
}
} else {
audioDecodec.queueInputBuffer(inputIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
readEOS = true;
}
}
}
int outputIndex = audioDecodec.dequeueOutputBuffer(info, TIME_US);
if (outputIndex >= 0) {
ByteBuffer outputBuffer = audioDecodec.getOutputBuffer(outputIndex);
int inputBufferEncodeIndex = audioEncodec.dequeueInputBuffer(TIME_US);
if (inputBufferEncodeIndex >= 0) {
ByteBuffer inputEncodeBuffer = audioEncodec.getInputBuffer(inputBufferEncodeIndex);
if (info.size >= 0) {
assert inputEncodeBuffer != null;
assert outputBuffer != null;
inputEncodeBuffer.put(outputBuffer);
audioEncodec.queueInputBuffer(inputBufferEncodeIndex, 0, info.size, info.presentationTimeUs , info.flags);
} else {
audioEncodec.queueInputBuffer(inputBufferEncodeIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM);
}
}
audioDecodec.releaseOutputBuffer(outputIndex, true);
}
if ((info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) {
Log.d("tag", "start release audio Decode");
pauseAudio = true;
break;
}
if(!isMuxerStarted){
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
/**
* 同视频,取准起始解码时间戳
*/
private void audioOutputLoop(){
MediaCodec.BufferInfo mediaInfo = new MediaCodec.BufferInfo();
MediaCodec.BufferInfo info1 = null;
final long time = timeA;
while(pauseAudio){
try {
Thread.sleep(0L);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
long startTime = startsTime1;
while(true) {
int outputBufferIndex = audioEncodec.dequeueOutputBuffer(mediaInfo, TIME_US);
switch (outputBufferIndex) {
case MediaCodec.INFO_TRY_AGAIN_LATER:
break;
case MediaCodec.INFO_OUTPUT_FORMAT_CHANGED: {
Log.d("tag", "audio format changed");
MediaFormat format = audioEncodec.getOutputFormat();
if (audioTrackIndex < 0)
audioTrackIndex = muxer.addTrack(format);
if (!isMuxerStarted) {
startMuxer();
}
break;
}
default: {
ByteBuffer outputBuffer = audioEncodec.getOutputBuffer(outputBufferIndex);
Log.v("timeStamps1",mediaInfo.presentationTimeUs + " size " + mediaInfo.size + " startTime " + startTime);
// 现在情况是,视频的起始时间戳变了,音频无法在起始时间戳确定时准确捕捉。
// 容易出现的是,startsTime1 变大或变小,只能是音频在视频后边才能确认正确。
// 否则的话时间戳混乱。
// 要求达到:当视频时间戳改变时,每一段的音频第一帧比视频第一帧慢,就能够捕捉正确。
if (!isMuxerStarted && mediaInfo.size >= 0){
try {
Thread.sleep(100L);
} catch (InterruptedException e) {
e.printStackTrace();
}
startTime = startsTime1;
}
if (mediaInfo.size >= 0 && mediaInfo.presentationTimeUs >= startTime && isMuxerStarted) {
Log.v("timeStamps2",mediaInfo.presentationTimeUs + "");
info1 = new MediaCodec.BufferInfo();
info1.size = mediaInfo.size;
info1.offset = mediaInfo.offset;
info1.presentationTimeUs = time + mediaInfo.presentationTimeUs - startTime ;
// Log.v("timeStamps2",info1.presentationTimeUs + "");
info1.flags = mediaInfo.flags;
assert outputBuffer != null;
muxer.writeSampleData(audioTrackIndex, outputBuffer, info1);
// Log.d("tag", "audio muxing");
}
audioEncodec.releaseOutputBuffer(outputBufferIndex, false);
}
}
if ((mediaInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0 ) {
Log.d("tag", "start release audio Encode");
assert info1 != null;
timeA = info1.presentationTimeUs;
break;
}
}
}
private synchronized void startMuxer(){
if ( 0 <= audioTrackIndex && 0<= videoTrackIndex && !isMuxerStarted){
muxer.start();
isMuxerStarted = true;
}
}
private synchronized int readSampleData(MediaExtractor extractor , ByteBuffer buffer){
return extractor.readSampleData(buffer,0);
}
/public //
void startTranscode(){
inputThread.start();
outputThread.start();
audioInputThread.start();
audioOutputThread.start();
}
}
查看此文如不过瘾,可以看笔者的这篇
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/21885.html