1 Commits

Author SHA1 Message Date
6949d4cecf codecVis: allow whitespace in file path 2023-01-01 19:02:56 +01:00
4 changed files with 4 additions and 7 deletions

View File

@ -9,7 +9,4 @@ setup(
"checkMetadata = checkMetadata.__main__:main" "checkMetadata = checkMetadata.__main__:main"
] ]
}, },
install_requires=[ )
'tqdm>=4.62.3'
]
)

View File

@ -10,7 +10,6 @@ import os
import sys import sys
import time import time
import subprocess import subprocess
import shlex
import shutil import shutil
import glob import glob
import PIL import PIL
@ -50,9 +49,10 @@ def get_codec(filename):
return str(result.stdout.decode("utf-8")).rstrip("\n") return str(result.stdout.decode("utf-8")).rstrip("\n")
def extract_frame(video_file, time_offset, output_file): def extract_frame(video_file, time_offset, output_file):
cmd = "ffmpeg -y -ss " + time.strftime('%H:%M:%S', time.gmtime(time_offset)) + ".00 -i " + str(video_file) + " -frames:v 1 " + str(output_file) cmd = ["ffmpeg", "-y", "-ss", time.strftime('%H:%M:%S', time.gmtime(time_offset)) + ".00",
"-i", str(video_file), "-frames:v", "1", str(output_file)]
devnull = open(os.devnull, 'w') devnull = open(os.devnull, 'w')
subprocess.call(shlex.split(cmd),stdout=devnull, stderr=devnull) subprocess.call(cmd, stdout=devnull, stderr=devnull)
def get_font_path(): def get_font_path():
path = "/usr/share/fonts" path = "/usr/share/fonts"