日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ffplay flv mp4 转_FFmpeg将mp4转成flv

發(fā)布時間:2025/3/19 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ffplay flv mp4 转_FFmpeg将mp4转成flv 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

mp4轉(zhuǎn)成flv格式文件步驟如下:

1.打開輸入文件,創(chuàng)建輸入文件和輸出文件的上下文環(huán)境

2.遍歷輸入文件的每一路流,每個輸入流對應(yīng)創(chuàng)建一個輸出流,將輸入流中的編解碼參數(shù)直接拷貝到輸出流中。

3.文件的寫入。

先寫入新的多媒體文件的頭。

然后遍歷輸入文件的每一幀,對每一幀進行時間基的轉(zhuǎn)換,轉(zhuǎn)換好后寫入新的多媒體文件。

最后再多媒體文件中寫入文件尾。

/*將mp4轉(zhuǎn)成flv格式*/

#include

#include

int main(int argc, char **argv)

{

AVOutputFormat *ofmt = NULL; // 輸出格式

AVFormatContext *ifmt_ctx = NULL, *ofmt_ctx = NULL; // 輸入、輸出是上下文環(huán)境

AVPacket pkt;

const char *in_filename, *out_filename;

int ret, i;

int stream_index = 0;

int *stream_mapping = NULL; // 數(shù)組用于存放輸出文件流的Index

int stream_mapping_size = 0; // 輸入文件中流的總數(shù)量

if (argc < 3) {

printf("usage: %s input output\n"

"API example program to remux a media file with libavformat and libavcodec.\n"

"The output format is guessed according to the file extension.\n"

"\n", argv[0]);

return 1;

}

in_filename = argv[1];

out_filename = argv[2];

// 打開輸入文件為ifmt_ctx分配內(nèi)存

if ((ret = avformat_open_input(&ifmt_ctx, in_filename, 0, 0)) < 0) {

fprintf(stderr, "Could not open input file '%s'", in_filename);

goto end;

}

// 檢索輸入文件的流信息

if ((ret = avformat_find_stream_info(ifmt_ctx, 0)) < 0) {

fprintf(stderr, "Failed to retrieve input stream information");

goto end;

}

// 打印輸入文件相關(guān)信息

av_dump_format(ifmt_ctx, 0, in_filename, 0);

// 為輸出上下文環(huán)境分配內(nèi)存

avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, out_filename);

if (!ofmt_ctx) {

fprintf(stderr, "Could not create output context\n");

ret = AVERROR_UNKNOWN;

goto end;

}

// 輸入文件流的數(shù)量

stream_mapping_size = ifmt_ctx->nb_streams;

// 分配stream_mapping_size段內(nèi)存,每段內(nèi)存大小是sizeof(*stream_mapping)

stream_mapping = av_mallocz_array(stream_mapping_size, sizeof(*stream_mapping));

if (!stream_mapping) {

ret = AVERROR(ENOMEM);

goto end;

}

// 輸出文件格式

ofmt = ofmt_ctx->oformat;

// 遍歷輸入文件中的每一路流,對于每一路流都要創(chuàng)建一個新的流進行輸出

for (i = 0; i < ifmt_ctx->nb_streams; i++) {

AVStream *out_stream; // 輸出流

AVStream *in_stream = ifmt_ctx->streams[i]; // 輸入流

AVCodecParameters *in_codecpar = in_stream->codecpar; // 輸入流的編解碼參數(shù)

// 只保留音頻、視頻、字幕流,其他的流不需要

if (in_codecpar->codec_type != AVMEDIA_TYPE_AUDIO &&

in_codecpar->codec_type != AVMEDIA_TYPE_VIDEO &&

in_codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE) {

stream_mapping[i] = -1;

continue;

}

// 對于輸出的流的index重寫編號

stream_mapping[i] = stream_index++;

// 創(chuàng)建一個對應(yīng)的輸出流

out_stream = avformat_new_stream(ofmt_ctx, NULL);

if (!out_stream) {

fprintf(stderr, "Failed allocating output stream\n");

ret = AVERROR_UNKNOWN;

goto end;

}

// 直接將輸入流的編解碼參數(shù)拷貝到輸出流中

ret = avcodec_parameters_copy(out_stream->codecpar, in_codecpar);

if (ret < 0) {

fprintf(stderr, "Failed to copy codec parameters\n");

goto end;

}

out_stream->codecpar->codec_tag = 0;

}

// 打印要輸出的多媒體文件的詳細信息

av_dump_format(ofmt_ctx, 0, out_filename, 1);

if (!(ofmt->flags & AVFMT_NOFILE)) {

ret = avio_open(&ofmt_ctx->pb, out_filename, AVIO_FLAG_WRITE);

if (ret < 0) {

fprintf(stderr, "Could not open output file '%s'", out_filename);

goto end;

}

}

// 寫入新的多媒體文件的頭

ret = avformat_write_header(ofmt_ctx, NULL);

if (ret < 0) {

fprintf(stderr, "Error occurred when opening output file\n");

goto end;

}

while (1) {

AVStream *in_stream, *out_stream;

// 循環(huán)讀取每一幀數(shù)據(jù)

ret = av_read_frame(ifmt_ctx, &pkt);

if (ret < 0) // 讀取完后退出循環(huán)

break;

in_stream = ifmt_ctx->streams[pkt.stream_index];

if (pkt.stream_index >= stream_mapping_size ||

stream_mapping[pkt.stream_index] < 0) {

av_packet_unref(&pkt);

continue;

}

pkt.stream_index = stream_mapping[pkt.stream_index]; // 按照輸出流的index給pkt重新編號

out_stream = ofmt_ctx->streams[pkt.stream_index]; // 根據(jù)pkt的stream_index獲取對應(yīng)的輸出流

// 對pts、dts、duration進行時間基轉(zhuǎn)換,不同格式時間基都不一樣,不轉(zhuǎn)換會導(dǎo)致音視頻同步問題

pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);

pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX);

pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream->time_base);

pkt.pos = -1;

// 將處理好的pkt寫入輸出文件

ret = av_interleaved_write_frame(ofmt_ctx, &pkt);

if (ret < 0) {

fprintf(stderr, "Error muxing packet\n");

break;

}

av_packet_unref(&pkt);

}

// 寫入新的多媒體文件尾

av_write_trailer(ofmt_ctx);

end:

avformat_close_input(&ifmt_ctx);

/* close output */

if (ofmt_ctx && !(ofmt->flags & AVFMT_NOFILE))

avio_closep(&ofmt_ctx->pb);

avformat_free_context(ofmt_ctx);

av_freep(&stream_mapping);

if (ret < 0 && ret != AVERROR_EOF) {

fprintf(stderr, "Error occurred: %s\n", av_err2str(ret));

return 1;

}

return 0;

}

總結(jié)

以上是生活随笔為你收集整理的ffplay flv mp4 转_FFmpeg将mp4转成flv的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。