I was trying to use this script with my GoPro Hero 12 Black in "narrow" field of view mode, but couldn't get it to work. After digging around, I found out that the integer that should be passed in the HTTPS request for narrow is 2, but the value being passed in the script is 6.
The script is as follows:
elif [[ ${GOPRO_FOV} == "narrow" ]]; then GOPRO_FOV_ID=6
It should be:
elif [[ ${GOPRO_FOV} == "narrow" ]]; then GOPRO_FOV_ID=2
This part is line 112-113.
P.s.: Making this change on my end does make everything work fine.
I was trying to use this script with my GoPro Hero 12 Black in "narrow" field of view mode, but couldn't get it to work. After digging around, I found out that the integer that should be passed in the HTTPS request for narrow is 2, but the value being passed in the script is 6. The script is as follows:
elif [[ ${GOPRO_FOV} == "narrow" ]]; then GOPRO_FOV_ID=6
It should be:elif [[ ${GOPRO_FOV} == "narrow" ]]; then GOPRO_FOV_ID=2
This part is line 112-113.P.s.: Making this change on my end does make everything work fine.