-
Notifications
You must be signed in to change notification settings - Fork 0
/
appyoutube.py
420 lines (403 loc) · 19.4 KB
/
appyoutube.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
from flask import Flask, redirect, render_template, request
from pytube import YouTube, Playlist, Channel
from instalooter.looters import ProfileLooter
from moviepy.editor import VideoFileClip
import os
import zipfile
appyoutube= Flask(__name__, template_folder="Plantillas", static_folder="Archivos")
base=os.getcwd()
descarga_carpeta=os.path.join(base, "Archivos", "Descargas")
descargaIG_carpeta=os.path.join(base, "Archivos", "DescargasIG")
carpeta_zip=os.path.join(base, "Archivos", "Descargas", "Playlist")
channel_carpeta=os.path.join(base, "Archivos", "Descargas", "Channels")
gif_carpeta=os.path.join(base, "Archivos", "Descargas", "Gifs")
archivo2=""
archivo4=""
archivos2=""
archivorarDL3=""
@appyoutube.errorhandler(404)
def error404(error):
mensaje= "Ah Ocurrido Un Error 404. Pagina no encontrada. Por Favor regresa al sitio de inicio e intenta de nuevo"
return render_template("Error.html", message1=mensaje) #Pagina no Encontrada
@appyoutube.errorhandler(405)
def error405(error):
mensaje= "Error 405. Metodo no encontrado"
return render_template("Error.html", message1=mensaje)
@appyoutube.errorhandler(500)
def error500(error):
mensaje= "Error Interno 500. Error ocurrido en el programa"
return render_template("Error.html", message1=mensaje)
@appyoutube.route("/", methods=["GET", "POST"])
def inicio():
global archivo2
global enlace
if request.method=="POST":
sitio1=request.form["link"]
if sitio1.startswith("https://youtu.be/"):
sitio2=sitio1.split("/")[-1]
else:
sitio2=sitio1.split("=")[-1]
enlace=request.form["link"]
if enlace!="":
video= YouTube(enlace)
calidad=request.form["res"]
if calidad=="audio":
video=video.streams.get_audio_only()
mensaje="Audio Descargado"
archivo=video.download(descarga_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
return redirect("/"+sitio2)
elif calidad=="alta":
video= video.streams.get_highest_resolution()
mensaje= "Video Descargado"
archivo=video.download(descarga_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
return redirect("/"+sitio2)
elif calidad=="baja":
video= video.streams.get_lowest_resolution()
mensaje= "Video Descargado"
archivo=video.download(descarga_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
return redirect("/"+sitio2)
else:
video= video.streams.get_by_resolution(calidad)
mensaje= "Video Descargado"
archivo=video.download(descarga_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
return redirect("/"+sitio2)
else:
mensaje= "El campo esta vacio o no has seleccionado una calidad de video"
return render_template("Inicio.html", message=mensaje)
else:
return render_template("Inicio.html")
@appyoutube.route("/playlist", methods=["GET", "POST"])
def inicio2():
global enlace2
global archivos2
global archivorarDL3
if request.method=="POST":
sitio1=request.form["link"]
sitio3=sitio1.split("=")[-1]
enlace2=request.form["link"]
if enlace2!="":
ListaVideos= Playlist(enlace2)
calidad=request.form["res"]
if calidad=="audio":
for video in ListaVideos.videos:
video.streams.get_audio_only().download(carpeta_zip)
yt = YouTube(ListaVideos.video_urls[0]).thumbnail_url
archivos2=yt
nombrezip= ListaVideos.title+".zip"
ruta=carpeta_zip+"/"+nombrezip
archivorar= zipfile.ZipFile(ruta, "w")
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
archivorar.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), carpeta_zip), compress_type=zipfile.ZIP_DEFLATED)
archivorarDL=archivorar.filename
archivorarDL2=archivorarDL.split("/app/")[-1]
archivorarDL3=archivorarDL2
archivorar.close()
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/playlist"+sitio3)
elif calidad=="alta":
for video in ListaVideos.videos:
video.streams.get_highest_resolution().download(carpeta_zip)
yt = YouTube(ListaVideos.video_urls[0]).thumbnail_url
archivos2=yt
nombrezip= ListaVideos.title+".zip"
ruta=carpeta_zip+"/"+nombrezip
archivorar= zipfile.ZipFile(ruta, "w")
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
archivorar.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), carpeta_zip), compress_type=zipfile.ZIP_DEFLATED)
archivorarDL=archivorar.filename
archivorarDL2=archivorarDL.split("/app/")[-1]
archivorarDL3=archivorarDL2
archivorar.close()
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/playlist"+sitio3)
elif calidad=="baja":
for video in ListaVideos.videos:
video.streams.get_lowest_resolution().download(carpeta_zip)
yt = YouTube(ListaVideos.video_urls[0]).thumbnail_url
archivos2=yt
nombrezip= ListaVideos.title+".zip"
ruta=carpeta_zip+"/"+nombrezip
archivorar= zipfile.ZipFile(ruta, "w")
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
archivorar.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), carpeta_zip), compress_type=zipfile.ZIP_DEFLATED)
archivorarDL=archivorar.filename
archivorarDL2=archivorarDL.split("/app/")[-1]
archivorarDL3=archivorarDL2
archivorar.close()
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/playlist"+sitio3)
else:
for video in ListaVideos.videos:
video.streams.get_by_resolution(calidad).download(carpeta_zip)
yt = YouTube(ListaVideos.video_urls[0]).thumbnail_url
archivos2=yt
nombrezip= ListaVideos.title+".zip"
ruta=carpeta_zip+"/"+nombrezip
archivorar= zipfile.ZipFile(ruta, "w")
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
archivorar.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), carpeta_zip), compress_type=zipfile.ZIP_DEFLATED)
archivorarDL=archivorar.filename
archivorarDL2=archivorarDL.split("/app/")[-1]
archivorarDL3=archivorarDL2
archivorar.close()
for folder, subfolders, files in os.walk(carpeta_zip):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/playlist"+sitio3)
else:
mensaje= "La Playlist es incorrecta o el campo esta vacio"
return render_template("Inicio2.html", message=mensaje)
else:
return render_template("Inicio2.html")
@appyoutube.route("/channel", methods=["GET", "POST"])
def inicio3():
global enlace3
global miniatura
global archivozipDL3
if request.method=="POST":
sitio1= request.form["link"]
if sitio1.startswith("https://youtube.com/user/") or sitio1.startswith("https://youtube.com/c/"):
sitio4= sitio1.split("/")[-1]
else:
sitio4= sitio1.split("/")
sitio4_1= sitio4[4]
sitio4= sitio4_1
enlace3=request.form["link"]
if enlace3!="":
Canal= Channel(enlace3)
calidad=request.form["res"]
if calidad=="audio":
for video in Canal.videos:
video.streams.get_audio_only().download(channel_carpeta)
ytcanal= YouTube(Canal.video_urls[0]).thumbnail_url
miniatura=ytcanal
nombrezipfile= Canal.channel_name+".zip"
ruta2= channel_carpeta+"/"+nombrezipfile
archivozip= zipfile.ZipFile(ruta2, "w")
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
archivozip.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), channel_carpeta), compress_type=zipfile.ZIP_DEFLATED)
archivozipDL=archivozip.filename
archivozipDL2=archivozipDL.split("/app/")[-1]
archivozipDL3=archivozipDL2
archivozip.close()
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/channel"+sitio4)
elif calidad=="alta":
for video in Canal.videos:
video.streams.get_highest_resolution().download(channel_carpeta)
ytcanal= YouTube(Canal.video_urls[0]).thumbnail_url
miniatura=ytcanal
nombrezipfile= Canal.channel_name+".zip"
ruta2= channel_carpeta+"/"+nombrezipfile
archivozip= zipfile.ZipFile(ruta2, "w")
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
archivozip.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), channel_carpeta), compress_type=zipfile.ZIP_DEFLATED)
archivozipDL=archivozip.filename
archivozipDL2=archivozipDL.split("/app/")[-1]
archivozipDL3=archivozipDL2
archivozip.close()
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/channel"+sitio4)
elif calidad=="baja":
for video in Canal.videos:
video.streams.get_lowest_resolution().download(channel_carpeta)
ytcanal= YouTube(Canal.video_urls[0]).thumbnail_url
miniatura=ytcanal
nombrezipfile= Canal.channel_name+".zip"
ruta2= channel_carpeta+"/"+nombrezipfile
archivozip= zipfile.ZipFile(ruta2, "w")
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
archivozip.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), channel_carpeta), compress_type=zipfile.ZIP_DEFLATED)
archivozipDL=archivozip.filename
archivozipDL2=archivozipDL.split("/app/")[-1]
archivozipDL3=archivozipDL2
archivozip.close()
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/channel"+sitio4)
else:
for video in Canal.videos:
video.streams.get_by_resolution(calidad).download(channel_carpeta)
ytcanal= YouTube(Canal.video_urls[0]).thumbnail_url
miniatura=ytcanal
nombrezipfile= Canal.channel_name+".zip"
ruta2= channel_carpeta+"/"+nombrezipfile
archivozip= zipfile.ZipFile(ruta2, "w")
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
archivozip.write(os.path.join(folder, file), os.path.relpath(os.path.join(folder, file), channel_carpeta), compress_type=zipfile.ZIP_DEFLATED)
archivozipDL=archivozip.filename
archivozipDL2=archivozipDL.split("/app/")[-1]
archivozipDL3=archivozipDL2
archivozip.close()
for folder, subfolder, files in os.walk(channel_carpeta):
for file in files:
if file.endswith(".mp4"):
os.remove(folder+"/"+file)
return redirect("/channel"+sitio4)
else:
mensaje= "El canal es incorrecto o el campo esta vacio"
return render_template("Inicio3.html", message=mensaje)
else:
return render_template("Inicio3.html")
@appyoutube.route("/gif", methods=["GET", "POST"])
def inicio4():
global archivo2
global archivo4
global enlace4
if request.method=="POST":
sitio1=request.form["link"]
if sitio1.startswith("https://youtu.be/"):
sitio5=sitio1.split("/")[-1]
else:
sitio5=sitio1.split("=")[-1]
enlace4=request.form["link"]
if enlace4!="":
video= YouTube(enlace4)
calidad=request.form["res"]
if calidad=="audio":
video=video.streams.get_audio_only()
mensaje="Audio Descargado"
archivo=video.download(gif_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
archivo4 = GifConverter(archivo2)
return redirect("/gif"+sitio5)
elif calidad=="alta":
video= video.streams.get_highest_resolution()
mensaje= "Video Descargado"
archivo=video.download(gif_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
archivo4 = GifConverter(archivo2)
return redirect("/gif"+sitio5)
elif calidad=="baja":
video= video.streams.get_lowest_resolution()
mensaje= "Video Descargado"
archivo=video.download(gif_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo2=archivo1
archivo4 = GifConverter(archivo2)
return redirect("/gif"+sitio5)
else:
video= video.streams.get_by_resolution(calidad)
mensaje= "Video Descargado"
archivo=video.download(gif_carpeta)
archivo1=archivo.split("/app/")[-1]
archivo4 = GifConverter(archivo2)
return redirect("/gif"+sitio5)
else:
mensaje= "El campo esta vacio o no has seleccionado una calidad de video"
return render_template("Inicio4.html", message=mensaje)
else:
return render_template("Inicio4.html")
def GifConverter(video):
videoClip = VideoFileClip(video)
videoClip2 = videoClip.write_gif("VideoGif.gif")
return videoClip2
@appyoutube.route("/twdownloader", methods=["GET", "POST"])
def inicioTW():
if request.method == "POST":
volver=request.form
return redirect("/twdownloader")
else:
return render_template("InicioTW.html")
@appyoutube.route("/igdownloader", methods=["GET", "POST"])
def inicioIG():
if request.method == "POST":
linkIG=request.form["busqueda"]
if (linkIG != ""):
link = linkIG
os.system(f"instalooter post {link} ~/{descargaIG_carpeta}")
return redirect("/igdownloader")
else:
return render_template("InicioIG.html")
@appyoutube.route("/igdownloader/user", methods=["GET", "POST"])
def inicioIG2():
if request.method == "POST":
userIG=request.form["busqueda2"]
if (userIG != ""):
user = userIG
looter = ProfileLooter(user)
looter.download('~/Pictures', media_count=1)
return redirect("/igdownloader/user")
else:
return render_template("InicioIG2.html")
@appyoutube.route("/fbdownloader", methods=["GET", "POST"])
def inicioFB():
if request.method == "POST":
volver=request.form
return redirect("/fbdownloader")
else:
return render_template("InicioFB.html")
@appyoutube.route("/<sitio2>", methods=["GET", "POST"])
def Descarga(sitio2=None):
if request.method == "POST":
volver=request.form
return redirect("/")
else:
return render_template("Youtube.html", archivo3=archivo2)
@appyoutube.route("/playlist<sitio3>", methods=["GET", "POST"])
def Descarga2(sitio3=None):
if request.method == "POST":
volver=request.form
return redirect("/playlist")
else:
return render_template("Youtube2.html", archivosimg=archivos2, archivorar=archivorarDL3)
@appyoutube.route("/channel<sitio4>", methods=["GET", "POST"])
def Descarga3(sitio4=None):
if request.method == "POST":
volver=request.form
return redirect("/channel")
else:
return render_template("Youtube3.html", imagen=miniatura, archivozip=archivozipDL3)
@appyoutube.route("/gif<sitio5>", methods=["GET", "POST"])
def Descarga4(sitio5=None):
if request.method == "POST":
volver=request.form
return redirect("/gif")
else:
return render_template("Gif.html", imagengif=archivo4, archivogif=archivo4)
if __name__ == "__main__":
appyoutube.run(debug=False)