Hi!
I tried to run VLC Scheduler script on Ubuntu 20.04.3 (Python 3.8.10), but was getting this error, despite doing everything by the manual on github:
Code: Select all
(venv) administrator@d4k-work:~/vlc-sched$ python src/vlcscheduler.py
[12:24:54] Traceback (most recent call last):
File "/home/administrator/vlc-sched/src/config.py", line 143, in <module>
check_config()
File "/home/administrator/vlc-sched/src/config.py", line 137, in check_config
if not os.path.isfile(config.VLC['path']):
KeyError: 'path'
It turns out, you
have to add path to vlc binary to vlcscheduler.yaml, like shown in example:
https://github.com/EugeneDae/VLC-Schedu ... ample.yaml
although the manual states it's not mandatory.
with that, it strarted fine and I'm excited to play with it!
Thanks for making the Scheduler!