import random
def generate_random_timestamps(video_duration, num_timestamps):
"""Генерирует случайные тайм-коды для видео.
Args:
video_duration: Длительность видео в секундах.
num_timestamps: Количество тайм-кодов.
Returns:
Список случайных тайм-кодов в формате "00:00:00".
"""
timestamps = []
for _ in range(num_timestamps):
timestamp = random.uniform(0, video_duration)
m, s = divmod(timestamp, 60)
h, m = divmod(m, 60)
timestamps.append(f"{int(h):02d}:{int(m):02d}:{int(s):02d}")
return timestamps
# Пример использования
video_duration = 3600 # 1 час
num_timestamps = 10
timestamps = generate_random_timestamps(video_duration, num_timestamps)
print(timestamps)