//推流代码
<live-pusher id='livePusher' ref="livePusher" :style="pusherCalss" :url="url"
mode="FHD"
:muted="true"
:enable-camera="true"
:auto-focus="true"
:beauty="1"
whiteness="2"
orientation="horizontal"
min-bitrate=50
max-bitrate=400
audio-quality="low"
aspect="9:16"
@statechange="statechange"
@netstatus="netstatus"
@error = "error"
></live-pusher>
<view style="position: absolute;right: 5px;top: 5px;">
<text style="color: white;font-size: 18px;" v-if="starting">录制中</text>
</view>
<view class="bottom_tips">
<text class="tips" @click="start">开始</text>
<text class="tips" @click="stop">停止</text>
</view>
//拉流视频代码
<video id="myVideo" ref="myVideo" :style="{ height: videoHeight,width:videoWidth }" :src="url1"
@error="videoErrorCallback" direction="-90" :show-center-play-btn="false" :controls = "true"></video>