youtube-dl前端视频下载 - 使用python和flask?

问题描述 投票:0回答:1

如何通过youtube-dl下载youtube和其他网站视频和音频文件(前端下载 - WEB UI)

通过前端搜索和下载视频。

我写了一个脚本是python和flask -

    from flask import (
    Flask, Response,
    render_template,
    request,
    redirect,
    flash,
    url_for,
    send_file,
    session,
)
import subprocess
from ydl import get_media, verify, fetch_name
from zipper import zipping
import os
app = Flask(__name__)
app.secret_key = "supposed to be a secret"


@app.route("/return-file/") 
def return_file():

    import pdb
    #pdb.set_trace()

    num_choice = session.get("choice")
    filename = session.get("filename")
    url = session.get("url")

    if num_choice == 1:
        filename_formatted = filename + ".mp3"
        location = "media/Audio downloads/{}.mp3".format(session.get("id"))

    if num_choice == 2:
        #filename_formatted = filename + ".mp4"
        #cc = get_media(url, num_choice)
        print(url)
        print('==============================================================================')

        #"youtube-dl", "--get-url", url
        #subprocess.run(["youtube-dl", "--no-check-certificate", "--get-url", url])

        #subprocess.run(["youtube-dl", "--no-check-certificate", url])

        test = subprocess.run(["youtube-dl", "--no-check-certificate", "--get-filename", url])

        print(test)

        csv = '1,2,3\n4,5,6\n'
        return Response(
            csv, 
            mimetype="text/csv",
            headers={"Content-disposition":
                    "attachment; filename=test"})

        #return send_file('', attachment_filename="myplot.csv")

        print('==============================================================================')
        #subprocess.run(["youtube-dl", "--no-check-certificate", url])

        #location = "media/{}.mp4".format(session.get("id"))
        #if os.path.isdir(location):
            #print('True')


    if num_choice == 3 or num_choice == 4:
        filename_formatted = filename + ".zip"
        location = "media/{}.zip".format(session.get("id"))

    #return send_file(
        #location, attachment_filename=filename_formatted, as_attachment=True
    #)


@app.route("/", methods=["GET", "POST"])
def home_page():
    """
    Displaying homepage
    """

    title = "YDL | YouTube Downloader"

    if request.method == "POST":

        attempted_url = request.form["url"]
        attempted_choice = int(request.form["submit"])
        title = [attempted_url, attempted_choice]
        if attempted_url != "":
            if verify(attempted_url):

                result_id = get_media(attempted_url, attempted_choice)
                session["url"] = attempted_url
                session["id"] = result_id
                session["choice"] = attempted_choice
                filename = fetch_name(attempted_url)
                session["filename"] = filename
                # return render_template('material-life.html', title = "Success {}".format(title))
                # return render_template('material-life.html', title = result_id)
                return redirect(url_for("return_file"))
            else:
                return render_template(
                    "material-life.html", title="YDL | Doesn't belong to YouTube"
                )
        else:
            return render_template(
                "material-life.html", title="YDL | URL shouldn't be empty"
            )

    return render_template("material-life.html", title=title)


@app.errorhandler(404)
def page_not_found(error):
    """
    for anyone trying different links or searching for images within the server
    """
    return (
        render_template(
            "error_template.html",
            title="404 bud",
            message="Time to make the chimi-fuckin'-changas. ",
            subline="404, not there",
            image_location=url_for("static", filename="images/deadpool-funny.jpg"),
        ),
        404,
    )


@app.errorhandler(400)
def bad_request(error):
    """
    For handling situations where the server doesn't know what to do with the browser's request
    """
    return (
        render_template(
            "error_template.html",
            title="Aaaah ...",
            message="나는 이해하지 못한다.",
            subline="Yeah, the server couldn't understand what you asked for, Sorry",
            image_location=url_for("static", filename="images/simpson-gangam.jpg"),
        ),
        400,
    )


if __name__ == "__main__":

    app.run(debug=True)
  • 它的工作在控制台基础下载...但我想通过前端下载...没有保存 - 直接下载
python flask youtube-dl
1个回答
0
投票

你可以使用pytube模块,它取决于youtube-dl。您似乎正在构建一个应用程序,但使用视频的网址,您可以使用下面的单行程序下载视频:

from pytube import YouTube    
YouTube(video_url).streams.first().download(filename='file_name')
© www.soinside.com 2019 - 2024. All rights reserved.