-
Please, forgive my noobness. I did search in the discussions for this and couldn't find an answer. How do I set up so the camera knows where to store my videos? After changing that setting to true, what else do I have to do? Thanks a lot. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
As far as I'm aware, the If you want the recordings to go directly to your samba server, you could try enabling this option and then mounting your samba/cifs share over this path either manually (Eg. |
Beta Was this translation helpful? Give feedback.
-
For reference I actually do the opposite. |
Beta Was this translation helpful? Give feedback.
-
Heres what the mp4write function does: Normally, the camera's factory firmware does this when recording:
the process of moving the video file from What mp4write does, is this:
with this function, we avoid any issues with camera performance. The latest wyze firmware has integrated this fix (don't upgrade if you want rtsp) hope this clears it up. |
Beta Was this translation helpful? Give feedback.
As far as I'm aware, the
ENABLE_MP4_WRITE
option only enables mp4 recordings to the SD card only (in/media/mmc/record/...
).If you want the recordings to go directly to your samba server, you could try enabling this option and then mounting your samba/cifs share over this path either manually (Eg.
mount -t cifs -o username=x,password=y,vers=2.1 //$smb-server/$surveillance-share /media/mmc/record
) or with a fstab entry (eg.//$smb-server/$surveillance-share /media/mmc/record cifs username=x,password=y,vers=2.1 0 0
).