MP4Recorder.h 1.67 KB
Newer Older
xiongziliang committed
1 2
/*
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5
 *
xiongziliang committed
6 7 8
 * 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.
xzl committed
9 10 11 12 13 14 15
 */

#ifndef MP4MAKER_H_
#define MP4MAKER_H_

#include <mutex>
#include <memory>
xiongzilaing committed
16
#include "Player/PlayerBase.h"
xzl committed
17
#include "Util/util.h"
xiongzilaing committed
18
#include "Util/logger.h"
xzl committed
19 20
#include "Util/TimeTicker.h"
#include "Util/TimeTicker.h"
21
#include "Common/MediaSink.h"
xiongziliang committed
22
#include "MP4Muxer.h"
23

xiongziliang committed
24
using namespace toolkit;
xzl committed
25

xiongziliang committed
26
namespace mediakit {
xzl committed
27

xiongziliang committed
28
#ifdef ENABLE_MP4
xiongziliang committed
29
class MP4Recorder : public MediaSinkInterface{
xzl committed
30
public:
31
    typedef std::shared_ptr<MP4Recorder> Ptr;
32

33 34 35
    MP4Recorder(const string &strPath,
                const string &strVhost,
                const string &strApp,
36 37
                const string &strStreamId,
                size_t max_second);
38
    virtual ~MP4Recorder();
39

40 41 42 43
    /**
     * 重置所有Track
     */
    void resetTracks() override;
xiongziliang committed
44

45
    /**
xiongziliang committed
46
     * 输入frame
47
     */
48
    void inputFrame(const Frame::Ptr &frame) override;
49

xiongziliang committed
50
    /**
xiongziliang committed
51
     * 添加ready状态的track
xiongziliang committed
52
     */
xiongziliang committed
53
    void addTrack(const Track::Ptr & track) override;
54 55 56
private:
    void createFile();
    void closeFile();
57
    void asyncClose();
xzl committed
58
private:
59 60
    bool _haveVideo = false;
    size_t _max_second;
61 62 63 64
    string _strPath;
    string _strFile;
    string _strFileTmp;
    Ticker _createFileTicker;
65
    RecordInfo _info;
xiongziliang committed
66
    MP4Muxer::Ptr _muxer;
67
    list<Track::Ptr> _tracks;
xzl committed
68 69
};

xiongziliang committed
70
#endif ///ENABLE_MP4
xzl committed
71

72 73
} /* namespace mediakit */

xzl committed
74
#endif /* MP4MAKER_H_ */