Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
39e4f16f
Commit
39e4f16f
authored
Mar 01, 2022
by
KeYong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop_station' of
http://39.98.45.134:8090/moa/amos-boot-biz
into dev_bitmap
parents
cb98b1a8
0ddd9fdc
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
75 additions
and
37 deletions
+75
-37
StringUtil.java
...java/com/yeejoin/equipmanage/common/utils/StringUtil.java
+8
-1
MqttReceiveServiceImpl.java
...join/equipmanage/service/impl/MqttReceiveServiceImpl.java
+13
-26
VideoServiceImpl.java
...om/yeejoin/equipmanage/service/impl/VideoServiceImpl.java
+41
-8
application-dev.properties
...ystem-equip/src/main/resources/application-dev.properties
+5
-2
application-docker.properties
...em-equip/src/main/resources/application-docker.properties
+2
-0
application-jcs.properties
...ystem-equip/src/main/resources/application-jcs.properties
+2
-0
application-qa.properties
...system-equip/src/main/resources/application-qa.properties
+2
-0
application-test.properties
...stem-equip/src/main/resources/application-test.properties
+2
-0
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/utils/StringUtil.java
View file @
39e4f16f
...
@@ -4,7 +4,7 @@ import java.math.BigDecimal;
...
@@ -4,7 +4,7 @@ import java.math.BigDecimal;
import
java.util.regex.Matcher
;
import
java.util.regex.Matcher
;
import
java.util.regex.Pattern
;
import
java.util.regex.Pattern
;
import
org.springframework.util.
Assert
;
import
org.springframework.util.
ObjectUtils
;
import
com.yeejoin.equipmanage.common.vo.QRCodeRequest
;
import
com.yeejoin.equipmanage.common.vo.QRCodeRequest
;
...
@@ -95,6 +95,13 @@ public class StringUtil {
...
@@ -95,6 +95,13 @@ public class StringUtil {
}
}
return
0
;
return
0
;
}
}
public
static
String
toNotEmptyString
(
String
s
)
{
if
(
ObjectUtils
.
isEmpty
(
s
))
{
return
""
;
}
return
s
;
}
/**
/**
* 截取前后都不是0的数字字符串
* 截取前后都不是0的数字字符串
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/MqttReceiveServiceImpl.java
View file @
39e4f16f
...
@@ -36,13 +36,11 @@ import com.yeejoin.equipmanage.common.datasync.entity.FireEquipmentFireAlarm;
...
@@ -36,13 +36,11 @@ import com.yeejoin.equipmanage.common.datasync.entity.FireEquipmentFireAlarm;
import
com.yeejoin.equipmanage.common.dto.TemperatureAlarmDto
;
import
com.yeejoin.equipmanage.common.dto.TemperatureAlarmDto
;
import
com.yeejoin.equipmanage.common.entity.CarProperty
;
import
com.yeejoin.equipmanage.common.entity.CarProperty
;
import
com.yeejoin.equipmanage.common.entity.EquipmentAlarmReportDay
;
import
com.yeejoin.equipmanage.common.entity.EquipmentAlarmReportDay
;
import
com.yeejoin.equipmanage.common.entity.EquipmentDetail
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecific
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecific
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificAlarm
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificAlarm
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificAlarmLog
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificAlarmLog
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificIndex
;
import
com.yeejoin.equipmanage.common.entity.EquipmentSpecificIndex
;
import
com.yeejoin.equipmanage.common.entity.FireFightingSystemEntity
;
import
com.yeejoin.equipmanage.common.entity.FireFightingSystemEntity
;
import
com.yeejoin.equipmanage.common.entity.publics.BaseEntity
;
import
com.yeejoin.equipmanage.common.entity.vo.CarIndexVo
;
import
com.yeejoin.equipmanage.common.entity.vo.CarIndexVo
;
import
com.yeejoin.equipmanage.common.entity.vo.CarPropertyVo
;
import
com.yeejoin.equipmanage.common.entity.vo.CarPropertyVo
;
import
com.yeejoin.equipmanage.common.entity.vo.EquipmentIndexVO
;
import
com.yeejoin.equipmanage.common.entity.vo.EquipmentIndexVO
;
...
@@ -61,11 +59,9 @@ import com.yeejoin.equipmanage.common.enums.TemperatureAlarm;
...
@@ -61,11 +59,9 @@ import com.yeejoin.equipmanage.common.enums.TemperatureAlarm;
import
com.yeejoin.equipmanage.common.enums.TopicEnum
;
import
com.yeejoin.equipmanage.common.enums.TopicEnum
;
import
com.yeejoin.equipmanage.common.enums.TrueOrFalseEnum
;
import
com.yeejoin.equipmanage.common.enums.TrueOrFalseEnum
;
import
com.yeejoin.equipmanage.common.utils.DateUtils
;
import
com.yeejoin.equipmanage.common.utils.DateUtils
;
import
com.yeejoin.equipmanage.common.utils.EquipmentStateUtil
;
import
com.yeejoin.equipmanage.common.utils.StringUtil
;
import
com.yeejoin.equipmanage.common.utils.StringUtil
;
import
com.yeejoin.equipmanage.common.vo.CarIndexGisVo
;
import
com.yeejoin.equipmanage.common.vo.CarIndexGisVo
;
import
com.yeejoin.equipmanage.common.vo.EquipmentIndexLabelsVo
;
import
com.yeejoin.equipmanage.common.vo.EquipmentIndexLabelsVo
;
import
com.yeejoin.equipmanage.common.vo.EquipmentVo
;
import
com.yeejoin.equipmanage.common.vo.IotDataVO
;
import
com.yeejoin.equipmanage.common.vo.IotDataVO
;
import
com.yeejoin.equipmanage.common.vo.Token
;
import
com.yeejoin.equipmanage.common.vo.Token
;
import
com.yeejoin.equipmanage.common.vo.TopicEntityVo
;
import
com.yeejoin.equipmanage.common.vo.TopicEntityVo
;
...
@@ -168,9 +164,6 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -168,9 +164,6 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
private
IEquipmentAlarmReportDayService
iEquipmentAlarmReportDayService
;
private
IEquipmentAlarmReportDayService
iEquipmentAlarmReportDayService
;
@Autowired
@Autowired
private
IEquipmentDetailService
iEquipmentDetailService
;
@Autowired
private
IEquipmentSpecificSerivce
iEquipmentSpecificSerivce
;
private
IEquipmentSpecificSerivce
iEquipmentSpecificSerivce
;
@Autowired
@Autowired
...
@@ -180,12 +173,6 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -180,12 +173,6 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
private
SystemctlFeign
systemctlFeign
;
private
SystemctlFeign
systemctlFeign
;
@Autowired
@Autowired
private
TopographyService
topographyService
;
@Autowired
private
IEquipmentService
equipmentService
;
@Autowired
private
RemoteSecurityService
remoteSecurityService
;
private
RemoteSecurityService
remoteSecurityService
;
@Value
(
"${equipManage.name}"
)
@Value
(
"${equipManage.name}"
)
...
@@ -1254,22 +1241,22 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -1254,22 +1241,22 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
equipmentAlarmLogs
.
forEach
(
action
->{
equipmentAlarmLogs
.
forEach
(
action
->{
FireEquipmentFireAlarm
alarm
=
new
FireEquipmentFireAlarm
();
FireEquipmentFireAlarm
alarm
=
new
FireEquipmentFireAlarm
();
BeanUtils
.
copyProperties
(
action
,
alarm
);
BeanUtils
.
copyProperties
(
action
,
alarm
);
alarm
.
setAliasname
(
action
.
getEquipmentSpecificIndexName
(
));
alarm
.
setAliasname
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificIndexName
()
));
alarm
.
setEquipmentMeasurementId
(
action
.
getEquipmentIndexId
().
toString
(
));
alarm
.
setEquipmentMeasurementId
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentIndexId
().
toString
()
));
alarm
.
setEquipmentMeasurementMRid
(
action
.
getEquipmentIndexId
().
toString
(
));
alarm
.
setEquipmentMeasurementMRid
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentIndexId
().
toString
()
));
alarm
.
setFieldLabel
(
action
.
getEquipmentSpecificIndexKey
(
));
alarm
.
setFieldLabel
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificIndexKey
()
));
alarm
.
setFieldName
(
action
.
getEquipmentSpecificIndexName
(
));
alarm
.
setFieldName
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificIndexName
()
));
alarm
.
setFireEquipmentId
(
action
.
getEquipmentSpecificId
().
toString
(
));
alarm
.
setFireEquipmentId
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificId
().
toString
()
));
alarm
.
setFireEquipmentMRid
(
action
.
getEquipmentSpecificCode
(
));
alarm
.
setFireEquipmentMRid
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificCode
()
));
alarm
.
setFireEquipmentName
(
action
.
getEquipmentSpecificName
(
));
alarm
.
setFireEquipmentName
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificName
()
));
alarm
.
setFrequency
(
1
);
alarm
.
setFrequency
(
1
);
alarm
.
setId
(
action
.
getId
().
toString
(
));
alarm
.
setId
(
StringUtil
.
toNotEmptyString
(
action
.
getId
().
toString
()
));
alarm
.
setMrid
(
action
.
getId
().
toString
());
alarm
.
setMrid
(
action
.
getId
().
toString
());
alarm
.
setName
(
action
.
getEquipmentSpecificIndexName
());
alarm
.
setName
(
action
.
getEquipmentSpecificIndexName
());
alarm
.
setRecoveryDate
(
action
.
getUpdateDate
());
alarm
.
setRecoveryDate
(
action
.
getUpdateDate
());
alarm
.
setStationCode
(
ObjectUtils
.
isEmpty
(
stationInfo
)?
""
:
stationInfo
.
get
(
"stationCode"
));
alarm
.
setStationCode
(
StringUtil
.
toNotEmptyString
(
stationInfo
.
get
(
"stationCode"
)
));
alarm
.
setStationName
(
ObjectUtils
.
isEmpty
(
stationInfo
)?
""
:
stationInfo
.
get
(
"stationName"
));
alarm
.
setStationName
(
StringUtil
.
toNotEmptyString
(
stationInfo
.
get
(
"stationName"
)
));
alarm
.
setValue
(
action
.
getEquipmentSpecificIndexValue
(
));
alarm
.
setValue
(
StringUtil
.
toNotEmptyString
(
action
.
getEquipmentSpecificIndexValue
()
));
alarmList
.
add
(
alarm
);
alarmList
.
add
(
alarm
);
});
});
return
alarmList
;
return
alarmList
;
...
@@ -1538,7 +1525,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -1538,7 +1525,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
time
.
setValue
(
String
.
valueOf
(
new
Date
().
getTime
()));
time
.
setValue
(
String
.
valueOf
(
new
Date
().
getTime
()));
list
.
add
(
time
);
list
.
add
(
time
);
return
list
;
return
list
;
}
}
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/VideoServiceImpl.java
View file @
39e4f16f
...
@@ -113,6 +113,10 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
...
@@ -113,6 +113,10 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
@Value
(
"${param.nrvideo.url}"
)
@Value
(
"${param.nrvideo.url}"
)
private
String
nrvideoUrl
;
private
String
nrvideoUrl
;
@Value
(
"${param.nrflvbyvoideoid.url}"
)
private
String
nrflvByVoideoidUrl
;
@Value
(
"${dcs.client-id}"
)
@Value
(
"${dcs.client-id}"
)
private
String
clientId
;
private
String
clientId
;
...
@@ -520,12 +524,12 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
...
@@ -520,12 +524,12 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
@Override
@Override
public
String
getVideoUrl
(
String
video
Id
,
String
presetIndex
,
String
defaultUrl
,
String
code
)
{
public
String
getVideoUrl
(
String
video
Name
,
String
presetIndex
,
String
defaultUrl
,
String
code
)
{
String
url
=
""
;
String
url
=
""
;
if
(
"hls"
.
equals
(
vedioFormat
))
{
if
(
"hls"
.
equals
(
vedioFormat
))
{
url
=
getVideoUrl
(
code
);
url
=
getVideoUrl
(
code
);
}
else
{
}
else
{
url
=
getFlvUrlByVideoId
OrPresetIndex
(
videoId
,
presetIndex
);
url
=
getFlvUrlByVideoId
(
code
);
}
}
return
ObjectUtils
.
isEmpty
(
url
)
?
defaultUrl
:
url
;
return
ObjectUtils
.
isEmpty
(
url
)
?
defaultUrl
:
url
;
}
}
...
@@ -542,6 +546,35 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
...
@@ -542,6 +546,35 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
}
}
return
url
;
return
url
;
}
}
public
String
getFlvUrlByVideoId
(
String
videoId
)
{
try
{
Map
<
String
,
Object
>
request
=
new
HashMap
<
String
,
Object
>();
request
.
put
(
"cameraId"
,
videoId
);
request
.
put
(
"clientType"
,
1
);
request
.
put
(
"streamType"
,
1
);
request
.
put
(
"templetId "
,
"000004"
);
request
.
put
(
"urlType"
,
4
);
JSONObject
json
=
new
JSONObject
(
request
);
log
.
info
(
"request:{}"
,
JSONObject
.
toJSONString
(
request
));
log
.
info
(
"nrvideoUrl=={}"
,
nrflvByVoideoidUrl
);
String
content
=
HttpContentTypeUtil
.
sendHttpPostJson
(
nrflvByVoideoidUrl
,
json
.
toJSONString
());
if
(
ObjectUtils
.
isEmpty
(
content
))
{
log
.
error
(
"getFlvUrlByVideoId=flv视频流接口获取失败,参数:{}"
+
JSONObject
.
toJSONString
(
request
));
}
Map
<
String
,
Object
>
respond
=
JSONObject
.
parseObject
(
content
,
Map
.
class
);
log
.
error
(
"getFlvUrlByVideoId=flv视频流接口返回respond:{}"
+
JSONObject
.
toJSONString
(
respond
));
if
(
"SUCCESS"
.
equals
(
respond
.
get
(
"resultDesc"
))
&&
respond
.
containsKey
(
"url"
))
{
return
respond
.
get
(
"url"
).
toString
();
}
return
""
;
}
catch
(
Exception
e
)
{
log
.
error
(
"getFlvUrlByVideoId=flv视频流接口获取失败:{}"
,
e
.
getMessage
());
}
return
""
;
}
public
String
getFlvUrlByVideoIdOrPresetIndex
(
String
videoId
,
String
presetIndex
)
{
public
String
getFlvUrlByVideoIdOrPresetIndex
(
String
videoId
,
String
presetIndex
)
{
try
{
try
{
...
@@ -555,21 +588,21 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
...
@@ -555,21 +588,21 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
request
.
put
(
"messageType"
,
"/video-service/transcode/getCameraPlaybackFlv/call"
);
request
.
put
(
"messageType"
,
"/video-service/transcode/getCameraPlaybackFlv/call"
);
request
.
put
(
"cameraId"
,
videoId
);
request
.
put
(
"cameraId"
,
videoId
);
request
.
put
(
"rtsp "
,
rtsp
);
request
.
put
(
"rtsp "
,
rtsp
);
String
content
=
HttpContentTypeUtil
.
sendHttpGetWithHeader
(
nrvideoUrl
,
request
);
log
.
info
(
"request:{}"
,
JSONObject
.
toJSONString
(
request
));
log
.
info
(
"request:{}"
,
JSONObject
.
toJSONString
(
request
));
log
.
info
(
"nrvideoUrl=={}"
,
nrvideoUrl
);
log
.
info
(
"nrvideoUrl=={}"
,
nrvideoUrl
);
String
content
=
HttpContentTypeUtil
.
sendHttpGetWithHeader
(
nrvideoUrl
,
request
);
if
(
ObjectUtils
.
isEmpty
(
content
))
{
if
(
ObjectUtils
.
isEmpty
(
content
))
{
log
.
error
(
"flv视频流接口获取失败,参数:{}"
+
JSONObject
.
toJSONString
(
request
));
log
.
error
(
"
getFlvUrlByVideoIdOrPresetIndex==
flv视频流接口获取失败,参数:{}"
+
JSONObject
.
toJSONString
(
request
));
}
}
Map
<
String
,
String
>
respond
=
JSONObject
.
parseObject
(
content
,
Map
.
class
);
Map
<
String
,
String
>
respond
=
JSONObject
.
parseObject
(
content
,
Map
.
class
);
log
.
error
(
"flv视频流接口返回respond:{}"
+
JSONObject
.
toJSONString
(
respond
));
log
.
error
(
"
getFlvUrlByVideoIdOrPresetIndex==
flv视频流接口返回respond:{}"
+
JSONObject
.
toJSONString
(
respond
));
if
(
respond
.
containsKey
(
"url"
))
{
if
(
respond
.
containsKey
(
"url"
))
{
return
respond
.
get
(
"url"
);
return
respond
.
get
(
"url"
);
}
}
return
""
;
return
""
;
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"flv视频流接口获取失败:{}"
,
e
.
getMessage
());
log
.
error
(
"
getFlvUrlByVideoIdOrPresetIndex==
flv视频流接口获取失败:{}"
,
e
.
getMessage
());
}
}
return
""
;
return
""
;
}
}
...
@@ -581,11 +614,11 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
...
@@ -581,11 +614,11 @@ public class VideoServiceImpl extends ServiceImpl<VideoMapper, Video> implements
videoRequest
.
put
(
"messageType"
,
"getCameraRTSP"
);
videoRequest
.
put
(
"messageType"
,
"getCameraRTSP"
);
videoRequest
.
put
(
"cameraId"
,
videoId
);
videoRequest
.
put
(
"cameraId"
,
videoId
);
videoRequest
.
put
(
"presetIndex"
,
ObjectUtils
.
isEmpty
(
presetIndex
)
?
"1"
:
presetIndex
);
videoRequest
.
put
(
"presetIndex"
,
ObjectUtils
.
isEmpty
(
presetIndex
)
?
"1"
:
presetIndex
);
String
content
=
HttpContentTypeUtil
.
sendHttpGetWithHeader
(
htvideoUrl
,
videoRequest
);
log
.
info
(
"videoRequest:{}"
,
JSONObject
.
toJSONString
(
videoRequest
));
log
.
info
(
"videoRequest:{}"
,
JSONObject
.
toJSONString
(
videoRequest
));
log
.
info
(
"htvideoUrl=={}"
,
htvideoUrl
);
log
.
info
(
"htvideoUrl=={}"
,
htvideoUrl
);
String
content
=
HttpContentTypeUtil
.
sendHttpGetWithHeader
(
htvideoUrl
,
videoRequest
);
if
(
ObjectUtils
.
isEmpty
(
content
))
{
if
(
ObjectUtils
.
isEmpty
(
content
))
{
log
.
error
(
"接口获取失败,参数={}"
,
JSONObject
.
toJSONString
(
videoRequest
));
log
.
error
(
"
getRtspUrlByVideoIdOrPresetIndex==
接口获取失败,参数={}"
,
JSONObject
.
toJSONString
(
videoRequest
));
}
}
Map
<
String
,
String
>
respond
=
JSONObject
.
parseObject
(
content
,
Map
.
class
);
Map
<
String
,
String
>
respond
=
JSONObject
.
parseObject
(
content
,
Map
.
class
);
...
...
amos-boot-system-equip/src/main/resources/application-dev.properties
View file @
39e4f16f
...
@@ -66,7 +66,10 @@ param.system.online.date = 2019-02-12
...
@@ -66,7 +66,10 @@ param.system.online.date = 2019-02-12
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站使用时开启
# 视频转码服务开关 hls(关)/flv(开),默认关闭,数字换流站使用时开启
window.vedioFormat
=
hls
window.vedioFormat
=
hls
# 航天视频服务地址
# 航天视频服务地址
param.htvideo.url
=
"http://192.168.4.174:9001"
;
param.htvideo.url
=
http://192.168.4.174:9001
;
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
"http://198.87.103.158:8001";
param.nrvideo.url
=
http://198.87.103.158:8001;
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
amos-boot-system-equip/src/main/resources/application-docker.properties
View file @
39e4f16f
...
@@ -69,3 +69,5 @@ window.vedioFormat = hls
...
@@ -69,3 +69,5 @@ window.vedioFormat = hls
param.htvideo.url
=
"";
param.htvideo.url
=
"";
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
"";
param.nrvideo.url
=
"";
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
amos-boot-system-equip/src/main/resources/application-jcs.properties
View file @
39e4f16f
...
@@ -76,3 +76,5 @@ window.vedioFormat = hls
...
@@ -76,3 +76,5 @@ window.vedioFormat = hls
param.htvideo.url
=
"";
param.htvideo.url
=
"";
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
"";
param.nrvideo.url
=
"";
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
amos-boot-system-equip/src/main/resources/application-qa.properties
View file @
39e4f16f
...
@@ -68,3 +68,5 @@ window.vedioFormat = hls
...
@@ -68,3 +68,5 @@ window.vedioFormat = hls
param.htvideo.url
=
"";
param.htvideo.url
=
"";
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
"";
param.nrvideo.url
=
"";
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
amos-boot-system-equip/src/main/resources/application-test.properties
View file @
39e4f16f
...
@@ -61,3 +61,5 @@ window.vedioFormat = hls
...
@@ -61,3 +61,5 @@ window.vedioFormat = hls
param.htvideo.url
=
"";
param.htvideo.url
=
"";
# 南瑞视频转码服务地址
# 南瑞视频转码服务地址
param.nrvideo.url
=
"";
param.nrvideo.url
=
"";
#南瑞视频平台通过视频id获取flv格式视频播放地址
param.nrflvbyvoideoid.url
=
http://192.168.4.159:10010/api/media/live
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment