FFmpeg读取视频文件rtmp推流

前一阵,研究了怎么用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);
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值