Skip to content

Commit

Permalink
Renamed ClipCommand to ClipDownloaderCommand, see #6
Browse files Browse the repository at this point in the history
  • Loading branch information
thelabcat committed May 25, 2024
1 parent bf49734 commit d0419fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rumchat_actor/common_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ def run(self, message):
print("Killswitch thrown.")
sys.exit()

class ClipCommand(ChatCommand):
"""Save clips of the livestream"""
class ClipDownloaderCommand(ChatCommand):
"""Save clips of the livestream by downloading stream chunks from Rumble, works remotely"""
def __init__(self, actor, name = "clip", default_duration = 60, max_duration = 120, clip_save_path = "." + os.sep, browsermob_exe = BROWSERMOB_EXE):
"""actor: The Rumchat Actor
name: The name of the command
Expand Down Expand Up @@ -191,7 +191,7 @@ def record_loop(self):

#Stream is showing as DVR
elif stream_griditem.find_elements(By.CLASS_NAME, "videostream__badge.videostream__status.videostream__status--dvr"):
print("Stream is showing as DVR, but may be starting. See RumChat-Actor issue #5.")
print("Stream is showing as DVR, but may be starting. See https://github.com/thelabcat/rumble-chat-actor/issues/5.")

#Stream is not live or upcoming
else:
Expand Down

0 comments on commit d0419fb

Please sign in to comment.