Hi, Firstly thanks for this Github, I'm really enjoying the results of your hard work. I just had one (for me) tricky issue. However, I have managed to work it out so take the below as a comment and something that might help other users.
I have a few .mp4 files in the Videos directory and they work if I specify the FILE full (or partial) path in the command, but fails to find the file if I only specify the FILE name.
pi@veryslowmovie:~/SlowMovie $ python3 slowmovie.py --file '/home/pi/SlowMovie/Videos/Citizen Kane.mp4'
INFO:slowmovie:Update interval: 120
INFO:slowmovie:Playing 'Citizen Kane.mp4'
INFO:slowmovie:Video info: 171686 frames, 23.979fps, duration: 01:59:19
pi@veryslowmovie:~/SlowMovie $ python3 slowmovie.py --file 'Citizen Kane.mp4'
ERROR:slowmovie:argument -f/--file: File 'Citizen Kane.mp4' does not exist
The instructions in the README seem to suggest just putting the filename will play, perhaps a line explaining the path is required (or an example) might help less experienced Linux users like myself!
Hi, Firstly thanks for this Github, I'm really enjoying the results of your hard work. I just had one (for me) tricky issue. However, I have managed to work it out so take the below as a comment and something that might help other users.
I have a few .mp4 files in the Videos directory and they work if I specify the FILE full (or partial) path in the command, but fails to find the file if I only specify the FILE name.
The instructions in the README seem to suggest just putting the filename will play, perhaps a line explaining the path is required (or an example) might help less experienced Linux users like myself!