|
@@ -75,7 +75,7 @@ public class VcDeviceServiceImpl extends AbstractCrudService<VcDeviceMapper, VcD
|
|
|
String videoPassword = one.getVideoPassword();
|
|
|
String videoIp = one.getVideoIp();
|
|
|
String videoPort = one.getVideoPort().toString();
|
|
|
- String command = "ffmpeg -i rtsp://"+accountNumber+":"+videoPassword+"@"+videoIp+":"+videoPort+" -vcodec copy -acodec aac -ar 44100 -c:v libx264 -strict -2 -ac 1 -r 30 -s 640x480 -q 10 -f flv -hls_time 1 -hls_list_size 6 rtmp://"+rtmpIp+":1935/hls/"+deviceUuid;
|
|
|
+ String command = "ffmpeg -i rtsp://"+accountNumber+":"+videoPassword+"@"+videoIp+":"+videoPort+" -vcodec copy -acodec aac -ar 44100 -c:v libx264 -preset ultrafast -tune zerolatency -strict -2 -ac 1 -r 30 -s 1280x720 -q 10 -f flv -hls_time 10 -hls_list_size 0 rtmp://"+rtmpIp+":1935/hls/"+deviceUuid;
|
|
|
System.out.println(command);
|
|
|
|
|
|
try {
|
|
@@ -95,13 +95,12 @@ public class VcDeviceServiceImpl extends AbstractCrudService<VcDeviceMapper, VcD
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}).start();
|
|
|
- Thread.sleep(2000);
|
|
|
|
|
|
String repDeviceVideo = rtmpIp+":80/hls/"+deviceUuid+".m3u8";
|
|
|
return repDeviceVideo;
|
|
|
|
|
|
|
|
|
- } catch (IOException | InterruptedException e) {
|
|
|
+ } catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
|
return null;
|
|
|
}
|