fix paths fr

This commit is contained in:
Somdev Sangwan 2023-05-31 21:57:07 +05:30 committed by GitHub
parent 51664c6d71
commit 38fb60efca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ def detect_fps(input_path):
output = os.popen(f'ffprobe -v error -select_streams v -of default=noprint_wrappers=1:nokey=1 -show_entries stream=r_frame_rate "{input_path}"').read() output = os.popen(f'ffprobe -v error -select_streams v -of default=noprint_wrappers=1:nokey=1 -show_entries stream=r_frame_rate "{input_path}"').read()
if "/" in output: if "/" in output:
try: try:
return int(output.split("/")[0]) // int(output.split("/")[1]), output.removesuffix('\n') return int(output.split(os.sep)[0]) // int(output.split(os.sep)[1]), output.removesuffix('\n')
except: except:
pass pass
return 30, 30 return 30, 30