|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.usky.common.core.bean.CommonPage;
|
|
|
+import com.usky.common.core.exception.BusinessException;
|
|
|
import com.usky.common.security.utils.SecurityUtils;
|
|
|
import com.usky.iot.domain.BaseFacilityDevice;
|
|
|
import com.usky.iot.domain.BaseGgpFacility;
|
|
@@ -13,9 +14,15 @@ import com.usky.iot.domain.VcDevice;
|
|
|
import com.usky.iot.mapper.VcDeviceMapper;
|
|
|
import com.usky.iot.service.VcDeviceService;
|
|
|
import com.usky.common.mybatis.core.AbstractCrudService;
|
|
|
+import com.usky.iot.service.config.VcVideo;
|
|
|
import com.usky.iot.service.vo.BaseFacilityDeviceVO;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.io.BufferedReader;
|
|
|
+import java.io.IOException;
|
|
|
+import java.io.InputStreamReader;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -29,6 +36,13 @@ import java.util.List;
|
|
|
*/
|
|
|
@Service
|
|
|
public class VcDeviceServiceImpl extends AbstractCrudService<VcDeviceMapper, VcDevice> implements VcDeviceService {
|
|
|
+
|
|
|
+ @Value("${vc.rtmp-ip}")
|
|
|
+ private String rtmpIp;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private VcVideo vcVideo;
|
|
|
+
|
|
|
@Override
|
|
|
public List<VcDevice> VcDeviceList(Integer groupId){
|
|
|
LambdaQueryWrapper<VcDevice> queryWrapper = Wrappers.lambdaQuery();
|
|
@@ -51,6 +65,28 @@ public class VcDeviceServiceImpl extends AbstractCrudService<VcDeviceMapper, VcD
|
|
|
return new CommonPage<>(page.getRecords(),page.getTotal(),page.getCurrent(),page.getSize());
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public String getVcDeviceVideo(String deviceUuid){
|
|
|
+ LambdaQueryWrapper<VcDevice> lambdaQuery = Wrappers.lambdaQuery();
|
|
|
+ lambdaQuery.like(StringUtils.isNotBlank(deviceUuid),VcDevice::getVideoNumber,deviceUuid)
|
|
|
+ .eq(VcDevice::getDelFlag,0);
|
|
|
+ VcDevice one = this.getOne(lambdaQuery);
|
|
|
+ if(one==null){
|
|
|
+ throw new BusinessException("未查询到设备信息");
|
|
|
+ }
|
|
|
+ String accountNumber = one.getAccountNumber();
|
|
|
+ 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 -f flv -r 30 -s 1920x1080 -q 10 -f flv rtmp://"+rtmpIp+":1935/hls/"+deviceUuid;
|
|
|
+ System.out.println(command);
|
|
|
+ vcVideo.processVcVideo(command);
|
|
|
+
|
|
|
+ String repDeviceVideo = rtmpIp+":80/hls/"+deviceUuid+".m3u8";
|
|
|
+
|
|
|
+ return repDeviceVideo;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public boolean add(VcDevice vcDevice){
|
|
|
vcDevice.setCreateBy(SecurityUtils.getUsername());
|