ZLMediaKit/src/Record/MP4Recorder.h

86 lines
2.0 KiB
C++
Raw Normal View History

2020-04-04 20:30:09 +08:00
/*
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
*
2020-04-04 20:30:09 +08:00
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
2017-04-01 16:35:56 +08:00
*/
#ifndef MP4MAKER_H_
#define MP4MAKER_H_
#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"
2019-08-01 18:49:04 +08:00
#include "MP4Muxer.h"
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
2019-12-04 18:36:30 +08:00
class MP4Info {
2017-04-01 16:35:56 +08:00
public:
2020-03-20 11:51:24 +08:00
time_t ui64StartedTime; //GMT标准时间单位秒
time_t ui64TimeLen;//录像长度,单位秒
off_t ui64FileSize;//文件大小单位BYTE
string strFilePath;//文件路径
string strFileName;//文件名称
string strFolder;//文件夹路径
string strUrl;//播放路径
string strAppName;//应用名称
string strStreamId;//流ID
string strVhost;//vhost
2017-04-01 16:35:56 +08:00
};
2019-12-04 18:36:30 +08:00
2020-04-03 20:45:58 +08:00
#ifdef ENABLE_MP4
2019-12-03 12:32:57 +08:00
class MP4Recorder : public MediaSinkInterface{
2017-04-01 16:35:56 +08:00
public:
2020-03-20 11:51:24 +08:00
typedef std::shared_ptr<MP4Recorder> Ptr;
2019-12-04 18:36:30 +08:00
2020-03-20 11:51:24 +08:00
MP4Recorder(const string &strPath,
const string &strVhost,
const string &strApp,
const string &strStreamId);
virtual ~MP4Recorder();
2020-03-20 11:51:24 +08:00
/**
* Track
*/
void resetTracks() override;
2019-12-03 12:32:57 +08:00
2020-03-20 11:51:24 +08:00
/**
2019-12-03 12:32:57 +08:00
* frame
2018-10-28 00:15:27 +08:00
*/
2020-03-20 11:51:24 +08:00
void inputFrame(const Frame::Ptr &frame) override;
2018-10-28 00:15:27 +08:00
2019-08-01 22:07:40 +08:00
/**
2019-12-03 12:32:57 +08:00
* ready状态的track
2019-08-01 22:07:40 +08:00
*/
2019-12-03 12:32:57 +08:00
void addTrack(const Track::Ptr & track) override;
2018-10-28 00:15:27 +08:00
private:
void createFile();
void closeFile();
2019-04-03 11:09:50 +08:00
void asyncClose();
2017-04-01 16:35:56 +08:00
private:
2020-03-20 11:51:24 +08:00
string _strPath;
string _strFile;
string _strFileTmp;
Ticker _createFileTicker;
MP4Info _info;
bool _haveVideo = false;
2020-04-03 20:45:58 +08:00
MP4Muxer::Ptr _muxer;
2020-03-20 11:51:24 +08:00
list<Track::Ptr> _tracks;
2017-04-01 16:35:56 +08:00
};
2020-04-03 20:45:58 +08:00
#endif ///ENABLE_MP4
2017-04-01 16:35:56 +08:00
2019-12-23 18:50:46 +08:00
} /* namespace mediakit */
2017-04-01 16:35:56 +08:00
#endif /* MP4MAKER_H_ */