bitwarden

This commit is contained in:
jaydee
2024-09-26 22:50:09 +02:00
parent f0b2cdbf61
commit 1d46507111

View File

@@ -9,6 +9,8 @@ import json
import getopt import getopt
from ffmpeg_progress_yield import FfmpegProgress from ffmpeg_progress_yield import FfmpegProgress
from tqdm import tqdm from tqdm import tqdm
import filedate
if sys.platform == "linux" or sys.platform == "linux2": if sys.platform == "linux" or sys.platform == "linux2":
# linux # linux
@@ -87,6 +89,16 @@ if _ACTION == "flip":
myCmd = [ myCmd = [
"/opt/ffmpeg/ffmpeg", "-f", "-i", _FILE, "-c", "copy", "-metadata:s:v:0", "rotate=180", "-y", export_name "/opt/ffmpeg/ffmpeg", "-f", "-i", _FILE, "-c", "copy", "-metadata:s:v:0", "rotate=180", "-y", export_name
] ]
Path = "~/Documents/File.txt"
# filedate.File(Path).set(
# created = "1st February 2003, 12:30",
# modified = "3:00 PM, 04 May 2009",
# accessed = "08/07/2014 18:30:45"
# )
print(filedate.File(Path).get())
print(_FULL_PATH) print(_FULL_PATH)
print(myCmd) print(myCmd)
os.chdir(_FULL_PATH) os.chdir(_FULL_PATH)