优化拉流代理中关于ffmpeg.cmd的判断
parent
db24f49275
commit
29ef68038d
|
@ -132,6 +132,9 @@ public class StreamProxyServiceImpl implements IStreamProxyService {
|
|||
}
|
||||
JSONArray dataArray = jsonObject.getJSONArray("data");
|
||||
JSONObject mediaServerConfig = dataArray.getJSONObject(0);
|
||||
if (ObjectUtils.isEmpty(param.getFfmpegCmdKey())) {
|
||||
param.setFfmpegCmdKey("ffmpeg.cmd");
|
||||
}
|
||||
String ffmpegCmd = mediaServerConfig.getString(param.getFfmpegCmdKey());
|
||||
if (ffmpegCmd == null) {
|
||||
throw new ControllerException(ErrorCode.ERROR100.getCode(), "ffmpeg拉流代理无法获取ffmpeg cmd");
|
||||
|
|
Loading…
Reference in New Issue