Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galene
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
galene
Commits
69445d67
Commit
69445d67
authored
Jul 09, 2023
by
Juliusz Chroboczek
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change default video codec to VP9.
parent
7062ba10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
README
README
+4
-5
group/group.go
group/group.go
+1
-1
No files found.
README
View file @
69445d67
...
...
@@ -170,14 +170,13 @@ nobody will be able to join the group. The following fields are allowed:
- `redirect`: if set, then attempts to join the group will be redirected
to the given URL; most other fields are ignored in this case;
- `codecs`: this is a list of codecs allowed in this group. The default
is `["vp
8
", "opus"]`.
is `["vp
9
", "opus"]`.
Supported video codecs include:
- `"vp8"` (compatible with all supported browsers);
- `"vp9"` (better video quality, but incompatible with Safari);
- `"av1"` (even better video quality, only supported by some browsers,
recording is not supported, SVC is not supported);
- `"vp8"` (legacy, supported by all browsers);
- `"vp9"` (compatible with all recent browsers);
- `"av1"` (experimental, buggy in many browsers);
- `"h264"` (incompatible with Debian and with some Android devices, SVC
is not supported).
...
...
group/group.go
View file @
69445d67
...
...
@@ -371,7 +371,7 @@ func APIFromCodecs(codecs []webrtc.RTPCodecParameters) (*webrtc.API, error) {
func
APIFromNames
(
names
[]
string
)
(
*
webrtc
.
API
,
error
)
{
if
len
(
names
)
==
0
{
names
=
[]
string
{
"vp
8
"
,
"opus"
}
names
=
[]
string
{
"vp
9
"
,
"opus"
}
}
var
codecs
[]
webrtc
.
RTPCodecParameters
for
_
,
n
:=
range
names
{
...
...
Thomas Gambier
🚴🏼
@tomo
mentioned in commit
e4682ff2
·
Nov 29, 2023
mentioned in commit
e4682ff2
mentioned in commit e4682ff283b6c18991e9cbafae10f9330fd64233
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment