Page 1 of 1

Change the path for video recordings?

Posted: Sat Jun 01, 2019 6:39 pm
by vonHelle
Is it possible to change the path for the video recordings in S.L.P. image?
I have a 1TB mSata SSD module mounted and I’d like the recordings to be stored there directly.

Re: Change the path for video recordings?

Posted: Sun Jun 02, 2019 10:24 am
by Realizator
Yes, you can.
Our start script is here:
/opt/StereoPi/run.sh
In this script we mount partition for video as a /media.

Code: Select all

sudo mount /dev/mmcblk0p3 /media > /dev/null 2>&1
So you can change mount rule according to your SSD name.

Please also check our FAT32 format logic in this script. You may comment format commands or change them according to your needs.

Re: Change the path for video recordings?

Posted: Sun Jun 02, 2019 10:52 am
by vonHelle
Great! Thank you very much!