
await client.send_file(
channel_username,
file_to_upload,
progress_callback=progress_callback,
supports_streaming=True,
)
await client.send_file(
channel_username,
file_to_upload,
progress_callback=progress_callback,
supports_streaming=True,
# Явно указываем атрибуты видео
attributes=[
DocumentAttributeVideo(
duration=duration, # длительность в секундах (int)
w=width, # ширина в пикселях
h=height, # высота в пикселях
supports_streaming=True,
)
],
thumb=thumbnail_path, # путь к превью
)