You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
391 lines
11 KiB
391 lines
11 KiB
<template> |
|
<div class="mt20 flex-column flex-justify-start flex-align-center"> |
|
<div id="player" style="width: 720px; height: 420px; border: 1px solid"></div> |
|
<p class="fz24">Live streaming source selection</p> |
|
<div class="flex-row flex-justify-center flex-align-center mt10"> |
|
<template v-if="livePara.liveState && dronePara.isDockLive"> |
|
<span class="mr10">Lens:</span> |
|
<a-radio-group v-model:value="dronePara.lensSelected" button-style="solid"> |
|
<a-radio-button v-for="lens in dronePara.lensList" :key="lens" :value="lens">{{lens}}</a-radio-button> |
|
</a-radio-group> |
|
</template> |
|
<template v-else> |
|
<a-select |
|
style="width:150px" |
|
placeholder="Select Drone" |
|
v-model:value="dronePara.droneSelected" |
|
> |
|
<a-select-option |
|
v-for="item in dronePara.droneList" |
|
:key="item.value" |
|
:value="item.value" |
|
@click="onDroneSelect(item)" |
|
>{{ item.label }}</a-select-option |
|
> |
|
</a-select> |
|
<a-select |
|
class="ml10" |
|
style="width:150px" |
|
placeholder="Select Camera" |
|
v-model:value="dronePara.cameraSelected" |
|
> |
|
<a-select-option |
|
v-for="item in dronePara.cameraList" |
|
:key="item.value" |
|
:value="item.value" |
|
@click="onCameraSelect(item)" |
|
>{{ item.label }}</a-select-option |
|
> |
|
</a-select> |
|
<!-- <a-select |
|
class="ml10" |
|
style="width:150px" |
|
placeholder="Select Lens" |
|
@select="onVideoSelect" |
|
> |
|
<a-select-option |
|
v-for="item in dronePara.videoList" |
|
:key="item.value" |
|
:value="item.value" |
|
>{{ item.label }}</a-select-option |
|
> |
|
</a-select> --> |
|
</template> |
|
<a-select |
|
class="ml10" |
|
style="width:150px" |
|
placeholder="Select Clarity" |
|
@select="onClaritySelect" |
|
> |
|
<a-select-option |
|
v-for="item in clarityList" |
|
:key="item.value" |
|
:value="item.value" |
|
>{{ item.label }}</a-select-option |
|
> |
|
</a-select> |
|
</div> |
|
<p class="fz16 mt10"> |
|
Note: Obtain The Following Parameters From https://console.agora.io |
|
</p> |
|
<div class="flex-row flex-justify-center flex-align-center"> |
|
<span class="mr10">AppId:</span> |
|
<a-input v-model:value="agoraPara.appid" placeholder="APP ID"></a-input> |
|
<span class="ml10">Token:</span> |
|
<a-input |
|
class="ml10" |
|
v-model:value="agoraPara.token" |
|
placeholder="Token" |
|
@change="encodeToken" |
|
></a-input> |
|
<span class="ml10">Channel:</span> |
|
<a-input |
|
class="ml10" |
|
v-model:value="agoraPara.channel" |
|
placeholder="Channel" |
|
></a-input> |
|
</div> |
|
<div class="mt20 flex-row flex-justify-center flex-align-center"> |
|
<a-button v-if="livePara.liveState && dronePara.isDockLive" type="primary" large @click="onSwitch">Switch Lens</a-button> |
|
<a-button v-else type="primary" large @click="onStart">Play</a-button> |
|
<a-button class="ml20" type="primary" large @click="onStop" |
|
>Stop</a-button |
|
> |
|
<a-button class="ml20" type="primary" large @click="onUpdateQuality" |
|
>Update Clarity</a-button |
|
> |
|
<a-button v-if="!livePara.liveState || !dronePara.isDockLive" class="ml20" type="primary" large @click="onRefresh" |
|
>Refresh Live Capacity</a-button |
|
> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import AgoraRTC, { IAgoraRTCClient, IAgoraRTCRemoteUser } from 'agora-rtc-sdk-ng' |
|
import { message } from 'ant-design-vue' |
|
import { onMounted, reactive } from 'vue' |
|
import { uuidv4 } from '../utils/uuid' |
|
import { CURRENT_CONFIG as config } from '/@/api/http/config' |
|
import { changeLivestreamLens, getLiveCapacity, setLivestreamQuality, startLivestream, stopLivestream } from '/@/api/manage' |
|
import { getRoot } from '/@/root' |
|
|
|
const root = getRoot() |
|
|
|
const clarityList = [ |
|
{ |
|
value: 0, |
|
label: 'Adaptive' |
|
}, |
|
{ |
|
value: 1, |
|
label: 'Smooth' |
|
}, |
|
{ |
|
value: 2, |
|
label: 'Standard' |
|
}, |
|
{ |
|
value: 3, |
|
label: 'HD' |
|
}, |
|
{ |
|
value: 4, |
|
label: 'Super Clear' |
|
} |
|
] |
|
|
|
interface SelectOption { |
|
value: any, |
|
label: string, |
|
more?: any |
|
} |
|
|
|
let agoraClient = {} as IAgoraRTCClient |
|
const agoraPara = reactive({ |
|
appid: config.agoraAPPID, |
|
token: config.agoraToken, |
|
channel: config.agoraChannel, |
|
uid: 123456, |
|
stream: {} |
|
}) |
|
const dronePara = reactive({ |
|
livestreamSource: [], |
|
droneList: [] as SelectOption[], |
|
cameraList: [] as SelectOption[], |
|
videoList: [] as SelectOption[], |
|
droneSelected: undefined as string | undefined, |
|
cameraSelected: undefined as string | undefined, |
|
videoSelected: undefined as string | undefined, |
|
claritySelected: 0, |
|
lensList: [] as string[], |
|
lensSelected: undefined as string | undefined, |
|
isDockLive: false |
|
}) |
|
const livePara = reactive({ |
|
url: '', |
|
webrtc: {} as any, |
|
videoId: '', |
|
liveState: false |
|
}) |
|
const nonSwitchable = 'normal' |
|
|
|
const onRefresh = async () => { |
|
dronePara.droneList = [] |
|
dronePara.cameraList = [] |
|
dronePara.videoList = [] |
|
dronePara.droneSelected = undefined |
|
dronePara.cameraSelected = undefined |
|
dronePara.videoSelected = undefined |
|
await getLiveCapacity({}) |
|
.then(res => { |
|
if (res.code === 0) { |
|
if (res.data === null) { |
|
console.warn('warning: get live capacity is null!!!') |
|
return |
|
} |
|
dronePara.livestreamSource = res.data |
|
dronePara.droneList = [] |
|
|
|
console.log('live_capacity:', dronePara.livestreamSource) |
|
|
|
if (dronePara.livestreamSource) { |
|
dronePara.livestreamSource.forEach((ele: any) => { |
|
dronePara.droneList.push({ label: ele.name + '-' + ele.sn, value: ele.sn, more: ele.cameras_list }) |
|
}) |
|
} |
|
} |
|
}) |
|
.catch(error => { |
|
message.error(error) |
|
console.error(error) |
|
}) |
|
} |
|
|
|
onMounted(() => { |
|
onRefresh() |
|
agoraPara.token = encodeURIComponent(agoraPara.token) |
|
agoraClient = AgoraRTC.createClient({ mode: 'live', codec: 'vp8' }) |
|
// Subscribe when a remote user publishes a stream |
|
agoraClient.on('user-joined', async (user: IAgoraRTCRemoteUser) => { |
|
message.info('user[' + user.uid + '] join') |
|
}) |
|
agoraClient.on('user-published', async (user: IAgoraRTCRemoteUser, mediaType: 'audio' | 'video') => { |
|
await agoraClient.subscribe(user, mediaType) |
|
if (mediaType === 'video') { |
|
console.log('subscribe success') |
|
// Get `RemoteVideoTrack` in the `user` object. |
|
const remoteVideoTrack = user.videoTrack! |
|
// Dynamically create a container in the form of a DIV element for playing the remote video track. |
|
const remotePlayerContainer: any = document.getElementById('player') |
|
remotePlayerContainer.id = user.uid.toString() |
|
remoteVideoTrack.play(remotePlayerContainer) |
|
} |
|
}) |
|
agoraClient.on('user-unpublished', async (user: any) => { |
|
console.log('unpublish live:', user) |
|
message.info('unpublish live') |
|
}) |
|
agoraClient.on('exception', async (e: any) => { |
|
console.error(e) |
|
message.error(e.msg) |
|
}) |
|
}) |
|
|
|
const handleError = (err: any) => { |
|
console.error(err) |
|
} |
|
const handleJoinChannel = (uid: any) => { |
|
agoraPara.uid = uid |
|
} |
|
const encodeToken = (e: any) => { |
|
agoraPara.token = encodeURIComponent(agoraPara.token) |
|
} |
|
const onStart = async () => { |
|
const that = this |
|
console.log( |
|
'drone parameter:', |
|
dronePara.droneSelected, |
|
dronePara.cameraSelected, |
|
dronePara.videoSelected, |
|
dronePara.claritySelected |
|
) |
|
const timestamp = new Date().getTime().toString() |
|
const liveTimestamp = timestamp |
|
if ( |
|
dronePara.droneSelected == null || |
|
dronePara.cameraSelected == null || |
|
dronePara.claritySelected == null |
|
) { |
|
message.warn('waring: not select live para!!!') |
|
return |
|
} |
|
agoraClient.setClientRole('audience', { level: 2 }) |
|
if (agoraClient.connectionState === 'DISCONNECTED') { |
|
agoraClient |
|
.join(agoraPara.appid, agoraPara.channel, agoraPara.token) |
|
} |
|
livePara.videoId = |
|
dronePara.droneSelected + |
|
'/' + |
|
dronePara.cameraSelected + '/' + (dronePara.videoSelected || nonSwitchable + '-0') |
|
console.log(agoraPara) |
|
|
|
livePara.url = |
|
'channel=' + |
|
agoraPara.channel + |
|
'&sn=' + |
|
dronePara.droneSelected + |
|
'&token=' + |
|
agoraPara.token + |
|
'&uid=' + |
|
agoraPara.uid |
|
|
|
startLivestream({ |
|
url: livePara.url, |
|
video_id: livePara.videoId, |
|
url_type: 0, |
|
video_quality: dronePara.claritySelected |
|
}) |
|
.then(res => { |
|
if (res.code !== 0) { |
|
return |
|
} |
|
livePara.liveState = true |
|
}) |
|
.catch(err => { |
|
console.error(err) |
|
}) |
|
} |
|
const onStop = async () => { |
|
stopLivestream({ |
|
video_id: livePara.videoId |
|
}).then(res => { |
|
if (res.code === 0) { |
|
message.success(res.message) |
|
} |
|
livePara.liveState = false |
|
dronePara.lensSelected = '' |
|
console.log('stop play livestream') |
|
}) |
|
} |
|
const onDroneSelect = (val: SelectOption) => { |
|
dronePara.cameraList = [] |
|
dronePara.videoList = [] |
|
dronePara.lensList = [] |
|
|
|
dronePara.cameraSelected = undefined |
|
dronePara.videoSelected = undefined |
|
dronePara.lensSelected = undefined |
|
dronePara.droneSelected = val.value |
|
if (!val.more) { |
|
return |
|
} |
|
val.more.forEach((ele: any) => { |
|
dronePara.cameraList.push({ label: ele.name, value: ele.index, more: ele.videos_list }) |
|
}) |
|
} |
|
const onCameraSelect = (val: SelectOption) => { |
|
dronePara.cameraSelected = val.value |
|
dronePara.videoSelected = undefined |
|
dronePara.lensSelected = undefined |
|
dronePara.videoList = [] |
|
dronePara.lensList = [] |
|
if (!val.more) { |
|
return |
|
} |
|
|
|
val.more.forEach((ele: any) => { |
|
dronePara.videoList.push({ label: ele.type, value: ele.index, more: ele.switch_video_types }) |
|
}) |
|
if (dronePara.videoList.length === 0) { |
|
return |
|
} |
|
const firstVideo: SelectOption = dronePara.videoList[0] |
|
dronePara.videoSelected = firstVideo.value |
|
dronePara.lensList = firstVideo.more |
|
dronePara.lensSelected = firstVideo.label |
|
dronePara.isDockLive = dronePara.lensList.length > 0 |
|
} |
|
const onVideoSelect = (val: SelectOption) => { |
|
dronePara.videoSelected = val.value |
|
dronePara.lensList = val.more |
|
dronePara.lensSelected = val.label |
|
} |
|
const onClaritySelect = (val: any) => { |
|
dronePara.claritySelected = val |
|
} |
|
const onUpdateQuality = () => { |
|
if (!livePara.liveState) { |
|
message.info('Please turn on the livestream first.') |
|
return |
|
} |
|
setLivestreamQuality({ |
|
video_id: livePara.videoId, |
|
video_quality: dronePara.claritySelected |
|
}).then(res => { |
|
if (res.code === 0) { |
|
message.success('Set the clarity to ' + clarityList[dronePara.claritySelected].label) |
|
} |
|
}) |
|
} |
|
|
|
const onSwitch = () => { |
|
if (dronePara.lensSelected === undefined || dronePara.lensSelected === nonSwitchable) { |
|
message.info('The ' + nonSwitchable + ' lens cannot be switched, please select the lens to be switched.', 8) |
|
return |
|
} |
|
changeLivestreamLens({ |
|
video_id: livePara.videoId, |
|
video_type: dronePara.lensSelected |
|
}).then(res => { |
|
if (res.code === 0) { |
|
message.success('Switching live camera successfully.') |
|
} |
|
}) |
|
} |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
@import '/@/styles/index.scss'; |
|
</style>
|
|
|