File size: 4,792 Bytes
a8e9b84 98e44f0 a8e9b84 98e44f0 a8e9b84 98e44f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
import json
import subprocess
import re
from datetime import datetime, timedelta
def get_readable_time(seconds: int) -> str:
result = ""
(days, remainder) = divmod(seconds, 86400)
days = int(days)
if days != 0:
result += f"{days}d "
(hours, remainder) = divmod(remainder, 3600)
hours = int(hours)
if hours != 0:
result += f"{hours}h "
(minutes, seconds) = divmod(remainder, 60)
minutes = int(minutes)
if minutes != 0:
result += f"{minutes}m "
seconds = int(seconds)
result += f"{seconds}s "
return result.strip()
def convert_bytes(size: float) -> str:
"""humanize size"""
if not size:
return ""
power = 1024
t_n = 0
power_dict = {0: " ", 1: "Ki", 2: "Mi", 3: "Gi", 4: "Ti"}
while size > power:
size /= power
t_n += 1
return "{:.2f} {}B".format(size, power_dict[t_n])
async def int_to_alpha(user_id: int) -> str:
alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"]
text = ""
user_id = str(user_id)
for i in user_id:
text += alphabet[int(i)]
return text
async def alpha_to_int(user_id_alphabet: str) -> int:
alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"]
user_id = ""
for i in user_id_alphabet:
index = alphabet.index(i)
user_id += str(index)
user_id = int(user_id)
return user_id
def time_to_seconds(time):
stringt = str(time)
return sum(int(x) * 60**i for i, x in enumerate(reversed(stringt.split(":"))))
def seconds_to_min(seconds):
if seconds is not None:
seconds = int(seconds)
d, h, m, s = (
seconds // (3600 * 24),
seconds // 3600 % 24,
seconds % 3600 // 60,
seconds % 3600 % 60,
)
if d > 0:
return "{:02d}:{:02d}:{:02d}:{:02d}".format(d, h, m, s)
elif h > 0:
return "{:02d}:{:02d}:{:02d}".format(h, m, s)
elif m > 0:
return "{:02d}:{:02d}".format(m, s)
elif s > 0:
return "00:{:02d}".format(s)
return "-"
def speed_converter(seconds, speed):
if str(speed) == str("0.5"):
seconds = seconds * 2
if str(speed) == str("0.75"):
seconds = seconds + ((50 * seconds) // 100)
if str(speed) == str("1.5"):
seconds = seconds - ((25 * seconds) // 100)
if str(speed) == str("2.0"):
seconds = seconds - ((50 * seconds) // 100)
collect = seconds
if seconds is not None:
seconds = int(seconds)
d, h, m, s = (
seconds // (3600 * 24),
seconds // 3600 % 24,
seconds % 3600 // 60,
seconds % 3600 % 60,
)
if d > 0:
convert = "{:02d}:{:02d}:{:02d}:{:02d}".format(d, h, m, s)
return convert, collect
elif h > 0:
convert = "{:02d}:{:02d}:{:02d}".format(h, m, s)
return convert, collect
elif m > 0:
convert = "{:02d}:{:02d}".format(m, s)
return convert, collect
elif s > 0:
convert = "00:{:02d}".format(s)
return convert, collect
return "-"
def check_duration(file_path):
command = [
"ffprobe",
"-loglevel",
"quiet",
"-print_format",
"json",
"-show_format",
"-show_streams",
file_path,
]
pipe = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
out, err = pipe.communicate()
_json = json.loads(out)
if "format" in _json:
if "duration" in _json["format"]:
return float(_json["format"]["duration"])
if "streams" in _json:
for s in _json["streams"]:
if "duration" in s:
return float(s["duration"])
return "Unknown"
formats = [
"webm",
"mkv",
"flv",
"vob",
"ogv",
"ogg",
"rrc",
"gifv",
"mng",
"mov",
"avi",
"qt",
"wmv",
"yuv",
"rm",
"asf",
"amv",
"mp4",
"m4p",
"m4v",
"mpg",
"mp2",
"mpeg",
"mpe",
"mpv",
"m4v",
"svi",
"3gp",
"3g2",
"mxf",
"roq",
"nsv",
"flv",
"f4v",
"f4p",
"f4a",
"f4b",
]
def parse_time(time_str: str) -> timedelta:
matches = re.match(r"(\d+)([d|h|m|s])", time_str)
if matches:
quantity, unit = matches.groups()
quantity = int(quantity)
if unit == 'd':
return timedelta(days=quantity)
elif unit == 'h':
return timedelta(hours=quantity)
elif unit == 'm':
return timedelta(minutes=quantity)
elif unit == 's':
return timedelta(seconds=quantity)
return timedelta(minutes=0) # Default or error case
|