MP4Recorder.h 2.9 KB
Newer Older
xiongziliang committed
1
 /*
xiongziliang committed
2
 * MIT License
xzl committed
3
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
xiongziliang committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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.
xzl committed
25 26 27 28 29
 */

#ifndef MP4MAKER_H_
#define MP4MAKER_H_

30
#ifdef ENABLE_MP4RECORD
xzl committed
31 32 33

#include <mutex>
#include <memory>
xiongzilaing committed
34
#include "Player/PlayerBase.h"
xzl committed
35
#include "Util/util.h"
xiongzilaing committed
36
#include "Util/logger.h"
xzl committed
37 38
#include "Util/TimeTicker.h"
#include "Util/TimeTicker.h"
39
#include "Common/MediaSink.h"
xiongziliang committed
40
#include "MP4Muxer.h"
xiongziliang committed
41
using namespace toolkit;
xzl committed
42

xiongziliang committed
43
namespace mediakit {
xzl committed
44

45
class Mp4Info {
xzl committed
46 47 48
public:
	time_t ui64StartedTime; //GMT标准时间,单位秒
	time_t ui64TimeLen;//录像长度,单位秒
xiongziliang committed
49
	off_t ui64FileSize;//文件大小,单位BYTE
xzl committed
50 51 52 53 54 55
	string strFilePath;//文件路径
	string strFileName;//文件名称
	string strFolder;//文件夹路径
	string strUrl;//播放路径
	string strAppName;//应用名称
	string strStreamId;//流ID
56
	string strVhost;//vhost
xzl committed
57
};
xiongziliang committed
58
class MP4Recorder : public MediaSink{
xzl committed
59
public:
xiongziliang committed
60 61
	typedef std::shared_ptr<MP4Recorder> Ptr;
	MP4Recorder(const string &strPath,
62 63
			 const string &strVhost ,
			 const string &strApp,
64
			 const string &strStreamId);
xiongziliang committed
65
	virtual ~MP4Recorder();
66 67 68 69 70 71 72
private:
	/**
     * 某Track输出frame,在onAllTrackReady触发后才会调用此方法
     * @param frame
     */
	void onTrackFrame(const Frame::Ptr &frame) override ;

xiongziliang committed
73 74 75 76 77 78
    /**
     * 某track已经准备好,其ready()状态返回true,
     * 此时代表可以获取其例如sps pps等相关信息了
     * @param track
     */
    void onTrackReady(const Track::Ptr & track) override;
79 80 81
private:
    void createFile();
    void closeFile();
82
    void asyncClose();
xzl committed
83
private:
84 85 86
	string _strPath;
	string _strFile;
	string _strFileTmp;
xiongziliang committed
87
	Ticker _createFileTicker;
88
	Mp4Info _info;
89
	bool _haveVideo = false;
xiongziliang committed
90 91
	MP4MuxerFile::Ptr _muxer;
	list<Track::Ptr> _tracks;
xzl committed
92 93
};

xiongziliang committed
94
} /* namespace mediakit */
xzl committed
95

96
#endif ///ENABLE_MP4RECORD
xzl committed
97 98

#endif /* MP4MAKER_H_ */