Recorder.h 3.22 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
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.
9 10
 */

xiongziliang committed
11 12 13 14 15
#ifndef SRC_MEDIAFILE_RECORDER_H_
#define SRC_MEDIAFILE_RECORDER_H_
#include <memory>
#include <string>
using namespace std;
16
namespace mediakit {
xiongziliang committed
17 18
class MediaSinkInterface;

19 20 21 22 23 24 25 26 27 28 29 30 31 32
class RecordInfo {
public:
    time_t start_time;  // GMT 标准时间,单位秒
    float time_len;     // 录像长度,单位秒
    off_t file_size;    // 文件大小,单位 BYTE
    string file_path;   // 文件路径
    string file_name;   // 文件名称
    string folder;      // 文件夹路径
    string url;         // 播放路径
    string app;         // 应用名称
    string stream;      // 流 ID
    string vhost;       // 虚拟主机
};

xiongziliang committed
33
class Recorder{
34
public:
35 36 37 38 39 40
    typedef enum {
        // 录制hls
        type_hls = 0,
        // 录制MP4
        type_mp4 = 1
    } type;
41

42 43 44
    /**
     * 获取录制文件绝对路径
     * @param type hls还是MP4录制
45 46 47
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param stream_id 流id
48
     * @param customized_path 录像文件保存自定义根目录,为空则采用配置文件设置
49 50 51
     * @return  录制文件绝对路径
     */
    static string getRecordPath(type type, const string &vhost, const string &app, const string &stream_id,const string &customized_path = "");
52

53
    /**
54 55
     * 创建录制器对象
     * @param type hls还是MP4录制
56 57 58
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param stream_id 流id
59
     * @param customized_path 录像文件保存自定义根目录,为空则采用配置文件设置
60 61
     * @return 对象指针,可能为nullptr
     */
62
    static std::shared_ptr<MediaSinkInterface> createRecorder(type type, const string &vhost, const string &app, const string &stream_id, const string &customized_path = "");
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79

    /**
     * 获取录制状态
     * @param type hls还是MP4录制
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param stream_id 流id
     * @return 是否真正录制
     */
    static bool isRecording(type type, const string &vhost, const string &app, const string &stream_id);

    /**
     * 开始录制
     * @param type hls还是MP4录制
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param stream_id 流id
80
     * @param customized_path 录像文件保存自定义根目录,为空则采用配置文件设置
81 82 83 84 85 86 87 88 89 90 91 92 93
     * @return 成功与否
     */
    static bool startRecord(type type, const string &vhost, const string &app, const string &stream_id,const string &customized_path);

    /**
     * 停止录制
     * @param type hls还是MP4录制
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param stream_id 流id
     */
    static bool stopRecord(type type, const string &vhost, const string &app, const string &stream_id);

xiongziliang committed
94
private:
95 96
    Recorder() = delete;
    ~Recorder() = delete;
97 98
};

xiongziliang committed
99 100
} /* namespace mediakit */
#endif /* SRC_MEDIAFILE_RECORDER_H_ */