'd'
This commit is contained in:
@@ -23,10 +23,14 @@
|
||||
</button>
|
||||
<button v-if="!isDir && isVideoFile(name)" class="live-button" @click="startLive">
|
||||
单次直播
|
||||
</button>
|
||||
<button v-if="!isDir && isVideoFile(name)" class="live-button" @click="obsLive">
|
||||
obs推流
|
||||
</button>
|
||||
<button v-if="!isDir && isVideoFile(name)" class="live-button" @click="stopLive">
|
||||
停止直播
|
||||
</button>
|
||||
|
||||
</p>
|
||||
|
||||
</div>
|
||||
@@ -431,6 +435,9 @@ const loopLive = async () => {
|
||||
}
|
||||
};
|
||||
|
||||
const obsLive = async () => {
|
||||
|
||||
};
|
||||
const startLive = async () => {
|
||||
try {
|
||||
// props.url 是 FileBrowser 内部路径,例如 /videos/test.mp4
|
||||
|
||||
@@ -41,11 +41,15 @@ export default defineConfig(({ command }) => {
|
||||
proxy: {
|
||||
// Zero3 后端 WebSocket(如果你有 ws 接口)
|
||||
"/api/command": {
|
||||
target: "ws://live.local:8081",
|
||||
target: "ws://192.168.31.103:8081",
|
||||
// target: "ws://live.local:8081",
|
||||
|
||||
ws: true,
|
||||
},
|
||||
// Zero3 后端 HTTP
|
||||
"/api": "http://live.local:8081",
|
||||
"/api": "http://192.168.31.103:8081",
|
||||
// "/api": "http://live.local:8081",
|
||||
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user