mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
合并#199
This commit is contained in:
parent
bca2472fcd
commit
d082955510
@ -79,6 +79,7 @@ API_EXPORT int API_CALL mk_recorder_status(int type, const char *vhost, const ch
|
|||||||
* @param vhost 虚拟主机
|
* @param vhost 虚拟主机
|
||||||
* @param app 应用名
|
* @param app 应用名
|
||||||
* @param stream 流id
|
* @param stream 流id
|
||||||
|
* @param customized_path 录像文件保存自定义目录,默认为空或null则自动生成
|
||||||
* @param wait_for_record 是否等待流注册后再录制,未注册时,置false将返回失败
|
* @param wait_for_record 是否等待流注册后再录制,未注册时,置false将返回失败
|
||||||
* @param continue_record 流注销时是否继续等待录制还是立即停止录制
|
* @param continue_record 流注销时是否继续等待录制还是立即停止录制
|
||||||
* @return 0代表成功,负数代表失败
|
* @return 0代表成功,负数代表失败
|
||||||
|
@ -59,7 +59,7 @@ API_EXPORT int API_CALL mk_recorder_status(int type, const char *vhost, const ch
|
|||||||
|
|
||||||
API_EXPORT int API_CALL mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,const char *customized_path,int wait_for_record, int continue_record){
|
API_EXPORT int API_CALL mk_recorder_start(int type, const char *vhost, const char *app, const char *stream,const char *customized_path,int wait_for_record, int continue_record){
|
||||||
assert(vhost && app && stream);
|
assert(vhost && app && stream);
|
||||||
return Recorder::startRecord((Recorder::type)type,vhost,app,stream,customized_path,wait_for_record,continue_record);
|
return Recorder::startRecord((Recorder::type)type,vhost,app,stream,customized_path ? customized_path : "",wait_for_record,continue_record);
|
||||||
}
|
}
|
||||||
|
|
||||||
API_EXPORT int API_CALL mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream){
|
API_EXPORT int API_CALL mk_recorder_stop(int type, const char *vhost, const char *app, const char *stream){
|
||||||
|
@ -69,6 +69,7 @@ public:
|
|||||||
* @param vhost 虚拟主机
|
* @param vhost 虚拟主机
|
||||||
* @param app 应用名
|
* @param app 应用名
|
||||||
* @param stream_id 流id
|
* @param stream_id 流id
|
||||||
|
* @param customized_path 录像文件保存自定义目录,默认为空则自动生成
|
||||||
* @param waitForRecord 是否等待流注册后再录制,未注册时,置false将返回失败
|
* @param waitForRecord 是否等待流注册后再录制,未注册时,置false将返回失败
|
||||||
* @param continueRecord 流注销时是否继续等待录制还是立即停止录制
|
* @param continueRecord 流注销时是否继续等待录制还是立即停止录制
|
||||||
* @return 0代表成功,负数代表失败
|
* @return 0代表成功,负数代表失败
|
||||||
|
Loading…
Reference in New Issue
Block a user