资源简介
C++ MP4v2获取rtsp流并保存为MP4文件,ffmpeg版本为4.0.1,其中的dll,lib,include在程序中已经提供,编译环境为vs2012
代码片段和文件信息
#pragma once
#include “MP4Encoder.h“
#define DEFAULT_VIDEO_TRACK_NUM 3
#define DEFAULT_VIDEO_PROFILE_LEVEL 1
#define DEFAULT_AUDIO_PROFILE_LEVEL 2
MP4Encoder::MP4Encoder(void)
: m_hFile(MP4_INVALID_FILE_HANDLE)
m_videoTrack(MP4_INVALID_TRACK_ID)
m_audioTrack(MP4_INVALID_TRACK_ID)
{
}
MP4Encoder::~MP4Encoder(void)
{
}
int MP4Encoder::MP4CreateFile(const char *sFileNameint Movie_Time_Scale)
{
m_hFile = MP4Create(sFileName);
if (m_hFile == MP4_INVALID_FILE_HANDLE)
{
printf(“create mp4 file error!\n“);
return -1;
}
if (!MP4SetTimeScale(m_hFile Movie_Time_Scale))
{
printf(“set time Scale error!\n“);
return -1;
}
return 0;
}
int MP4Encoder::MP4AddH264Track(const uint8_t *sData int nSize
int nWidth int nHeight int nframeRate int Video_Time_Scale)
{
int sps pps;
for (sps = 0; sps < nSize;)
if (sData[sps++] == 0x00 && sData[sps++] == 0x00 && sData[sps++] == 0x00
&& sData[sps++] == 0x01)
break;
for (pps = sps; pps < nSize;)
if (sData[pps++] == 0x00 && sData[pps++] == 0x00 && sData[pps++] == 0x00
&& sData[pps++] == 0x01)
break;
if (sps >= nSize || pps >= nSize)
return -1;
m_videoTrack = MP4AddH264VideoTrack(m_hFile Video_Time_Scale
Video_Time_Scale / nframeRate nWidth nHeight
sData[sps + 1] sData[sps + 2] sData[sps + 3] DEFAULT_VIDEO_TRACK_NUM);//sps 后面的三个字节
if (MP4_INVALID_TRACK_ID == m_videoTrack)
{
printf(“add video track error!\n“);
return -1;
}
MP4SetVideoProfileLevel(m_hFile DEFAULT_VIDEO_PROFILE_LEVEL);
MP4AddH264SequenceParameterSet(m_hFile m_videoTrack sData + spspps - sps - 4);//sps 内容 起始位置+长度
MP4AddH264PictureParameterSet(m_hFile m_videoTrack sData + ppsnSize - pps);// pps 内容 起始位置+长度
return 0;
}
int MP4Encoder::MP4AddAACTrack(const uint8_t *sData int nSizeint Audio_Time_Scale)
{
m_audioTrack = MP4AddAudioTrack(m_hFile Audio_Time_Scale1024 MP4_MPEG4_AUDIO_TYPE);
if (MP4_INVALID_TRACK_ID == m_audioTrack)
{
printf(“add audio track error!\n“);
return -1;
}
MP4SetAudioProfileLevel(m_hFile DEFAULT_AUDIO_PROFILE_LEVEL);
if (!MP4SetTrackESConfiguration(m_hFile m_audioTrack sData nSize))
{
printf(“set track ESConfiguration error!\n“);
return -1;
}
return 0;
}
int MP4Encoder::MP4WriteH264Data(uint8_t *sData int nSize)
{
bool result = false;
sData[0] = (nSize - 4) >> 24;
sData[1] = (nSize - 4) >> 16;
sData[2] = (nSize - 4) >> 8;
sData[3] = nSize - 4;
if(nSize<0||sData==NULL)
return -1;
if ((sData[4] & 0x1F) == 5)//判断I帧
result = MP4WriteSample(m_hFile m_videoTrack sData nSizeMP4_INVALID_DURATION0true);
else
result = MP4WriteSample(m_hFile m_videoTrack sData nSizeMP4_INVALID_DURATION0false);
if (!result)
{
printf(“write h264 frame error!\n“);
return -1;
}
return 0;
}
int MP4Encoder::MP4WriteAACData(const uint8_t *sData int nSize)
{
bool result = false;
if(nSize<0||sData==NULL)
ret
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-08-06 17:29 MP4Recorder\
目录 0 2019-08-06 16:45 MP4Recorder\Debug\
文件 31476736 2018-07-25 16:07 MP4Recorder\Debug\avcodec-58.dll
文件 5897216 2018-07-25 16:07 MP4Recorder\Debug\avformat-58.dll
文件 671232 2018-07-25 16:07 MP4Recorder\Debug\avutil-56.dll
目录 0 2019-08-06 16:45 MP4Recorder\Debug\include\
文件 7976 2015-02-13 01:38 MP4Recorder\Debug\include\_mingw.h
文件 5721 2015-02-13 01:38 MP4Recorder\Debug\include\inttypes.h
目录 0 2019-08-06 16:45 MP4Recorder\Debug\include\libavcodec\
文件 1207 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\ac3_parser.h
文件 1354 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\adts_parser.h
文件 211684 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\avcodec.h
文件 2570 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\avdct.h
文件 3111 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\avfft.h
文件 2853 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\d3d11va.h
文件 4044 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\dirac.h
文件 3715 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\dv_profile.h
文件 2361 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\dxva2.h
文件 1650 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\jni.h
文件 2825 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\mediacodec.h
文件 3763 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\qsv.h
文件 2297 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\vaapi.h
文件 5796 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\vdpau.h
文件 4785 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\version.h
文件 4029 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\videotoolbox.h
文件 2285 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\vorbis_parser.h
文件 6062 2018-07-25 16:07 MP4Recorder\Debug\include\libavcodec\xvmc.h
目录 0 2019-08-06 16:45 MP4Recorder\Debug\include\libavformat\
文件 117558 2018-07-25 16:07 MP4Recorder\Debug\include\libavformat\avformat.h
文件 31557 2018-07-25 16:07 MP4Recorder\Debug\include\libavformat\avio.h
文件 3781 2018-07-25 16:07 MP4Recorder\Debug\include\libavformat\version.h
............此处省略283个文件信息
- 上一篇:C程序设计高级教程周立功完整版
- 下一篇:MFC界面美化之SkinMagic典型
相关资源
- H264转化MP4源码
- c++使用ffmpeg把h264/h265和mp3写入mp4文件
- C++ 通过FFmpeg将rtsp视频流到本地mp4文件
- C H264格式 转MP4格式
- MP4文件切片生成TS和M3U8文件
- live555&RTSP;源码解析笔记
- MFC读取RTSP视频流
- RTMP/RTSP推流组件推送AAC到EasyDarwin
- MFC实现rtsp视频流的播放
- C++ 解析rtsp流后返回Iplimage,用Opengl显
- RTSP PUSH tcp udp h264 easydarwin
- C++ RTSP/RTP流媒体客户端源码
- RTSP服务器 C语言
- RTSP_Client.c
- RTSP请求客户端
- 最小RTSP服务器,C语言代码
- linux下最小RTSP服务器实现
- RTSP流媒体协议实现源代码 含客户端和
- RTSPRTP服务器+客户端 C++ 源代码
- DSS中的RTSPclientLib程序
- RTSPRTP C++ 源代码
- 将音视频文件转换为rtsp流(live555 媒
- mp4v2封装h264 AAC
- 用opencv处理RTSP视频流,其中视频流的
-
超值QT5之mediapla
yer实现RTSP以及本地 - QT+opencv打开RTSP视频流多线程
- QT写成的远程视频监控系统 -RTSPTool
- ffmpeg获取RTSP视频流信息
- web 播放rtsp视频流(附服务端以及使用
- C++ RTSP/RTP流媒体服务器源码
评论
共有 条评论