1 Star 0 Fork 0

wangyaning/live_beautiful_camera_streaming

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
My_SendH264To_Rtmp.cpp 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
season-雅宁 提交于 2016-04-07 22:22 . origin
/**
*
* 本程序用于将内存中的H.264数据推送至RTMP流媒体服务器。
* This program can send local h264 stream to net server as rtmp live stream.
*/
#include "stdafx.h"
#include <stdio.h>
#include "librtmp_send264.h"
#include "live_beautiful_camera_streaming.h"
FILE *fp_send1;
////读文件的回调函数
////we use this callback function to read data from buffer
//int read_buffer1(unsigned char *buf, int buf_size )
//{
// if(!feof(fp_send1))
// {
//
// int true_size=fread(buf,1,buf_size,fp_send1);
// return buf_size;
// }
// else
// {
// return -1;
// }
//}
//读环形缓冲区的回调函数
//we use this callback function to read data from buffer
int read_buffer2(unsigned char *buf, int buf_size )
{
int size = 0;
int read_size = 0;
m_pCircleBuffer->Read(buf,buf_size, (size_t *)&read_size);
return read_size;
}
int My_SendH264To_Rtmp()
{
//fp_send1 = fopen("result2.h264", "rb");
//初始化并连接到服务器
RTMP264_Connect("rtmp://localhost/live/livestream");
RTMP264_Send(read_buffer2);
//断开连接并释放相关资源
RTMP264_Close();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/wangyaning/live_beautiful_camera_streaming.git
git@gitee.com:wangyaning/live_beautiful_camera_streaming.git
wangyaning
live_beautiful_camera_streaming
live_beautiful_camera_streaming
master

搜索帮助