2019-12-18 11:47:49 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2019-12-17 18:45:31 +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.
|
2019-12-17 18:45:31 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2019-12-27 10:10:31 +08:00
|
|
|
|
#include "mk_recorder.h"
|
2019-12-17 18:45:31 +08:00
|
|
|
|
#include "Rtmp/FlvMuxer.h"
|
2019-12-24 16:19:33 +08:00
|
|
|
|
#include "Record/Recorder.h"
|
2022-06-11 14:18:55 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-17 18:45:31 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
using namespace mediakit;
|
|
|
|
|
|
|
|
|
|
API_EXPORT mk_flv_recorder API_CALL mk_flv_recorder_create(){
|
|
|
|
|
FlvRecorder::Ptr *ret = new FlvRecorder::Ptr(new FlvRecorder);
|
2023-02-26 21:45:14 +08:00
|
|
|
|
return (mk_flv_recorder)ret;
|
2019-12-17 18:45:31 +08:00
|
|
|
|
}
|
|
|
|
|
API_EXPORT void API_CALL mk_flv_recorder_release(mk_flv_recorder ctx){
|
2019-12-18 14:43:32 +08:00
|
|
|
|
assert(ctx);
|
2019-12-17 18:45:31 +08:00
|
|
|
|
FlvRecorder::Ptr *record = (FlvRecorder::Ptr *)(ctx);
|
|
|
|
|
delete record;
|
|
|
|
|
}
|
2019-12-27 13:56:02 +08:00
|
|
|
|
API_EXPORT int API_CALL mk_flv_recorder_start(mk_flv_recorder ctx, const char *vhost, const char *app, const char *stream, const char *file_path){
|
|
|
|
|
assert(ctx && vhost && app && stream && file_path);
|
2019-12-17 18:45:31 +08:00
|
|
|
|
try {
|
2019-12-18 14:43:32 +08:00
|
|
|
|
FlvRecorder::Ptr *record = (FlvRecorder::Ptr *)(ctx);
|
2019-12-27 13:56:02 +08:00
|
|
|
|
(*record)->startRecord(EventPollerPool::Instance().getPoller(),vhost,app,stream,file_path);
|
2019-12-17 18:45:31 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}catch (std::exception &ex){
|
|
|
|
|
WarnL << ex.what();
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////hls/mp4录制/////////////////////////////////////////////
|
2022-06-11 14:18:55 +08:00
|
|
|
|
|
|
|
|
|
static inline bool isRecording(Recorder::type type, const string &vhost, const string &app, const string &stream_id){
|
|
|
|
|
auto src = MediaSource::find(vhost, app, stream_id);
|
|
|
|
|
if(!src){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return src->isRecording(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool startRecord(Recorder::type type, const string &vhost, const string &app, const string &stream_id,const string &customized_path, size_t max_second){
|
|
|
|
|
auto src = MediaSource::find(vhost, app, stream_id);
|
|
|
|
|
if (!src) {
|
|
|
|
|
WarnL << "未找到相关的MediaSource,startRecord失败:" << vhost << "/" << app << "/" << stream_id;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return src->setupRecord(type, true, customized_path, max_second);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool stopRecord(Recorder::type type, const string &vhost, const string &app, const string &stream_id){
|
|
|
|
|
auto src = MediaSource::find(vhost, app, stream_id);
|
|
|
|
|
if(!src){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return src->setupRecord(type, false, "", 0);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-05 09:26:29 +08:00
|
|
|
|
API_EXPORT int API_CALL mk_recorder_is_recording(int type, const char *vhost, const char *app, const char *stream){
|
|
|
|
|
assert(vhost && app && stream);
|
2022-06-11 14:18:55 +08:00
|
|
|
|
return isRecording((Recorder::type)type,vhost,app,stream);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 10:41:57 +08:00
|
|
|
|
API_EXPORT int API_CALL mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,const char *customized_path, size_t max_second){
|
2020-04-05 09:26:29 +08:00
|
|
|
|
assert(vhost && app && stream);
|
2022-06-11 14:18:55 +08:00
|
|
|
|
return startRecord((Recorder::type)type,vhost,app,stream,customized_path ? customized_path : "", max_second);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
API_EXPORT int API_CALL mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream){
|
|
|
|
|
assert(vhost && app && stream);
|
2022-06-11 14:18:55 +08:00
|
|
|
|
return stopRecord((Recorder::type)type,vhost,app,stream);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|