[mirotalksfu] - fix, add refresh video files

هذا الالتزام موجود في:
Miroslav Pejic
2024-07-02 21:29:08 +02:00
الأصل 7ea29cfb09
التزام ad5294b3a0
4 ملفات معدلة مع 24 إضافات و6 حذوفات

عرض الملف

@@ -342,6 +342,7 @@ body {
}
#extraInfo {
margin-left: 5px;
max-height: 400px;
}
@@ -440,7 +441,7 @@ th {
}
#rtmpStreamURL,
#rtmp-url {
#rtmpLiveUrl {
margin-top: 5px;
padding: 10px;
width: 100%;
@@ -449,6 +450,16 @@ th {
background: var(--select-bg) !important;
}
#refreshVideoFiles {
float: right;
cursor: pointer;
border-radius: 5px;
background: var(--body-bg) !important;
}
#refreshVideoFiles:hover {
background: var(--select-bg) !important;
}
.input-container button {
flex: 1;
width: 20px;

عرض الملف

@@ -300,6 +300,7 @@ function initClient() {
'Prioritize h.264 with AAC or h.264 with Opus codecs over VP8 with Opus or VP9 with Opus codecs',
'right',
);
setTippy('refreshVideoFiles', 'Refresh', 'left');
setTippy('switchServerRecording', 'The recording will be stored on the server rather than locally', 'right');
setTippy('whiteboardGhostButton', 'Toggle transparent background', 'bottom');
setTippy('wbBackgroundColorEl', 'Background color', 'bottom');
@@ -1490,6 +1491,9 @@ function handleButtons() {
rc.getRTMP();
rc.openTab(e, 'tabRTMPStreaming');
};
refreshVideoFiles.onclick = () => {
rc.getRTMP();
};
tabAspectBtn.onclick = (e) => {
rc.openTab(e, 'tabAspect');
};
@@ -1715,7 +1719,7 @@ function handleButtons() {
rc.closeProducer(RoomClient.mediaType.screen);
};
copyRtmpUrlButton.onclick = () => {
rc.copyRTMPUrl(rtmpStreamURL.value);
rc.copyRTMPUrl(rtmpLiveUrl.value);
};
startRtmpButton.onclick = () => {
if (rc.selectedRtmpFilename == '') {

عرض الملف

@@ -7596,7 +7596,7 @@ class RoomClient {
}
cleanRTMPUrl() {
const rtmpUrl = rc.getId('rtmp-url');
const rtmpUrl = rc.getId('rtmpLiveUrl');
rtmpUrl.value = '';
}
@@ -7622,7 +7622,7 @@ class RoomClient {
);
}
const rtmpUrl = rc.getId('rtmp-url');
const rtmpUrl = rc.getId('rtmpLiveUrl');
rtmpUrl.value = filterXSS(rtmp);
Swal.fire({

عرض الملف

@@ -828,6 +828,7 @@ access to use this app.
</tr>
</table>
</div>
<hr />
<div id="roomRecordingServer" class="hidden">
<table class="settingsTable">
<tr>
@@ -948,7 +949,7 @@ access to use this app.
<div id="rtmpUrlLive">
<div class="input-container">
<input
id="rtmp-url"
id="rtmpLiveUrl"
type="text"
value=""
placeholder="rtmp://server:port/app/streamKey"
@@ -960,7 +961,9 @@ access to use this app.
<table class="file-table">
<thead>
<tr>
<th>Video Files:</th>
<th>
Video Files: <i id="refreshVideoFiles" class="fa-solid fa-rotate"></i>
</th>
</tr>
</thead>
<tbody id="file-list">