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
|
|
|
|
*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
|
|
|
|
|
*
|
|
|
|
|
* 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_
|
|
|
|
|
|
2017-05-02 17:07:02 +08:00
|
|
|
|
#ifdef ENABLE_MP4V2
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
#include <memory>
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <mp4v2/mp4v2.h>
|
|
|
|
|
#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"
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace ZL::Util;
|
2017-04-25 11:35:41 +08:00
|
|
|
|
using namespace ZL::Player;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
namespace ZL {
|
|
|
|
|
namespace MediaFile {
|
|
|
|
|
|
|
|
|
|
class Mp4Info
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
class Mp4Maker {
|
|
|
|
|
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,
|
|
|
|
|
const string &strStreamId,
|
|
|
|
|
const PlayerBase::Ptr &pPlayer);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
virtual ~Mp4Maker();
|
|
|
|
|
//时间戳:参考频率1000
|
|
|
|
|
void inputH264(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp, int iType);
|
|
|
|
|
//时间戳:参考频率1000
|
|
|
|
|
void inputAAC(void *pData, uint32_t ui32Length, uint32_t ui32TimeStamp);
|
|
|
|
|
private:
|
|
|
|
|
MP4FileHandle m_hMp4 = MP4_INVALID_FILE_HANDLE;
|
|
|
|
|
MP4TrackId m_hVideo = MP4_INVALID_TRACK_ID;
|
|
|
|
|
MP4TrackId m_hAudio = MP4_INVALID_TRACK_ID;
|
|
|
|
|
PlayerBase::Ptr m_pPlayer;
|
|
|
|
|
string m_strPath;
|
|
|
|
|
string m_strFile;
|
|
|
|
|
string m_strFileTmp;
|
|
|
|
|
Ticker m_ticker;
|
|
|
|
|
SmoothTicker m_mediaTicker[2];
|
|
|
|
|
|
|
|
|
|
void createFile();
|
|
|
|
|
void closeFile();
|
|
|
|
|
void _inputH264(void *pData, uint32_t ui32Length, uint32_t ui64Duration, int iType);
|
|
|
|
|
void _inputAAC(void *pData, uint32_t ui32Length, uint32_t ui64Duration);
|
|
|
|
|
|
|
|
|
|
string m_strLastVideo;
|
|
|
|
|
string m_strLastAudio;
|
|
|
|
|
|
|
|
|
|
uint32_t m_ui32LastVideoTime = 0;
|
|
|
|
|
uint32_t m_ui32LastAudioTime = 0;
|
|
|
|
|
int m_iLastVideoType = 0;
|
|
|
|
|
|
|
|
|
|
Mp4Info m_info;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} /* namespace MediaFile */
|
|
|
|
|
} /* namespace ZL */
|
|
|
|
|
|
2017-05-02 17:07:02 +08:00
|
|
|
|
#endif ///ENABLE_MP4V2
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#endif /* MP4MAKER_H_ */
|