Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions internal/servers/webrtc/publish_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
border: 1px solid rgb(200, 200, 200);
border-radius: 3px;
height: 40px;
padding: 0 10px;
}
select option {
color: black;
}
#message {
position: absolute;
Expand Down Expand Up @@ -103,17 +107,17 @@
</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>

Expand Down
Loading