前一阵,研究了怎么用ffmpeg读取USB摄像头进行rtmp推流,这次也把读取视频文件推流的示例也搬上来。当然了本篇肯定也参考了雷神的博客,再次致敬!
本篇比读取USB摄像头的H264帧要简单,而且视频文件中含有音频,推流的视频播放是含有声音的,因此,下一篇就是研究怎么读取USB摄像头的音频与视频,合成为视频文件并推流。
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <libavutil/time.h>
#include <libavutil/mathematics.h>
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
#include <libavdevice/avdevice.h>
#include <SDL2/SDL.h>
#ifdef __cplusplus
};
#endif
#include <iostream>
using namespace std;
int print_avError(int errNum);
int main()
{
int videoindex = -1;
av_register_all();
avformat_network_init();
const char *inUrl = "test.mp4";
const char *outUrl = "rtmp://192.168.1.100:1935/live/test";
AVFormatContext *input_ctx = NULL;
AVOutputFormat *output_fmt = NULL;
int ret = avformat_open_input(&input_ctx, inUrl, 0, NULL);
if (ret < 0)
{
return print_avError(ret);
}
cout << "avformat_open_input success!" << endl;
ret = avformat_find_stream_info(input_ctx, 0);
if (ret != 0)
{
return print_avError(ret);