MP4Recorder.cpp 3.95 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
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.
xiongziliang committed
9
 */
xzl committed
10

xiongziliang committed
11
#ifdef ENABLE_MP4
12
#include <ctime>
xzl committed
13
#include <sys/stat.h>
xiongziliang committed
14
#include "Common/config.h"
xiongziliang committed
15
#include "MP4Recorder.h"
16
#include "Thread/WorkThreadPool.h"
17

18 19 20 21
using namespace toolkit;

namespace mediakit {

xiongziliang committed
22
MP4Recorder::MP4Recorder(const string& strPath,
23 24 25 26 27 28 29 30 31
                   const string &strVhost,
                   const string &strApp,
                   const string &strStreamId) {
    _strPath = strPath;
    /////record 业务逻辑//////
    _info.strAppName = strApp;
    _info.strStreamId = strStreamId;
    _info.strVhost = strVhost;
    _info.strFolder = strPath;
xzl committed
32
}
xiongziliang committed
33
MP4Recorder::~MP4Recorder() {
34
    closeFile();
xzl committed
35 36
}

xiongziliang committed
37
void MP4Recorder::createFile() {
38 39 40 41 42 43 44 45 46 47
    closeFile();
    auto strDate = getTimeStr("%Y-%m-%d");
    auto strTime = getTimeStr("%H-%M-%S");
    auto strFileTmp = _strPath + strDate + "/." + strTime + ".mp4";
    auto strFile =	_strPath + strDate + "/" + strTime + ".mp4";

    /////record 业务逻辑//////
    _info.ui64StartedTime = ::time(NULL);
    _info.strFileName = strTime + ".mp4";
    _info.strFilePath = strFile;
48
    GET_CONFIG(string,appName,Record::kAppName);
49 50 51 52 53
    _info.strUrl = appName + "/"
                   + _info.strAppName + "/"
                   + _info.strStreamId + "/"
                   + strDate + "/"
                   + strTime + ".mp4";
54

55
    try {
xiongziliang committed
56
        _muxer = std::make_shared<MP4Muxer>(strFileTmp.data());
57
        for(auto &track :_tracks){
58 59
            //添加track
            _muxer->addTrack(track);
60 61 62 63 64 65 66
        }
        _strFileTmp = strFileTmp;
        _strFile = strFile;
        _createFileTicker.resetTime();
    }catch(std::exception &ex) {
        WarnL << ex.what();
    }
xzl committed
67 68
}

xiongziliang committed
69
void MP4Recorder::asyncClose() {
70 71 72 73 74 75 76 77
    auto muxer = _muxer;
    auto strFileTmp = _strFileTmp;
    auto strFile = _strFile;
    auto info = _info;
    WorkThreadPool::Instance().getExecutor()->async([muxer,strFileTmp,strFile,info]() {
        //获取文件录制时间,放在关闭mp4之前是为了忽略关闭mp4执行时间
        const_cast<MP4Info&>(info).ui64TimeLen = ::time(NULL) - info.ui64StartedTime;
        //关闭mp4非常耗时,所以要放在后台线程执行
78
        muxer->closeMP4();
79 80 81 82 83 84 85 86 87
        //临时文件名改成正式文件名,防止mp4未完成时被访问
        rename(strFileTmp.data(),strFile.data());
        //获取文件大小
        struct stat fileData;
        stat(strFile.data(), &fileData);
        const_cast<MP4Info&>(info).ui64FileSize = fileData.st_size;
        /////record 业务逻辑//////
        NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastRecordMP4,info);
    });
88 89
}

xiongziliang committed
90
void MP4Recorder::closeFile() {
91 92 93 94
    if (_muxer) {
        asyncClose();
        _muxer = nullptr;
    }
xzl committed
95 96
}

xiongziliang committed
97
void MP4Recorder::inputFrame(const Frame::Ptr &frame) {
98 99 100 101 102 103 104 105 106 107 108 109 110 111
    GET_CONFIG(uint32_t,recordSec,Record::kFileSecond);
    if(!_muxer || ((_createFileTicker.elapsedTime() > recordSec * 1000) &&
                  (!_haveVideo || (_haveVideo && frame->keyFrame()))) ){
        //成立条件
        //1、_muxer为空
        //2、到了切片时间,并且只有音频
        //3、到了切片时间,有视频并且遇到视频的关键帧
        createFile();
    }

    if(_muxer){
        //生成mp4文件
        _muxer->inputFrame(frame);
    }
112 113
}

xiongziliang committed
114
void MP4Recorder::addTrack(const Track::Ptr & track){
115 116 117 118 119
    //保存所有的track,为创建MP4MuxerFile做准备
    _tracks.emplace_back(track);
    if(track->getTrackType() == TrackVideo){
        _haveVideo = true;
    }
120 121
}

122
void MP4Recorder::resetTracks() {
123 124 125 126
    closeFile();
    _tracks.clear();
    _haveVideo = false;
    _createFileTicker.resetTime();
127 128
}

xiongziliang committed
129
} /* namespace mediakit */
xzl committed
130 131


xiongziliang committed
132
#endif //ENABLE_MP4