VideoFileService.java
16.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
package top.panll.assist.service;
import com.alibaba.fastjson.JSONObject;
import net.bramp.ffmpeg.FFprobe;
import net.bramp.ffmpeg.probe.FFmpegProbeResult;
import net.bramp.ffmpeg.progress.Progress;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Service;
import org.springframework.util.DigestUtils;
import top.panll.assist.utils.RedisUtil;
import top.panll.assist.dto.MergeOrCutTaskInfo;
import top.panll.assist.dto.UserSettings;
import top.panll.assist.utils.DateUtils;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.attribute.BasicFileAttributes;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
@Service
public class VideoFileService {
private final static Logger logger = LoggerFactory.getLogger(VideoFileService.class);
@Autowired
private UserSettings userSettings;
@Autowired
private RedisUtil redisUtil;
@Autowired
private StringRedisTemplate stringRedisTemplate;
private ThreadPoolExecutor processThreadPool;
private SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
private SimpleDateFormat simpleDateFormatForTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
private String keyStr = "MERGEORCUT";
@Bean("threadPoolExecutor")
private ThreadPoolExecutor iniThreadPool() {
int processThreadNum = Runtime.getRuntime().availableProcessors() * 10;
LinkedBlockingQueue<Runnable> processQueue = new LinkedBlockingQueue<Runnable>(10000);
processThreadPool = new ThreadPoolExecutor(processThreadNum,processThreadNum,
0L, TimeUnit.MILLISECONDS,processQueue,
new ThreadPoolExecutor.CallerRunsPolicy());
return processThreadPool;
}
public List<File> getAppList() {
File recordFile = new File(userSettings.getRecord());
if (recordFile != null) {
File[] files = recordFile.listFiles();
List<File> result = Arrays.asList(files);
Collections.sort(result);
return result;
}else {
return null;
}
}
public List<File> getStreamList(String app) {
File appFile = new File(userSettings.getRecord() + File.separator + app);
if (appFile != null) {
File[] files = appFile.listFiles();
List<File> result = Arrays.asList(files);
Collections.sort(result);
return result;
}else {
return null;
}
}
/**
* 对视频文件重命名, 00:00:00-00:00:00
* @param file
* @throws ParseException
*/
public void handFile(File file) {
FFprobe ffprobe = FFmpegExecUtils.getInstance().ffprobe;
if(file.exists() && file.isFile() && !file.getName().startsWith(".")&& file.getName().endsWith(".mp4") && file.getName().indexOf(":") < 0) {
try {
FFmpegProbeResult in = null;
in = ffprobe.probe(file.getAbsolutePath());
double duration = in.getFormat().duration * 1000;
String endTimeStr = file.getName().replace(".mp4", "");
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm:ss");
File dateFile = new File(file.getParent());
long startTime = formatter.parse(dateFile.getName() + " " + endTimeStr).getTime();
long durationLong = new Double(duration).longValue();
long endTime = startTime + durationLong;
endTime = endTime - endTime%1000;
String newName = file.getAbsolutePath().replace(file.getName(),
simpleDateFormat.format(startTime) + "-" + simpleDateFormat.format(endTime) + "-" + durationLong + ".mp4");
file.renameTo(new File(newName));
System.out.println(newName);
} catch (IOException e) {
logger.warn("文件可能以损坏[{}]", file.getAbsolutePath());
// e.printStackTrace();
} catch (ParseException e) {
logger.error("时间格式化失败", e.getMessage());
}
}
}
public List<Map<String, String>> getList() {
List<Map<String, String>> result = new ArrayList<>();
List<File> appList = getAppList();
if (appList != null && appList.size() > 0) {
for (File appFile : appList) {
List<File> streamList = getStreamList(appFile.getName());
if (streamList != null && streamList.size() > 0) {
for (File streamFile : streamList) {
Map<String, String> data = new HashMap<>();
data.put("app", appFile.getName());
data.put("stream", streamFile.getName());
BasicFileAttributes bAttributes = null;
try {
bAttributes = Files.readAttributes(streamFile.toPath(),
BasicFileAttributes.class);
} catch (IOException e) {
e.printStackTrace();
}
data.put("time", simpleDateFormatForTime.format(new Date(bAttributes.lastModifiedTime().toMillis())));
result.add(data);
}
}
}
}
result.sort((Map f1, Map f2)->{
Date time1 = null;
Date time2 = null;
try {
time1 = simpleDateFormatForTime.parse(f1.get("time").toString());
time2 = simpleDateFormatForTime.parse(f2.get("time").toString());
} catch (ParseException e) {
logger.error("时间格式化失败", e.getMessage());
}
return time1.compareTo(time2) * -1;
});
return result;
}
/**
* 获取制定推流的指定时间段内的推流
* @param app
* @param stream
* @param startTime
* @param endTime
* @return
*/
public List<File> getFilesInTime(String app, String stream, Date startTime, Date endTime){
List<File> result = new ArrayList<>();
if (app == null || stream == null) {
return result;
}
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat formatterForDate = new SimpleDateFormat("yyyy-MM-dd");
String startTimeStr = formatter.format(startTime);
String endTimeStr = formatter.format(endTime);
logger.debug("获取[app: {}, stream: {}, statime: {}, endTime: {}]的视频", app, stream,
startTimeStr, endTimeStr);
File recordFile = new File(userSettings.getRecord());
File streamFile = new File(recordFile.getAbsolutePath() + File.separator + app + File.separator + stream);
if (!streamFile.exists()) {
logger.warn("获取[app: {}, stream: {}, statime: {}, endTime: {}]的视频时未找到目录: {}", app, stream,
startTimeStr, endTimeStr, stream);
return result;
}
File[] dateFiles = streamFile.listFiles((File dir, String name) -> {
Date fileDate = null;
Date startDate = new Date(startTime.getTime() - ((startTime.getTime() + 28800000) % (86400000)));
Date endDate = new Date(endTime.getTime() - ((endTime.getTime() + 28800000) % (86400000)));
try {
fileDate = formatterForDate.parse(name);
} catch (ParseException e) {
logger.error("过滤日期文件时异常: {}-{}", name, e.getMessage());
return false;
}
return (DateUtils.getStartOfDay(fileDate).compareTo(startDate) <= 0
&& DateUtils.getStartOfDay(fileDate).compareTo(endDate) >= 0) ;
});
if (dateFiles != null && dateFiles.length > 0) {
for (File dateFile : dateFiles) {
// TODO 按时间获取文件
File[] files = dateFile.listFiles((File dir, String name) ->{
boolean filterResult = false;
if (name.contains(":") && name.endsWith(".mp4") && !name.startsWith(".")){
String[] timeArray = name.split("-");
if (timeArray.length == 3){
String fileStartTimeStr = dateFile.getName() + " " + timeArray[0];
String fileEndTimeStr = dateFile.getName() + " " + timeArray[1];
try {
filterResult = formatter.parse(fileStartTimeStr).after(startTime) && formatter.parse(fileEndTimeStr).before(endTime);
} catch (ParseException e) {
logger.error("过滤视频文件时异常: {}-{}", name, e.getMessage());
return false;
}
}
}
return filterResult;
});
List<File> fileList = Arrays.asList(files);
result.addAll(fileList);
}
}
if (result.size() > 0) {
result.sort((File f1, File f2) -> {
int sortResult = 0;
String[] timeArray1 = f1.getName().split("-");
String[] timeArray2 = f2.getName().split("-");
if (timeArray1.length == 3 && timeArray2.length == 3){
File dateFile1 = f1.getParentFile();
File dateFile2 = f2.getParentFile();
String fileStartTimeStr1 = dateFile1.getName() + " " + timeArray1[0];
String fileStartTimeStr2 = dateFile2.getName() + " " + timeArray2[0];
try {
sortResult = formatter.parse(fileStartTimeStr1).compareTo(formatter.parse(fileStartTimeStr2));
} catch (ParseException e) {
e.printStackTrace();
}
}
return sortResult;
});
}
return result;
}
public String mergeOrCut(String app, String stream, Date startTime, Date endTime) {
List<File> filesInTime = this.getFilesInTime(app, stream, startTime, endTime);
if (filesInTime== null || filesInTime.size() == 0){
logger.info("此时间段未未找到视频文件");
return null;
}
File recordFile = new File(new File(userSettings.getRecord()).getParentFile().getAbsolutePath() + File.separator + "recordTemp");
if (!recordFile.exists()) recordFile.mkdirs();
String taskId = DigestUtils.md5DigestAsHex(String.valueOf(System.currentTimeMillis()).getBytes());
MergeOrCutTaskInfo mergeOrCutTaskInfo = new MergeOrCutTaskInfo();
mergeOrCutTaskInfo.setId(taskId);
mergeOrCutTaskInfo.setApp(app);
mergeOrCutTaskInfo.setStream(stream);
mergeOrCutTaskInfo.setStartTime(simpleDateFormatForTime.format(startTime));
mergeOrCutTaskInfo.setEndTime(simpleDateFormatForTime.format(endTime));
Runnable task = () -> {
FFmpegExecUtils.getInstance().mergeOrCutFile(filesInTime, recordFile, taskId, (String status, double percentage, String result)->{
// 发出redis通知
if (status.equals(Progress.Status.END.name())) {
mergeOrCutTaskInfo.setPercentage("1");
mergeOrCutTaskInfo.setRecordFile(result);
stringRedisTemplate.convertAndSend("topic_mergeorcut_end", JSONObject.toJSONString(mergeOrCutTaskInfo));
}else {
mergeOrCutTaskInfo.setPercentage(percentage + "");
stringRedisTemplate.convertAndSend("topic_mergeorcut_continue", JSONObject.toJSONString(mergeOrCutTaskInfo));
}
String key = String.format("%S_%S_%S_%S", keyStr, app, stream, taskId);
redisUtil.set(key, mergeOrCutTaskInfo);
});
};
processThreadPool.execute(task);
return taskId;
}
public List<File> getDateList(String app, String stream, Integer year, Integer month) {
File recordFile = new File(userSettings.getRecord());
File streamFile = new File(recordFile.getAbsolutePath() + File.separator + app + File.separator + stream);
if (!streamFile.exists()) {
logger.warn("获取[app: {}, stream: {}]的视频时未找到目录: {}", app, stream, stream);
return null;
}
File[] dateFiles = streamFile.listFiles((File dir, String name)->{
Date date = null;
try {
date = simpleDateFormat.parse(name);
} catch (ParseException e) {
logger.error("格式化时间{}错误", name);
}
Calendar c = Calendar.getInstance();
c.setTime(date);
int y = c.get(Calendar.YEAR);
int m = c.get(Calendar.MONTH);
if (year != null) {
if (month != null) {
return y == year && m == month;
}else {
return y == year;
}
}else {
return true;
}
});
List<File> dateFileList = Arrays.asList(dateFiles);
dateFileList.sort((File f1, File f2)->{
int sortResult = 0;
try {
sortResult = simpleDateFormat.parse(f1.getName()).compareTo(simpleDateFormat.parse(f2.getName()));
} catch (ParseException e) {
logger.error("格式化时间{}/{}错误", f1.getName(), f2.getName());
}
return sortResult;
});
return dateFileList;
}
public List<MergeOrCutTaskInfo> getTaskListForDownload(boolean idEnd) {
ArrayList<MergeOrCutTaskInfo> result = new ArrayList<>();
List<Object> taskCatch = redisUtil.scan(String.format("%S_*_*_*", keyStr));
for (int i = 0; i < taskCatch.size(); i++) {
String keyItem = taskCatch.get(i).toString();
MergeOrCutTaskInfo mergeOrCutTaskInfo = (MergeOrCutTaskInfo)redisUtil.get(keyItem);
if (mergeOrCutTaskInfo != null){
if (idEnd) {
if (Double.parseDouble(mergeOrCutTaskInfo.getPercentage()) == 1){
result.add(mergeOrCutTaskInfo);
}
}else {
if (Double.parseDouble(mergeOrCutTaskInfo.getPercentage()) < 1){
result.add((MergeOrCutTaskInfo)redisUtil.get(keyItem));
}
}
}
}
result.sort((MergeOrCutTaskInfo m1, MergeOrCutTaskInfo m2)->{
int sortResult = 0;
try {
sortResult = simpleDateFormatForTime.parse(m1.getStartTime()).compareTo(simpleDateFormatForTime.parse(m2.getStartTime()));
if (sortResult == 0) {
sortResult = simpleDateFormatForTime.parse(m1.getEndTime()).compareTo(simpleDateFormatForTime.parse(m2.getEndTime()));
}
} catch (ParseException e) {
e.printStackTrace();
}
return sortResult * -1;
});
return result;
}
public boolean stopTask(String taskId) {
// Runnable task = taskList.get(taskId);
// boolean result = false;
// if (task != null) {
// processThreadPool.remove(task);
// taskList.remove(taskId);
// List<Object> taskCatch = redisUtil.scan(String.format("%S_*_*_%S", keyStr, taskId));
// if (taskCatch.size() == 1) {
// redisUtil.del((String) taskCatch.get(0));
// result = true;
// }
// }
return false;
}
}