Skip to content

Commit

Permalink
Minor resolutions
Browse files Browse the repository at this point in the history
  • Loading branch information
ehfd authored Aug 5, 2023
1 parent 62cc271 commit 70b231e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FROM ${WEB_IMAGE} as selkies-web
FROM ubuntu:${UBUNTU_RELEASE}
ARG UBUNTU_RELEASE

LABEL maintainer "https://github.com/danisla"
LABEL maintainer "https://github.com/danisla,https://github.com/ehfd"

# Install Selkies-GStreamer system dependencies
RUN \
Expand Down
4 changes: 2 additions & 2 deletions src/selkies_gstreamer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def main():
help='Enable cursor debug logging')
parser.add_argument('--cursor_size',
default=os.environ.get('WEBRTC_CURSOR_SIZE', os.environ.get('XCURSOR_SIZE', '24')),
help='Cursor size in points, only for the local cursor, instead set XCURSOR_SIZE without of this argument to configure the cursor size for both the local and remote cursors')
help='Cursor size in points for the local cursor, set instead XCURSOR_SIZE without of this argument to configure the cursor size for both the local and remote cursors')
parser.add_argument('--metrics_port',
default=os.environ.get('WEBRTC_METRICS_PORT', '8000'),
help='Port to start metrics server on')
Expand Down Expand Up @@ -472,7 +472,7 @@ async def on_signalling_error(e):
signalling.on_connect = signalling.setup_call

# [START main_setup]
# Fetch the turn server and credentials
# Fetch the TURN server and credentials
rtc_config = None
turn_protocol = 'tcp' if args.turn_protocol.lower() == 'tcp' else 'udp'
using_turn_tls = args.turn_tls.lower() == 'true'
Expand Down

0 comments on commit 70b231e

Please sign in to comment.