-
Notifications
You must be signed in to change notification settings - Fork 106
/
video.py
196 lines (171 loc) · 6.92 KB
/
video.py
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
import requests
import aria2p
from datetime import datetime
from status import format_progress_bar
import asyncio
import os, time
import logging
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton
aria2 = aria2p.API(
aria2p.Client(
host="http://localhost",
port=6800,
secret=""
)
)
options = {
"max-tries": "50",
"retry-wait": "3",
"continue": "true"
}
aria2.set_global_options(options)
async def download_video(url, reply_msg, user_mention, user_id):
response = requests.get(f"https://teraboxvideodownloader.nepcoderdevs.workers.dev/?url={url}")
response.raise_for_status()
data = response.json()
resolutions = data["response"][0]["resolutions"]
fast_download_link = resolutions["Fast Download"]
hd_download_link = resolutions["HD Video"]
thumbnail_url = data["response"][0]["thumbnail"]
video_title = data["response"][0]["title"]
try:
download = aria2.add_uris([fast_download_link])
start_time = datetime.now()
while not download.is_complete:
download.update()
percentage = download.progress
done = download.completed_length
total_size = download.total_length
speed = download.download_speed
eta = download.eta
elapsed_time_seconds = (datetime.now() - start_time).total_seconds()
progress_text = format_progress_bar(
filename=video_title,
percentage=percentage,
done=done,
total_size=total_size,
status="Downloading",
eta=eta,
speed=speed,
elapsed=elapsed_time_seconds,
user_mention=user_mention,
user_id=user_id,
aria2p_gid=download.gid
)
await reply_msg.edit_text(progress_text)
await asyncio.sleep(2)
if download.is_complete:
file_path = download.files[0].path
thumbnail_path = "thumbnail.jpg"
thumbnail_response = requests.get(thumbnail_url)
with open(thumbnail_path, "wb") as thumb_file:
thumb_file.write(thumbnail_response.content)
await reply_msg.edit_text("ᴜᴘʟᴏᴀᴅɪɴɢ...")
return file_path, thumbnail_path, video_title
except Exception as e:
logging.error(f"Error handling message: {e}")
buttons = [
[InlineKeyboardButton("🚀 HD Video", url=hd_download_link)],
[InlineKeyboardButton("⚡ Fast Download", url=fast_download_link)]
]
reply_markup = InlineKeyboardMarkup(buttons)
await reply_msg.reply_text(
"Fast Download Link For this Video is Broken, Download manually using the Link Below.",
reply_markup=reply_markup
)
return None, None, None
# async def download_video(url, reply_msg, user_mention, user_id):
# response = requests.get(f"https://teraboxvideodownloader.nepcoderdevs.workers.dev/?url={url}")
# response.raise_for_status()
# data = response.json()
# resolutions = data["response"][0]["resolutions"]
# fast_download_link = resolutions["Fast Download"]
# hd_download_link = resolutions["HD Video"]
# thumbnail_url = data["response"][0]["thumbnail"]
# video_title = data["response"][0]["title"]
# download = aria2.add_uris([fast_download_link])
# start_time = datetime.now()
# while not download.is_complete:
# download.update()
# percentage = download.progress
# done = download.completed_length
# total_size = download.total_length
# speed = download.download_speed
# eta = download.eta
# elapsed_time_seconds = (datetime.now() - start_time).total_seconds()
# progress_text = format_progress_bar(
# filename=video_title,
# percentage=percentage,
# done=done,
# total_size=total_size,
# status="Downloading",
# eta=eta,
# speed=speed,
# elapsed=elapsed_time_seconds,
# user_mention=user_mention,
# user_id=user_id,
# aria2p_gid=download.gid
# )
# await reply_msg.edit_text(progress_text)
# await asyncio.sleep(2)
# if download.is_complete:
# file_path = download.files[0].path
# thumbnail_path = "thumbnail.jpg"
# thumbnail_response = requests.get(thumbnail_url)
# with open(thumbnail_path, "wb") as thumb_file:
# thumb_file.write(thumbnail_response.content)
# await reply_msg.edit_text("ᴜᴘʟᴏᴀᴅɪɴɢ...")
# return file_path, thumbnail_path, video_title
# else:
# return markup
async def upload_video(client, file_path, thumbnail_path, video_title, reply_msg, collection_channel_id, user_mention, user_id, message):
file_size = os.path.getsize(file_path)
uploaded = 0
start_time = datetime.now()
last_update_time = time.time()
async def progress(current, total):
nonlocal uploaded, last_update_time
uploaded = current
percentage = (current / total) * 100
elapsed_time_seconds = (datetime.now() - start_time).total_seconds()
if time.time() - last_update_time > 2:
progress_text = format_progress_bar(
filename=video_title,
percentage=percentage,
done=current,
total_size=total,
status="Uploading",
eta=(total - current) / (current / elapsed_time_seconds) if current > 0 else 0,
speed=current / elapsed_time_seconds if current > 0 else 0,
elapsed=elapsed_time_seconds,
user_mention=user_mention,
user_id=user_id,
aria2p_gid=""
)
try:
await reply_msg.edit_text(progress_text)
last_update_time = time.time()
except Exception as e:
logging.warning(f"Error updating progress message: {e}")
with open(file_path, 'rb') as file:
collection_message = await client.send_video(
chat_id=collection_channel_id,
video=file,
caption=f"✨ {video_title}\n👤 ʟᴇᴇᴄʜᴇᴅ ʙʏ : {user_mention}\n📥 ᴜsᴇʀ ʟɪɴᴋ: tg://user?id={user_id}",
thumb=thumbnail_path,
progress=progress
)
await client.copy_message(
chat_id=message.chat.id,
from_chat_id=collection_channel_id,
message_id=collection_message.id
)
await asyncio.sleep(1)
await message.delete()
await reply_msg.delete()
sticker_message = await message.reply_sticker("CAACAgIAAxkBAAEZdwRmJhCNfFRnXwR_lVKU1L9F3qzbtAAC4gUAAj-VzApzZV-v3phk4DQE")
os.remove(file_path)
os.remove(thumbnail_path)
await asyncio.sleep(5)
await sticker_message.delete()
return collection_message.id