ZLMediaKit/src/Record/MP4Recorder.h

76 lines
1.7 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/xia-chu/ZLMediaKit).
2017-09-27 16:20:30 +08:00
*
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"
2020-09-15 19:09:26 +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
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,
size_t max_second);
2020-03-20 11:51:24 +08:00
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
*/
bool 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
*/
bool 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:
bool _haveVideo = false;
size_t _max_second;
2020-03-20 11:51:24 +08:00
string _strPath;
string _strFile;
string _strFileTmp;
2020-09-15 19:09:26 +08:00
RecordInfo _info;
2020-04-03 20:45:58 +08:00
MP4Muxer::Ptr _muxer;
2020-03-20 11:51:24 +08:00
list<Track::Ptr> _tracks;
uint64_t _baseSec = 0;
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_ */