You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "${TAR}"=="NO" ]] && [[ -z"${CAMERA_CARD_TYPE}" ]] ;then
CAMERA_CARD_TYPE="GENERAL"
_report -b "Camera card type not identified!"
echo
printf"Select a strategy:"
echo
PS3="Selection: "
selectSTRATEGYin"1. Create AIP: concatenate video files and restructure metadata directories""2. Tar: Compress camera files and folders into a tarball""3. Both: Create AIP and also tar original package (produces two packages)""quit"
do
if [[ "${STRATEGY}"=="1. Create AIP: concatenate video files and restructure metadata directories" ]] ;then
TAR="NO"
AIP="YES"
elif [[ "${STRATEGY}"=="2. Tar: Compress camera files and folders into a tarball" ]] ;then
TAR="YES"
AIP="NO"
elif [[ "${STRATEGY}"=="3. Both: Create AIP and also tar original package (produces two packages)" ]] ;then
TAR="YES"
AIP="YES"
fi
if [[ "${STRATEGY}"=="quit" ]] ;thenecho"Bye"&&exit 0 ;fi
break
done
fi
OK if I remove this part and simply proceed with the overall TAR/AIP settings?
The text was updated successfully, but these errors were encountered:
I can use GENERAL as the fallback for an unidentified card. I was thinking, if the card is GENERAL, then we could find the most popular video extension in the card and just process those files.
That sounds good. So the TAR setting will just be an option. If no video files can be found/identified, we just logged it and get human interventions...
If the camera card type isn't identified then the camera cards script deviates from its usual behavior and adds this interview:
nmaahcmm/camera_cards
Lines 418 to 440 in 76946ca
OK if I remove this part and simply proceed with the overall TAR/AIP settings?
The text was updated successfully, but these errors were encountered: