mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-07 20:15:24 +00:00
33 lines
859 B
Python
33 lines
859 B
Python
# 31.01.24
|
|
|
|
# Class
|
|
from Src.Util.console import console
|
|
|
|
# Import
|
|
import ffmpeg
|
|
|
|
# Variable
|
|
|
|
|
|
# [ func ]
|
|
def get_video_duration(file_path):
|
|
try:
|
|
probe = ffmpeg.probe(file_path)
|
|
duration = float(probe['format']['duration'])
|
|
return duration
|
|
except ffmpeg.Error as e:
|
|
print(f"Error: {e.stderr}")
|
|
return None
|
|
|
|
def format_duration(seconds):
|
|
hours, remainder = divmod(seconds, 3600)
|
|
minutes, seconds = divmod(remainder, 60)
|
|
return int(hours), int(minutes), int(seconds)
|
|
|
|
def print_duration_table(file_path):
|
|
video_duration = get_video_duration(file_path)
|
|
|
|
if video_duration is not None:
|
|
hours, minutes, seconds = format_duration(video_duration)
|
|
console.log(f"[cyan]Info [green]'{file_path}': [purple]{int(hours)}[red]h [purple]{int(minutes)}[red]m [purple]{int(seconds)}[red]s")
|