When using the PiCamera I used to save videos like this:
cam.start_recording('video.h264')
Now I want the videos to be saved in a specific place. I created a directory called 'videos' and prefixed the path with the folder name but I got the mentioned error. Now I tried using the os package to get an absolute path:
When using the PiCamera I used to save videos like this:
Now I want the videos to be saved in a specific place. I created a directory called 'videos' and prefixed the path with the folder name but I got the mentioned error. Now I tried using the os package to get an absolute path:
and I get the same error. My script is located in the cam-test folder. Trying to save other files like that seems to work fine, what am I missing?
Best regards and thanks in advance