1
0
Fork 0
forked from External/mediamtx

webrtc: improve layout of publish page; add 'ideal' label to width, height and framerate (#2845) (#3254)

This commit is contained in:
Alessandro Ros 2024-04-17 12:17:26 +02:00 committed by GitHub
parent 3a968118db
commit 7193f82708
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,6 +47,10 @@ select, input[type="text"] {
border: 1px solid rgb(200, 200, 200);
border-radius: 3px;
height: 40px;
padding: 0 10px;
}
select option {
color: black;
}
#message {
position: absolute;
@ -103,17 +107,17 @@ select, input[type="text"] {
</div>
<div class="item">
<label for="video-framerate">video framerate</label>
<label for="video-framerate">video framerate (ideal)</label>
<input id="video-framerate" type="text" value="30" />
</div>
<div class="item">
<label for="video-width">video width</label>
<label for="video-width">video width (ideal)</label>
<input id="video-width" type="text" value="1920" />
</div>
<div class="item">
<label for="video-height">video height</label>
<label for="video-height">video height (ideal)</label>
<input id="video-height" type="text" value="1080" />
</div>