|
@@ -1221,10 +1221,13 @@ ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4
|
|
|
log.info("data------------------>" + data);
|
|
|
if (StringUtils.isNotEmpty(data)) {
|
|
|
JSONObject jsonObject = JSONObject.parseObject(data);
|
|
|
+ log.info("jsonObject------------------>" + jsonObject);
|
|
|
JSONArray streamArray = jsonObject.getJSONArray("Streams");
|
|
|
+ log.info("streamArray------------------>" + streamArray);
|
|
|
if (!ObjectUtils.isEmpty(streamArray)) {
|
|
|
for (int i = 0; i < streamArray.size(); i++) {
|
|
|
JSONObject subObj = streamArray.getJSONObject(i);
|
|
|
+ log.info("subObj------------------>" + subObj);
|
|
|
String subValue = subObj.getString("Subscribers");
|
|
|
String pathValue = subObj.getString("Path");
|
|
|
//从缓存取出预拉的流的集合
|