2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* MIT License
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef MP4MAKER_H_
|
|
|
|
|
#define MP4MAKER_H_
|
|
|
|
|
|
2019-08-01 11:44:16 +08:00
|
|
|
|
#ifdef ENABLE_MP4RECORD
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
#include <memory>
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Player/PlayerBase.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "Util/util.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Util/logger.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "Util/TimeTicker.h"
|
2018-10-28 00:15:27 +08:00
|
|
|
|
#include "Common/MediaSink.h"
|
2018-10-30 14:59:42 +08:00
|
|
|
|
#include "Extension/Track.h"
|
2018-10-28 00:15:27 +08:00
|
|
|
|
|
2019-07-30 19:26:38 +08:00
|
|
|
|
|
|
|
|
|
#include "mov-writer.h"
|
|
|
|
|
#include "mpeg4-hevc.h"
|
2019-08-01 11:44:16 +08:00
|
|
|
|
#include "mpeg4-avc.h"
|
|
|
|
|
|
2019-07-30 19:26:38 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-28 00:15:27 +08:00
|
|
|
|
class Mp4Info {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
|
|
|
|
time_t ui64StartedTime; //GMT标准时间,单位秒
|
|
|
|
|
time_t ui64TimeLen;//录像长度,单位秒
|
2017-05-11 18:03:06 +08:00
|
|
|
|
off_t ui64FileSize;//文件大小,单位BYTE
|
2017-04-01 16:35:56 +08:00
|
|
|
|
string strFilePath;//文件路径
|
|
|
|
|
string strFileName;//文件名称
|
|
|
|
|
string strFolder;//文件夹路径
|
|
|
|
|
string strUrl;//播放路径
|
|
|
|
|
string strAppName;//应用名称
|
|
|
|
|
string strStreamId;//流ID
|
2018-02-02 18:06:08 +08:00
|
|
|
|
string strVhost;//vhost
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
2019-07-30 19:26:38 +08:00
|
|
|
|
|
|
|
|
|
class MovH265Info {
|
|
|
|
|
public:
|
|
|
|
|
mov_writer_t* pMov;
|
|
|
|
|
struct mpeg4_hevc_t hevc;
|
2019-08-01 11:44:16 +08:00
|
|
|
|
struct mpeg4_avc_t avc;
|
2019-07-30 19:26:38 +08:00
|
|
|
|
int videoTrack;
|
|
|
|
|
int audioTrack;
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
2019-08-01 11:44:16 +08:00
|
|
|
|
uint32_t startPts;
|
2019-07-30 19:26:38 +08:00
|
|
|
|
FILE * pFile;
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-28 00:15:27 +08:00
|
|
|
|
class Mp4Maker : public MediaSink{
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<Mp4Maker> Ptr;
|
2018-02-02 18:06:08 +08:00
|
|
|
|
Mp4Maker(const string &strPath,
|
|
|
|
|
const string &strVhost ,
|
|
|
|
|
const string &strApp,
|
2018-10-28 00:15:27 +08:00
|
|
|
|
const string &strStreamId);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
virtual ~Mp4Maker();
|
2018-10-28 00:15:27 +08:00
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* 某Track输出frame,在onAllTrackReady触发后才会调用此方法
|
|
|
|
|
* @param frame
|
|
|
|
|
*/
|
|
|
|
|
void onTrackFrame(const Frame::Ptr &frame) override ;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 所有Track准备好了
|
|
|
|
|
*/
|
|
|
|
|
void onAllTrackReady() override;
|
|
|
|
|
private:
|
|
|
|
|
void createFile();
|
|
|
|
|
void closeFile();
|
2019-04-03 11:09:50 +08:00
|
|
|
|
void asyncClose();
|
2018-10-28 00:15:27 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//时间戳:参考频率1000
|
2019-07-30 19:26:38 +08:00
|
|
|
|
void inputH264(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
|
|
|
|
void inputH265(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//时间戳:参考频率1000
|
|
|
|
|
void inputAAC(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
2018-10-28 00:15:27 +08:00
|
|
|
|
|
2019-08-01 11:44:16 +08:00
|
|
|
|
void inputH264_l(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
2019-07-30 19:26:38 +08:00
|
|
|
|
void inputH265_l(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
2019-08-01 11:44:16 +08:00
|
|
|
|
void inputAAC_l(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
private:
|
2019-07-30 19:26:38 +08:00
|
|
|
|
|
|
|
|
|
MovH265Info _movH265info;
|
|
|
|
|
int _h265Record = 0;
|
2019-08-01 11:44:16 +08:00
|
|
|
|
uint32_t _startPts;
|
2019-07-30 19:26:38 +08:00
|
|
|
|
|
|
|
|
|
uint8_t _sBbuffer[2 * 1024 * 1024];
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _strPath;
|
|
|
|
|
string _strFile;
|
|
|
|
|
string _strFileTmp;
|
|
|
|
|
Ticker _ticker;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _strLastVideo;
|
|
|
|
|
string _strLastAudio;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 15:43:52 +08:00
|
|
|
|
uint32_t _ui32LastVideoTime = 0;
|
|
|
|
|
uint32_t _ui32LastAudioTime = 0;
|
|
|
|
|
Mp4Info _info;
|
2018-10-28 00:15:27 +08:00
|
|
|
|
|
|
|
|
|
bool _haveVideo = false;
|
|
|
|
|
int _audioSampleRate;
|
2019-07-30 19:26:38 +08:00
|
|
|
|
int _audioChannel;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2019-08-01 11:44:16 +08:00
|
|
|
|
#endif ///ENABLE_MP4RECORD
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#endif /* MP4MAKER_H_ */
|