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
|
|
|
|
*
|
2021-01-17 18:31:50 +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>
|
2018-10-28 00:15:27 +08:00
|
|
|
|
#include "Common/MediaSink.h"
|
2022-11-29 11:07:13 +08:00
|
|
|
|
#include "Record/Recorder.h"
|
2020-09-15 19:09:26 +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
|
2022-11-29 11:07:13 +08:00
|
|
|
|
class MP4Muxer;
|
|
|
|
|
|
2022-10-16 19:49:56 +08:00
|
|
|
|
class MP4Recorder final : public MediaSinkInterface {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2021-10-20 17:37:19 +08:00
|
|
|
|
using Ptr = std::shared_ptr<MP4Recorder>;
|
2019-12-04 18:36:30 +08:00
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
MP4Recorder(const std::string &path, const std::string &vhost, const std::string &app, const std::string &stream_id, size_t max_second);
|
2021-10-20 17:37:19 +08:00
|
|
|
|
~MP4Recorder() override;
|
2019-10-16 11:10:20 +08:00
|
|
|
|
|
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
|
|
|
|
*/
|
2021-09-27 13:12:53 +08:00
|
|
|
|
bool inputFrame(const Frame::Ptr &frame) override;
|
2018-10-28 00:15:27 +08:00
|
|
|
|
|
2022-10-16 19:49:56 +08:00
|
|
|
|
/**
|
|
|
|
|
* 刷新输出所有frame缓存
|
|
|
|
|
*/
|
|
|
|
|
void flush() override;
|
|
|
|
|
|
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
|
|
|
|
*/
|
2021-09-27 13:12:53 +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();
|
2021-10-20 17:37:19 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
private:
|
2021-10-20 17:37:19 +08:00
|
|
|
|
bool _have_video = false;
|
2021-03-07 10:41:57 +08:00
|
|
|
|
size_t _max_second;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
std::string _folder_path;
|
|
|
|
|
std::string _full_path;
|
|
|
|
|
std::string _full_path_tmp;
|
2020-09-15 19:09:26 +08:00
|
|
|
|
RecordInfo _info;
|
2022-11-29 11:07:13 +08:00
|
|
|
|
std::shared_ptr<MP4Muxer> _muxer;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
std::list<Track::Ptr> _tracks;
|
2021-10-20 17:37:19 +08:00
|
|
|
|
uint64_t _last_dts = 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_ */
|