We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc40a3 commit 46b4b9dCopy full SHA for 46b4b9d
src/processor.py
@@ -70,8 +70,11 @@ def _process_queue(self):
70
# Upload
71
upload = streamer_config.getboolean("upload","upload")
72
if upload:
73
- logger.info("Uploading video.")
74
- upload_youtube(os.path.abspath(new_video_path))
+ try:
+ logger.info("Uploading video.")
75
+ upload_youtube(os.path.abspath(new_video_path))
76
+ except:
77
+ pass
78
79
logger.info(f"Finished processing: {new_video_path}")
80
0 commit comments