bitwarden

This commit is contained in:
jaydee
2024-09-24 14:35:27 +02:00
parent 2e016e4d30
commit 8bd43bfdaf

View File

@@ -21,6 +21,7 @@ output = None
_DEV = "gopro9_1"
_SEQUENCES = []
_FLIP = False
_SOURCE_DIR = "/share/Photo/imported/"
for o, a in opts:
if o == "-h":
_ACTION = True
@@ -30,6 +31,8 @@ for o, a in opts:
_DAY_DIR = a
elif o in ("-f", "--flip"):
_FLIP = True
elif o in ("-r", "--source"):
_SOURCE_DIR = True
elif o in ("-s", "--sequence"):
a = a.split(",")
for s in a:
@@ -41,9 +44,9 @@ for o, a in opts:
_WIZZARD = True
#_SOURCE_DIR = "/media/nas/nas-photo/imported/"
_SOURCE_DIR = "/share/Photo/imported/"
_FULL_PATH = _SOURCE_DIR + "/" + _DEV + "/" + _DAY_DIR
_FULL_PATH = _SOURCE_DIR + "/" + _DEV + "/" + _DAY_DIR
print(_FULL_PATH)
video_seq = {}
if os.path.exists(_FULL_PATH):