mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-24 22:17:49 +08:00
通用通道支持停止实时流
This commit is contained in:
parent
3f6264cad9
commit
c75122008c
@ -150,6 +150,9 @@ public class CommonGBChannel {
|
|||||||
@Schema(description = "更新时间")
|
@Schema(description = "更新时间")
|
||||||
private String updateTime;
|
private String updateTime;
|
||||||
|
|
||||||
|
@Schema(description = "流唯一编号,存在表示正在直播")
|
||||||
|
private String streamId;
|
||||||
|
|
||||||
public String encode(String serverDeviceId) {
|
public String encode(String serverDeviceId) {
|
||||||
return encode(null, serverDeviceId);
|
return encode(null, serverDeviceId);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -179,9 +179,6 @@ public class DeviceChannel extends CommonGBChannel {
|
|||||||
@Schema(description = "子设备数")
|
@Schema(description = "子设备数")
|
||||||
private int subCount;
|
private int subCount;
|
||||||
|
|
||||||
@Schema(description = "流唯一编号,存在表示正在直播")
|
|
||||||
private String streamId;
|
|
||||||
|
|
||||||
@Schema(description = "是否含有音频")
|
@Schema(description = "是否含有音频")
|
||||||
private boolean hasAudio;
|
private boolean hasAudio;
|
||||||
|
|
||||||
|
|||||||
@ -276,7 +276,7 @@ public class ChannelController {
|
|||||||
|
|
||||||
@Operation(summary = "播放通道", security = @SecurityRequirement(name = JwtUtils.HEADER))
|
@Operation(summary = "播放通道", security = @SecurityRequirement(name = JwtUtils.HEADER))
|
||||||
@GetMapping("/play")
|
@GetMapping("/play")
|
||||||
public DeferredResult<WVPResult<StreamContent>> deleteChannelToGroupByGbDevice(HttpServletRequest request, Integer channelId){
|
public DeferredResult<WVPResult<StreamContent>> play(HttpServletRequest request, Integer channelId){
|
||||||
Assert.notNull(channelId,"参数异常");
|
Assert.notNull(channelId,"参数异常");
|
||||||
CommonGBChannel channel = channelService.getOne(channelId);
|
CommonGBChannel channel = channelService.getOne(channelId);
|
||||||
Assert.notNull(channel, "通道不存在");
|
Assert.notNull(channel, "通道不存在");
|
||||||
@ -316,4 +316,13 @@ public class ChannelController {
|
|||||||
channelPlayService.play(channel, null, userSetting.getRecordSip(), callback);
|
channelPlayService.play(channel, null, userSetting.getRecordSip(), callback);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Operation(summary = "停止播放通道", security = @SecurityRequirement(name = JwtUtils.HEADER))
|
||||||
|
@GetMapping("/play/stop")
|
||||||
|
public void stopPlay(Integer channelId){
|
||||||
|
Assert.notNull(channelId,"参数异常");
|
||||||
|
CommonGBChannel channel = channelService.getOne(channelId);
|
||||||
|
Assert.notNull(channel, "通道不存在");
|
||||||
|
channelPlayService.stopPlay(channel, channel.getStreamId());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -580,4 +580,7 @@ public interface CommonGBChannelMapper {
|
|||||||
|
|
||||||
@SelectProvider(type = ChannelProvider.class, method = "queryOnlineListsByGbDeviceId")
|
@SelectProvider(type = ChannelProvider.class, method = "queryOnlineListsByGbDeviceId")
|
||||||
List<CommonGBChannel> queryOnlineListsByGbDeviceId(@Param("deviceId") int deviceId);
|
List<CommonGBChannel> queryOnlineListsByGbDeviceId(@Param("deviceId") int deviceId);
|
||||||
|
|
||||||
|
@Update("UPDATE wvp_device_channel SET stream_id = #{stream} where id = #{gbId}")
|
||||||
|
void updateStream(int gbId, String stream);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,6 +16,7 @@ public class ChannelProvider {
|
|||||||
" data_device_id,\n" +
|
" data_device_id,\n" +
|
||||||
" create_time,\n" +
|
" create_time,\n" +
|
||||||
" update_time,\n" +
|
" update_time,\n" +
|
||||||
|
" stream_id,\n" +
|
||||||
" record_plan_id,\n" +
|
" record_plan_id,\n" +
|
||||||
" coalesce(gb_device_id, device_id) as gb_device_id,\n" +
|
" coalesce(gb_device_id, device_id) as gb_device_id,\n" +
|
||||||
" coalesce(gb_name, name) as gb_name,\n" +
|
" coalesce(gb_name, name) as gb_name,\n" +
|
||||||
@ -60,6 +61,7 @@ public class ChannelProvider {
|
|||||||
" wdc.data_device_id,\n" +
|
" wdc.data_device_id,\n" +
|
||||||
" wdc.create_time,\n" +
|
" wdc.create_time,\n" +
|
||||||
" wdc.update_time,\n" +
|
" wdc.update_time,\n" +
|
||||||
|
" wdc.stream_id,\n" +
|
||||||
" wdc.record_plan_id,\n" +
|
" wdc.record_plan_id,\n" +
|
||||||
" coalesce(wdc.gb_device_id, wdc.device_id) as gb_device_id,\n" +
|
" coalesce(wdc.gb_device_id, wdc.device_id) as gb_device_id,\n" +
|
||||||
" coalesce(wdc.gb_name, wdc.name) as gb_name,\n" +
|
" coalesce(wdc.gb_name, wdc.name) as gb_name,\n" +
|
||||||
|
|||||||
@ -8,8 +8,10 @@ import com.genersoft.iot.vmp.gb28181.bean.CommonGBChannel;
|
|||||||
import com.genersoft.iot.vmp.gb28181.bean.InviteMessageInfo;
|
import com.genersoft.iot.vmp.gb28181.bean.InviteMessageInfo;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.Platform;
|
import com.genersoft.iot.vmp.gb28181.bean.Platform;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.PlayException;
|
import com.genersoft.iot.vmp.gb28181.bean.PlayException;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.dao.CommonGBChannelMapper;
|
||||||
import com.genersoft.iot.vmp.gb28181.service.*;
|
import com.genersoft.iot.vmp.gb28181.service.*;
|
||||||
import com.genersoft.iot.vmp.service.bean.ErrorCallback;
|
import com.genersoft.iot.vmp.service.bean.ErrorCallback;
|
||||||
|
import com.genersoft.iot.vmp.service.bean.InviteErrorCode;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
@ -24,6 +26,9 @@ public class GbChannelPlayServiceImpl implements IGbChannelPlayService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private UserSetting userSetting;
|
private UserSetting userSetting;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private CommonGBChannelMapper channelMapper;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private Map<String, ISourcePlayService> sourcePlayServiceMap;
|
private Map<String, ISourcePlayService> sourcePlayServiceMap;
|
||||||
|
|
||||||
@ -86,7 +91,15 @@ public class GbChannelPlayServiceImpl implements IGbChannelPlayService {
|
|||||||
log.error("[点播通用通道] 类型编号: {} 不支持实时流预览", dataType);
|
log.error("[点播通用通道] 类型编号: {} 不支持实时流预览", dataType);
|
||||||
throw new PlayException(Response.BUSY_HERE, "channel not support");
|
throw new PlayException(Response.BUSY_HERE, "channel not support");
|
||||||
}
|
}
|
||||||
sourceChannelPlayService.play(channel, platform, record, callback);
|
sourceChannelPlayService.play(channel, platform, record, (code, msg, data) -> {
|
||||||
|
if (code == InviteErrorCode.SUCCESS.getCode()) {
|
||||||
|
// 将流ID记录到数据库
|
||||||
|
if (channel.getDataType() != ChannelDataType.GB28181) {
|
||||||
|
channelMapper.updateStream(channel.getGbId(), data.getStream());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
callback.run(code, msg, data);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public void playback(CommonGBChannel channel, Long startTime, Long stopTime, ErrorCallback<StreamInfo> callback) {
|
public void playback(CommonGBChannel channel, Long startTime, Long stopTime, ErrorCallback<StreamInfo> callback) {
|
||||||
|
|||||||
@ -260,6 +260,15 @@ export function playChannel(channelId) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
export function stopPlayChannel(channelId) {
|
||||||
|
return request({
|
||||||
|
method: 'get',
|
||||||
|
url: '/api/common/channel/play/stop',
|
||||||
|
params: {
|
||||||
|
channelId: channelId
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// 前端控制
|
// 前端控制
|
||||||
|
|||||||
@ -70,12 +70,19 @@ export const constantRoutes = [
|
|||||||
path: '/channel',
|
path: '/channel',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
redirect: '/channel',
|
redirect: '/channel',
|
||||||
|
onlyIndex: 0,
|
||||||
children: [{
|
children: [{
|
||||||
path: '',
|
path: '/channel',
|
||||||
name: 'Channel',
|
name: 'Channel',
|
||||||
component: () => import('@/views/channel/index'),
|
component: () => import('@/views/channel/index'),
|
||||||
meta: {title: '通道列表', icon: 'channelManger'}
|
meta: {title: '通道列表', icon: 'channelManger'}
|
||||||
}]
|
},
|
||||||
|
{
|
||||||
|
path: '/channel/record/:channelId',
|
||||||
|
name: 'CommonRecord',
|
||||||
|
component: () => import('@/views/channel/record')
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/device',
|
path: '/device',
|
||||||
|
|||||||
@ -30,7 +30,7 @@ import {
|
|||||||
startCruise,
|
startCruise,
|
||||||
startScan,
|
startScan,
|
||||||
stopCruise,
|
stopCruise,
|
||||||
stopScan, wiper, getAllForMap
|
stopScan, wiper, getAllForMap, stopPlayChannel
|
||||||
} from '@/api/commonChannel'
|
} from '@/api/commonChannel'
|
||||||
|
|
||||||
const actions = {
|
const actions = {
|
||||||
@ -254,6 +254,16 @@ const actions = {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
stopPlayChannel({ commit }, channelId) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
stopPlayChannel(channelId).then(response => {
|
||||||
|
const { data } = response
|
||||||
|
resolve(data)
|
||||||
|
}).catch(error => {
|
||||||
|
reject(error)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
getList({ commit }, param) {
|
getList({ commit }, param) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
getList(param).then(response => {
|
getList(param).then(response => {
|
||||||
|
|||||||
@ -92,7 +92,6 @@
|
|||||||
<el-button
|
<el-button
|
||||||
v-if="!!scope.row.streamId"
|
v-if="!!scope.row.streamId"
|
||||||
size="medium"
|
size="medium"
|
||||||
:disabled="device == null || device.online === 0"
|
|
||||||
icon="el-icon-switch-button"
|
icon="el-icon-switch-button"
|
||||||
type="text"
|
type="text"
|
||||||
style="color: #f56c6c"
|
style="color: #f56c6c"
|
||||||
@ -109,6 +108,19 @@
|
|||||||
>
|
>
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
|
<el-divider direction="vertical" />
|
||||||
|
<el-dropdown @command="(command)=>{moreClick(command, scope.row)}">
|
||||||
|
<el-button size="medium" type="text">
|
||||||
|
更多<i class="el-icon-arrow-down el-icon--right" />
|
||||||
|
</el-button>
|
||||||
|
<el-dropdown-menu>
|
||||||
|
<el-dropdown-item command="records" :disabled="scope.row.gbStatus !== 'ON'">
|
||||||
|
设备录像</el-dropdown-item>
|
||||||
|
<el-dropdown-item command="cloudRecords" :disabled="scope.row.gbStatus !== 'ON'">
|
||||||
|
云端录像</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
|
||||||
|
</el-dropdown>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@ -184,14 +196,14 @@ export default {
|
|||||||
updateLooper: 0, // 数据刷新轮训标志
|
updateLooper: 0, // 数据刷新轮训标志
|
||||||
searchStr: '',
|
searchStr: '',
|
||||||
channelType: '',
|
channelType: '',
|
||||||
online: '',
|
online: 'true',
|
||||||
subStream: '',
|
subStream: '',
|
||||||
winHeight: window.innerHeight - 200,
|
winHeight: window.innerHeight - 200,
|
||||||
currentPage: this.defaultPage | 1,
|
currentPage: this.defaultPage | 1,
|
||||||
count: this.defaultCount | 15,
|
count: this.defaultCount | 15,
|
||||||
total: 0,
|
total: 0,
|
||||||
beforeUrl: '/device',
|
beforeUrl: '/device',
|
||||||
editId: null,
|
editId: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -256,10 +268,8 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
queryRecords: function(itemData) {
|
queryRecords: function(itemData) {
|
||||||
const deviceId = this.deviceId
|
|
||||||
const channelId = itemData.deviceId
|
const channelId = itemData.deviceId
|
||||||
|
this.$router.push(`/channel/record/${channelId}`)
|
||||||
this.$router.push(`/device/record/${deviceId}/${channelId}`)
|
|
||||||
},
|
},
|
||||||
queryCloudRecords: function(itemData) {
|
queryCloudRecords: function(itemData) {
|
||||||
const deviceId = this.deviceId
|
const deviceId = this.deviceId
|
||||||
@ -267,42 +277,8 @@ export default {
|
|||||||
|
|
||||||
this.$router.push(`/cloudRecord/detail/rtp/${deviceId}_${channelId}`)
|
this.$router.push(`/cloudRecord/detail/rtp/${deviceId}_${channelId}`)
|
||||||
},
|
},
|
||||||
startRecord: function(itemData) {
|
|
||||||
this.$store.dispatch('device/deviceRecord', {
|
|
||||||
deviceId: this.deviceId,
|
|
||||||
channelId: itemData.deviceId,
|
|
||||||
recordCmdStr: 'Record'
|
|
||||||
}).then(data => {
|
|
||||||
this.$message.success({
|
|
||||||
showClose: true,
|
|
||||||
message: '开始录像成功'
|
|
||||||
})
|
|
||||||
}).catch((error) => {
|
|
||||||
this.$message.error({
|
|
||||||
showClose: true,
|
|
||||||
message: error.message
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
stopRecord: function(itemData) {
|
|
||||||
this.$store.dispatch('device/deviceRecord', {
|
|
||||||
deviceId: this.deviceId,
|
|
||||||
channelId: itemData.deviceId,
|
|
||||||
recordCmdStr: 'StopRecord'
|
|
||||||
}).then(data => {
|
|
||||||
this.$message.success({
|
|
||||||
showClose: true,
|
|
||||||
message: '停止录像成功'
|
|
||||||
})
|
|
||||||
}).catch((error) => {
|
|
||||||
this.$message.error({
|
|
||||||
showClose: true,
|
|
||||||
message: error.message
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
stopDevicePush: function(itemData) {
|
stopDevicePush: function(itemData) {
|
||||||
this.$store.dispatch('play/stop', [itemData.deviceId]).then(data => {
|
this.$store.dispatch('commonChanel/stopPlayChannel', itemData.gbId).then(data => {
|
||||||
this.initData()
|
this.initData()
|
||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
if (error.response.status === 402) { // 已经停止过
|
if (error.response.status === 402) { // 已经停止过
|
||||||
@ -333,93 +309,11 @@ export default {
|
|||||||
}, 1000)
|
}, 1000)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
showDevice: function() {
|
|
||||||
// this.$router.push(this.beforeUrl).then(() => {
|
|
||||||
// this.initParam()
|
|
||||||
// this.initData()
|
|
||||||
// })
|
|
||||||
this.$emit('show-device')
|
|
||||||
},
|
|
||||||
changeSubchannel(itemData) {
|
|
||||||
this.beforeUrl = this.$router.currentRoute.path
|
|
||||||
|
|
||||||
var url = `/${this.$router.currentRoute.name}/${this.$router.currentRoute.params.deviceId}/${itemData.deviceId}`
|
|
||||||
this.$router.push(url).then(() => {
|
|
||||||
this.searchStr = ''
|
|
||||||
this.channelType = ''
|
|
||||||
this.online = ''
|
|
||||||
this.initParam()
|
|
||||||
this.initData()
|
|
||||||
})
|
|
||||||
},
|
|
||||||
showSubChannels: function() {
|
|
||||||
this.$store.dispatch('device/querySubChannels', [
|
|
||||||
{
|
|
||||||
page: this.currentPage,
|
|
||||||
count: this.count,
|
|
||||||
query: this.searchStr,
|
|
||||||
online: this.online,
|
|
||||||
channelType: this.channelType
|
|
||||||
},
|
|
||||||
this.deviceId,
|
|
||||||
this.parentChannelId
|
|
||||||
])
|
|
||||||
.then(data => {
|
|
||||||
this.total = data.total
|
|
||||||
this.channelList = data.list
|
|
||||||
this.channelList.forEach(e => {
|
|
||||||
e.ptzType = e.ptzType + ''
|
|
||||||
})
|
|
||||||
// 防止出现表格错位
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.channelListTable.doLayout()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
search: function() {
|
search: function() {
|
||||||
this.currentPage = 1
|
this.currentPage = 1
|
||||||
this.total = 0
|
this.total = 0
|
||||||
this.initData()
|
this.initData()
|
||||||
},
|
},
|
||||||
updateChannel: function(row) {
|
|
||||||
this.$store.dispatch('device/changeChannelAudio', {
|
|
||||||
channelId: row.gbId,
|
|
||||||
audio: row.hasAudio
|
|
||||||
})
|
|
||||||
},
|
|
||||||
subStreamChange: function() {
|
|
||||||
this.$confirm('确定重置所有通道的码流类型?', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning'
|
|
||||||
}).then(() => {
|
|
||||||
this.$store.dispatch('device/updateChannelStreamIdentification', {
|
|
||||||
deviceDbId: this.device.id,
|
|
||||||
streamIdentification: this.subStream
|
|
||||||
})
|
|
||||||
.then(data => {
|
|
||||||
this.initData()
|
|
||||||
})
|
|
||||||
.finally(() => {
|
|
||||||
this.subStream = ''
|
|
||||||
})
|
|
||||||
}).catch(() => {
|
|
||||||
this.subStream = ''
|
|
||||||
})
|
|
||||||
},
|
|
||||||
channelSubStreamChange: function(row) {
|
|
||||||
this.$store.dispatch('device/updateChannelStreamIdentification', {
|
|
||||||
deviceDbId: row.deviceDbId,
|
|
||||||
id: row.id,
|
|
||||||
streamIdentification: row.streamIdentification
|
|
||||||
})
|
|
||||||
.then(data => {
|
|
||||||
this.initData()
|
|
||||||
})
|
|
||||||
.finally(() => {
|
|
||||||
this.subStream = ''
|
|
||||||
})
|
|
||||||
},
|
|
||||||
refresh: function() {
|
refresh: function() {
|
||||||
this.initData()
|
this.initData()
|
||||||
},
|
},
|
||||||
@ -432,8 +326,14 @@ export default {
|
|||||||
closeEdit: function() {
|
closeEdit: function() {
|
||||||
this.editId = null
|
this.editId = null
|
||||||
this.getChannelList()
|
this.getChannelList()
|
||||||
|
},
|
||||||
|
moreClick: function(command, itemData) {
|
||||||
|
if (command === 'records') {
|
||||||
|
this.queryRecords(itemData)
|
||||||
|
} else if (command === 'cloudRecords') {
|
||||||
|
this.queryCloudRecords(itemData)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
624
web/src/views/channel/record.vue
Executable file
624
web/src/views/channel/record.vue
Executable file
@ -0,0 +1,624 @@
|
|||||||
|
<template>
|
||||||
|
<div id="DeviceRecord" class="app-container">
|
||||||
|
<div :style="boxStyle">
|
||||||
|
<div>
|
||||||
|
<div v-if="this.$route.query.mediaServerId" class="page-header-btn" style="padding-right: 1rem">
|
||||||
|
<b>节点:</b> {{ mediaServerId }}
|
||||||
|
</div>
|
||||||
|
<div v-if="this.$route.params.mediaServerId">
|
||||||
|
<span>流媒体:{{ this.$route.params.mediaServerId }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="record-list-box-box">
|
||||||
|
<div v-if="showSidebar">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="chooseDate"
|
||||||
|
size="mini"
|
||||||
|
:picker-options="pickerOptions"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="日期"
|
||||||
|
style="width: 190px"
|
||||||
|
@change="dateChange()"
|
||||||
|
/>
|
||||||
|
<!-- <el-button :disabled="!mediaServerId" size="mini" type="primary" icon="fa fa-cloud-download" style="margin: auto; margin-left: 12px " title="裁剪合并" @click="drawerOpen"></el-button>-->
|
||||||
|
</div>
|
||||||
|
<div class="record-list-box" style="height: calc(100vh - 170px); overflow: auto">
|
||||||
|
<ul v-if="detailFiles.length >0" class="infinite-list record-list">
|
||||||
|
<li v-for="(item,index) in detailFiles" :key="index" class="infinite-list-item record-list-item">
|
||||||
|
<el-tag
|
||||||
|
v-if="chooseFileIndex !== index"
|
||||||
|
style="background-color: #ecf5ff; color: #017690; "
|
||||||
|
@click="chooseFile(index)"
|
||||||
|
>
|
||||||
|
<i class="el-icon-video-camera" />
|
||||||
|
{{ getFileShowName(item) }}
|
||||||
|
</el-tag>
|
||||||
|
<el-tag v-if="chooseFileIndex === index" type="danger">
|
||||||
|
<i class="el-icon-video-camera" />
|
||||||
|
{{ getFileShowName(item) }}
|
||||||
|
</el-tag>
|
||||||
|
<a
|
||||||
|
class="el-icon-download"
|
||||||
|
style="color: #409EFF;font-weight: 600;margin-left: 10px;"
|
||||||
|
target="_blank"
|
||||||
|
@click="downloadFile(item)"
|
||||||
|
/>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div v-if="detailFiles.length === 0" class="record-list-no-val">暂无数据</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="playerBox">
|
||||||
|
<div class="playBox" style="height: calc(100% - 90px); width: 100%; background-color: #000000">
|
||||||
|
<div
|
||||||
|
v-if="playLoading"
|
||||||
|
style="position: relative; left: calc(50% - 32px); top: 43%; z-index: 100;color: #fff;float: left; text-align: center;"
|
||||||
|
>
|
||||||
|
<div class="el-icon-loading" />
|
||||||
|
<div style="width: 100%; line-height: 2rem">正在加载</div>
|
||||||
|
</div>
|
||||||
|
<h265web
|
||||||
|
ref="recordVideoPlayer"
|
||||||
|
:video-url="videoUrl"
|
||||||
|
:height="'calc(100vh - 250px)'"
|
||||||
|
:show-button="false"
|
||||||
|
:has-audio="true"
|
||||||
|
@playStatusChange="playingChange"
|
||||||
|
@playTimeChange="showPlayTimeChange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="player-option-box">
|
||||||
|
<VideoTimeline
|
||||||
|
ref="Timeline"
|
||||||
|
:init-time="initTime"
|
||||||
|
:time-segments="timeSegments"
|
||||||
|
:init-zoom-index="4"
|
||||||
|
@timeChange="playTimeChange"
|
||||||
|
@mousedown="timelineMouseDown"
|
||||||
|
@mouseup="mouseupTimeline"
|
||||||
|
/>
|
||||||
|
<div v-if="showTime" class="time-line-show">{{ showTimeValue }}</div>
|
||||||
|
</div>
|
||||||
|
<div style="height: 40px; background-color: #383838; display: grid; grid-template-columns: 1fr 400px 1fr">
|
||||||
|
<div style="text-align: left;">
|
||||||
|
<div class="record-play-control" style="background-color: transparent; box-shadow: 0 0 10px transparent">
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-list"
|
||||||
|
title="列表"
|
||||||
|
@click="sidebarControl()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-camera1196054easyiconnet"
|
||||||
|
title="截图"
|
||||||
|
@click="snap()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-xiazai1"
|
||||||
|
title="下载录像"
|
||||||
|
@click="chooseTimeForRecord()"
|
||||||
|
/>
|
||||||
|
<!-- <a target="_blank" class="record-play-control-item iconfont icon-xiazai011" title="下载" @click="gbPause()" />-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="text-align: center;">
|
||||||
|
<div class="record-play-control">
|
||||||
|
<a
|
||||||
|
v-if="chooseFileIndex > 0"
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-diyigeshipin"
|
||||||
|
title="上一个"
|
||||||
|
@click="playLast()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
v-else
|
||||||
|
style="color: #acacac; cursor: not-allowed"
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-diyigeshipin"
|
||||||
|
title="上一个"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-kuaijin"
|
||||||
|
title="快退五秒"
|
||||||
|
@click="seekBackward()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-stop1"
|
||||||
|
style="font-size: 14px"
|
||||||
|
title="停止"
|
||||||
|
@click="stopPLay()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
v-if="playing"
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-zanting"
|
||||||
|
title="暂停"
|
||||||
|
@click="pausePlay()"
|
||||||
|
/>
|
||||||
|
<a v-if="!playing" target="_blank" class="record-play-control-item iconfont icon-kaishi" title="播放" @click="play()" />
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-houtui"
|
||||||
|
title="快进五秒"
|
||||||
|
@click="seekForward()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
v-if="chooseFileIndex < detailFiles.length - 1"
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-zuihouyigeshipin"
|
||||||
|
title="下一个"
|
||||||
|
@click="playNext()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
v-else
|
||||||
|
style="color: #acacac; cursor: not-allowed"
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-zuihouyigeshipin"
|
||||||
|
title="下一个"
|
||||||
|
@click="playNext()"
|
||||||
|
/>
|
||||||
|
<el-dropdown @command="changePlaySpeed">
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item record-play-control-speed"
|
||||||
|
title="倍速播放"
|
||||||
|
>{{ playSpeed }}X</a>
|
||||||
|
<el-dropdown-menu slot="dropdown">
|
||||||
|
<el-dropdown-item
|
||||||
|
v-for="item in playSpeedRange"
|
||||||
|
:key="item"
|
||||||
|
:command="item"
|
||||||
|
>{{ item }}X
|
||||||
|
</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
</el-dropdown>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="text-align: right;">
|
||||||
|
<div class="record-play-control" style="background-color: transparent; box-shadow: 0 0 10px transparent">
|
||||||
|
<a
|
||||||
|
v-if="!isFullScreen"
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-fangdazhanshi"
|
||||||
|
title="全屏"
|
||||||
|
@click="fullScreen()"
|
||||||
|
/>
|
||||||
|
<a
|
||||||
|
v-else
|
||||||
|
target="_blank"
|
||||||
|
class="record-play-control-item iconfont icon-suoxiao1"
|
||||||
|
title="全屏"
|
||||||
|
@click="fullScreen()"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<record-download ref="recordDownload" />
|
||||||
|
<chooseTimeRange ref="chooseTimeRange" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
import h265web from '../common/h265web.vue'
|
||||||
|
import VideoTimeline from '../common/VideoTimeLine/index.vue'
|
||||||
|
import recordDownload from '../dialog/recordDownload.vue'
|
||||||
|
import ChooseTimeRange from '../dialog/chooseTimeRange.vue'
|
||||||
|
import moment from 'moment'
|
||||||
|
import screenfull from 'screenfull'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'CommonRecord',
|
||||||
|
components: {
|
||||||
|
h265web, VideoTimeline, recordDownload, ChooseTimeRange
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
showSidebar: false,
|
||||||
|
channelId: this.$route.params.channelId,
|
||||||
|
mediaServerId: null,
|
||||||
|
dateFilesObj: [],
|
||||||
|
mediaServerList: [],
|
||||||
|
detailFiles: [],
|
||||||
|
videoUrl: null,
|
||||||
|
streamInfo: null,
|
||||||
|
loading: false,
|
||||||
|
chooseDate: null,
|
||||||
|
playTime: null,
|
||||||
|
playerTime: 0,
|
||||||
|
playSpeed: 1,
|
||||||
|
chooseFileIndex: null,
|
||||||
|
queryDate: new Date(),
|
||||||
|
currentPage: 1,
|
||||||
|
count: 1000000, // TODO 分页导致滑轨视频有效值无法获取完全
|
||||||
|
total: 0,
|
||||||
|
playLoading: false,
|
||||||
|
showTime: true,
|
||||||
|
isFullScreen: false,
|
||||||
|
playSeekValue: 0,
|
||||||
|
playing: false,
|
||||||
|
taskTimeRange: [],
|
||||||
|
timeFormat: '00:00:00',
|
||||||
|
initTime: null,
|
||||||
|
timelineControl: false,
|
||||||
|
showOtherSpeed: true,
|
||||||
|
timeSegments: [],
|
||||||
|
pickerOptions: {
|
||||||
|
cellClassName: (date) => {
|
||||||
|
// 通过显示一个点标识这一天有录像
|
||||||
|
const time = moment(date).format('YYYY-MM-DD')
|
||||||
|
if (this.dateFilesObj[time]) {
|
||||||
|
return 'data-picker-true'
|
||||||
|
} else {
|
||||||
|
return 'data-picker-false'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
playSpeedRange: [0.25, 0.5, 1, 2, 4]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
boxStyle() {
|
||||||
|
if (this.showSidebar) {
|
||||||
|
return {
|
||||||
|
display: 'grid',
|
||||||
|
gridTemplateColumns: '210px minmax(0, 1fr)'
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
display: 'grid', gridTemplateColumns: '0 minmax(0, 1fr)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
showTimeValue() {
|
||||||
|
return moment(this.playTime).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
},
|
||||||
|
startTime() {
|
||||||
|
return this.chooseDate + ' 00:00:00'
|
||||||
|
},
|
||||||
|
endTime() {
|
||||||
|
return this.chooseDate + ' 23:59:59'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// 查询当年有视频的日期
|
||||||
|
this.chooseDate = moment().format('YYYY-MM-DD')
|
||||||
|
this.dateChange()
|
||||||
|
this.getDownloadSpeedArray()
|
||||||
|
window.addEventListener('beforeunload', this.stopPlayRecord)
|
||||||
|
},
|
||||||
|
destroyed() {
|
||||||
|
this.$destroy('recordVideoPlayer')
|
||||||
|
window.removeEventListener('beforeunload', this.stopPlayRecord)
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
sidebarControl() {
|
||||||
|
this.showSidebar = !this.showSidebar
|
||||||
|
},
|
||||||
|
snap() {
|
||||||
|
this.$refs.recordVideoPlayer.screenshot()
|
||||||
|
},
|
||||||
|
chooseTimeForRecord() {
|
||||||
|
let startTime = this.startTime
|
||||||
|
let endTime = this.endTime
|
||||||
|
if (this.detailFiles.length > 0) {
|
||||||
|
startTime = this.detailFiles[0].startTime
|
||||||
|
endTime = this.detailFiles[this.detailFiles.length - 1].endTime
|
||||||
|
}
|
||||||
|
console.log(startTime)
|
||||||
|
console.log(endTime)
|
||||||
|
this.$refs.chooseTimeRange.openDialog([new Date(startTime), new Date(endTime)], (time) => {
|
||||||
|
console.log(time)
|
||||||
|
const startTime = moment(time[0]).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
const endTime = moment(time[1]).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
this.downloadFile({
|
||||||
|
startTime: startTime,
|
||||||
|
endTime: endTime
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
playLast() {
|
||||||
|
// 播放上一个
|
||||||
|
if (this.chooseFileIndex === 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.chooseFile(this.chooseFileIndex - 1)
|
||||||
|
},
|
||||||
|
playNext() {
|
||||||
|
// 播放上一个
|
||||||
|
if (this.chooseFileIndex === this.detailFiles.length - 1) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.chooseFile(this.chooseFileIndex + 1)
|
||||||
|
},
|
||||||
|
changePlaySpeed(speed) {
|
||||||
|
console.log(this.streamInfo)
|
||||||
|
console.log(speed)
|
||||||
|
// 倍速播放
|
||||||
|
this.playSpeed = speed
|
||||||
|
this.$store.dispatch('playback/setSpeed', [this.streamInfo.stream, speed])
|
||||||
|
.then(data => {
|
||||||
|
this.$refs.recordVideoPlayer.setPlaybackRate(this.playSpeed)
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
seekBackward() {
|
||||||
|
// 快退五秒
|
||||||
|
this.playSeekValue -= 5 * 1000
|
||||||
|
this.play()
|
||||||
|
},
|
||||||
|
seekForward() {
|
||||||
|
// 快进五秒
|
||||||
|
this.playSeekValue += 5 * 1000
|
||||||
|
this.play()
|
||||||
|
},
|
||||||
|
stopPLay() {
|
||||||
|
// 停止
|
||||||
|
this.$refs.recordVideoPlayer.destroy()
|
||||||
|
},
|
||||||
|
pausePlay() {
|
||||||
|
// 暂停
|
||||||
|
this.$refs.recordVideoPlayer.pause()
|
||||||
|
},
|
||||||
|
play() {
|
||||||
|
if (this.$refs.recordVideoPlayer.loaded) {
|
||||||
|
this.$refs.recordVideoPlayer.unPause()
|
||||||
|
} else {
|
||||||
|
this.playRecord(this.showTimeValue, this.endTime)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fullScreen() {
|
||||||
|
// 全屏
|
||||||
|
if (this.isFullScreen) {
|
||||||
|
screenfull.exit()
|
||||||
|
this.isFullScreen = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
const playerWidth = this.$refs.recordVideoPlayer.playerWidth
|
||||||
|
const playerHeight = this.$refs.recordVideoPlayer.playerHeight
|
||||||
|
screenfull.request(document.getElementById('playerBox'))
|
||||||
|
screenfull.on('change', (event) => {
|
||||||
|
this.$refs.recordVideoPlayer.resize(playerWidth, playerHeight)
|
||||||
|
this.isFullScreen = screenfull.isFullscreen
|
||||||
|
})
|
||||||
|
this.isFullScreen = true
|
||||||
|
},
|
||||||
|
dateChange() {
|
||||||
|
this.detailFiles = []
|
||||||
|
this.$store.dispatch('gbRecord/query', [this.deviceId, this.channelId, this.startTime, this.endTime])
|
||||||
|
.then(data => {
|
||||||
|
// 处理时间信息
|
||||||
|
if (data.recordList.length === 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.detailFiles = data.recordList
|
||||||
|
this.initTime = new Date(this.detailFiles[0].startTime).getTime()
|
||||||
|
console.log(this.initTime)
|
||||||
|
for (let i = 0; i < this.detailFiles.length; i++) {
|
||||||
|
this.timeSegments.push({
|
||||||
|
beginTime: new Date(this.detailFiles[i].startTime).getTime(),
|
||||||
|
endTime: new Date(this.detailFiles[i].endTime).getTime(),
|
||||||
|
color: '#017690',
|
||||||
|
startRatio: 0.7,
|
||||||
|
endRatio: 0.85,
|
||||||
|
index: i
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.recordsLoading = false
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getDownloadSpeedArray() {
|
||||||
|
this.$store.dispatch('device/queryChannelOne', {
|
||||||
|
deviceId: this.deviceId,
|
||||||
|
channelDeviceId: this.channelId
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
if (data.downloadSpeed) {
|
||||||
|
const speedArray = data.downloadSpeed.split('/')
|
||||||
|
|
||||||
|
speedArray.forEach(item => {
|
||||||
|
if (parseInt(item) > 4) {
|
||||||
|
this.playSpeedRange.push(parseInt(item))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
stopPlayRecord(callback) {
|
||||||
|
console.log('停止录像回放')
|
||||||
|
if (this.streamInfo !== null) {
|
||||||
|
this.$refs['recordVideoPlayer'].pause()
|
||||||
|
this.videoUrl = ''
|
||||||
|
this.$store.dispatch('playback/stop', [this.deviceId, this.channelId, this.streamInfo.stream])
|
||||||
|
.then((data) => {
|
||||||
|
this.streamInfo = null
|
||||||
|
if (callback) callback()
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
if (callback) callback()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
chooseFile(index) {
|
||||||
|
this.chooseFileIndex = index
|
||||||
|
const chooseFile = this.detailFiles[this.chooseFileIndex]
|
||||||
|
this.playTime = new Date(chooseFile.startTime).getTime()
|
||||||
|
this.playRecord(chooseFile.startTime, this.endTime)
|
||||||
|
},
|
||||||
|
playRecord(startTime, endTime) {
|
||||||
|
if (this.streamInfo !== null) {
|
||||||
|
this.stopPlayRecord(() => {
|
||||||
|
this.playRecord(startTime, endTime)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.playerTime = 0
|
||||||
|
this.$store.dispatch('playback/play', [this.deviceId, this.channelId, startTime, endTime])
|
||||||
|
.then(data => {
|
||||||
|
this.streamInfo = data
|
||||||
|
this.videoUrl = this.getUrlByStreamInfo()
|
||||||
|
this.hasAudio = this.streamInfo.tracks && this.streamInfo.tracks.length > 1
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getUrlByStreamInfo() {
|
||||||
|
if (location.protocol === 'https:') {
|
||||||
|
this.videoUrl = this.streamInfo['wss_flv']
|
||||||
|
} else {
|
||||||
|
this.videoUrl = this.streamInfo['ws_flv']
|
||||||
|
}
|
||||||
|
return this.videoUrl
|
||||||
|
},
|
||||||
|
downloadFile(row) {
|
||||||
|
if (!row) {
|
||||||
|
const startTimeStr = moment(new Date(this.chooseDate + ' 00:00:00').getTime() + this.playTime[0] * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
const endTimeStr = moment(new Date(this.chooseDate + ' 00:00:00').getTime() + this.playTime[1] * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
row = {
|
||||||
|
startTime: startTimeStr,
|
||||||
|
endTime: endTimeStr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.streamInfo !== null) {
|
||||||
|
this.stopPlayRecord(() => {
|
||||||
|
this.downloadFile(row)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
const loading = this.$loading({
|
||||||
|
lock: true,
|
||||||
|
text: '正在请求录像',
|
||||||
|
spinner: 'el-icon-loading',
|
||||||
|
background: 'rgba(0, 0, 0, 0.7)'
|
||||||
|
})
|
||||||
|
this.$store.dispatch('gbRecord/startDownLoad', [
|
||||||
|
this.deviceId, this.channelId, row.startTime, row.endTime, this.playSpeedRange[this.playSpeedRange.length - 1]
|
||||||
|
])
|
||||||
|
.then(streamInfo => {
|
||||||
|
this.$refs.recordDownload.openDialog(this.deviceId, this.channelId, streamInfo.app, streamInfo.stream, streamInfo.mediaServerId)
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
loading.close()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getFileShowName(item) {
|
||||||
|
return moment(item.startTime).format('HH:mm:ss') + '-' + moment(item.endTime).format('HH:mm:ss')
|
||||||
|
},
|
||||||
|
|
||||||
|
showPlayTimeChange(val) {
|
||||||
|
this.playTime += (val * 1000 - this.playerTime)
|
||||||
|
this.playerTime = val * 1000
|
||||||
|
},
|
||||||
|
playingChange(val) {
|
||||||
|
this.playing = val
|
||||||
|
},
|
||||||
|
playTimeChange(val) {
|
||||||
|
if (val === this.playTime) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.playTime = val
|
||||||
|
},
|
||||||
|
timelineMouseDown() {
|
||||||
|
this.timelineControl = true
|
||||||
|
},
|
||||||
|
mouseupTimeline(event) {
|
||||||
|
if (!this.timelineControl) {
|
||||||
|
this.timelineControl = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.timelineControl = false
|
||||||
|
this.playRecord(this.showTimeValue, this.endTime)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
.record-list-box-box {
|
||||||
|
width: fit-content;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-list-box {
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #FFF;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-list {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #FFF;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-list-no-val {
|
||||||
|
width: fit-content;
|
||||||
|
position: relative;
|
||||||
|
color: #9f9f9f;
|
||||||
|
top: 50%;
|
||||||
|
left: calc(50% - 2rem);
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-list-item {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-play-control {
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
display: inline-block;
|
||||||
|
width: fit-content;
|
||||||
|
padding: 0 10px;
|
||||||
|
-webkit-box-shadow: 0 0 10px #262626;
|
||||||
|
box-shadow: 0 0 10px #262626;
|
||||||
|
background-color: #262626;
|
||||||
|
margin: 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-play-control-item {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 0 10px;
|
||||||
|
color: #fff;
|
||||||
|
margin-right: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-play-control-item:hover {
|
||||||
|
color: #1f83e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.record-play-control-speed {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #fff;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.player-option-box {
|
||||||
|
height: 50px
|
||||||
|
}
|
||||||
|
|
||||||
|
.time-line-show {
|
||||||
|
position: relative;
|
||||||
|
color: rgba(250, 249, 249, 0.89);
|
||||||
|
left: calc(50% - 85px);
|
||||||
|
top: -72px;
|
||||||
|
text-shadow: 1px 0 #5f6b7c, -1px 0 #5f6b7c, 0 1px #5f6b7c, 0 -1px #5f6b7c, 1.1px 1.1px #5f6b7c, 1.1px -1.1px #5f6b7c, -1.1px 1.1px #5f6b7c, -1.1px -1.1px #5f6b7c;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue
Block a user