Skip to content

Commit

Permalink
beta 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zak-45 committed Sep 19, 2024
1 parent d0663a8 commit 96db890
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
env:
YOUTUBE_DISABLE: yes
DEBUG_COMPILATION: yes
YOUTUBE_DISABLE: no
DEBUG_COMPILATION: no
COMP_VERSION: ${{github.event.inputs.mytag}}

runs-on: ${{matrix.os}}
Expand Down
4 changes: 2 additions & 2 deletions CastAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -1255,11 +1255,11 @@ async def video_player_page():
cast_player = ui.icon('cast', size='md') \
.style("cursor: pointer") \
.on('click', lambda: player_cast(CastAPI.player.source)) \
.tooltip('Cast Video') \
.tooltip('Play/Cast Video') \
.bind_visibility_from(CastAPI.player)

cast_number = ui.number(min=-1, max=9999, precision=0, placeholder='Repeat')
cast_number.tooltip('Enter number of time you want to re-play Media')
cast_number.tooltip('Enter number of time you want to re-cast Media')
cast_number.bind_value(Media, 'repeat')
cast_number.bind_visibility_from(CastAPI.player)

Expand Down
6 changes: 3 additions & 3 deletions desktop.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,9 @@ def send_multicast_images_to_ips(images_buffer, to_ip_addresses):

"""
viinput can be:
desktop : to stream full screen or a part of the screen
desktop or :0 ... : to stream full screen or a part of the screen
title=<window name> : to stream only window content for win
window_id : to stream only window content for win
window_id : to stream only window content for Linux
or str
"""

Expand Down Expand Up @@ -782,7 +782,7 @@ def send_multicast_images_to_ips(images_buffer, to_ip_addresses):
CV2Utils.cv2_win_close(CASTDesktop.server_port, 'Desktop', t_name, t_viinput)
else:

logger.warning(f'{t_name} av input_container not defined')
logger.error(f'{t_name} av input_container not defined')

"""
END +
Expand Down

0 comments on commit 96db890

Please sign in to comment.