视频保存

This commit is contained in:
duoaohui
2026-05-19 17:21:40 +08:00
parent 3fe284ec5c
commit 23a74f737e
9 changed files with 59 additions and 19 deletions

View File

@@ -603,6 +603,13 @@ export const useMeetingStore = defineStore('meeting', () => {
if (typeof dto.size_bytes === 'number') recording.sizeBytes = dto.size_bytes
if (typeof dto.duration_sec === 'number') recording.durationSec = dto.duration_sec
if (typeof dto.failure_reason === 'string') recording.failureReason = dto.failure_reason
if (
dto.status === MEETING_RECORDING_STATUS_RECORDING ||
dto.status === MEETING_RECORDING_STATUS_READY ||
dto.status === MEETING_RECORDING_STATUS_FAILED
) {
recording.pending = false
}
}
/**