首页 > 其他分享 >短视频批量下载工具F2辅助Web界面

短视频批量下载工具F2辅助Web界面

时间:2025-01-17 11:45:31浏览次数:1  
标签:下载工具 Web F2 return log url background color template

安装好f2,保证终端可以直接f2运行,然后启动web就行:python f2web.py
f2web.py

import subprocess
import threading
import shlex
import os

app = Flask(__name__)

# 定义HTML模板,用户只需输入网址
HTML_TEMPLATE = '''
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>F2</title>
    <!-- 引入Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEJ5bJ6B3n1RACzRskJbgfeZ9bVmsmOeGVHXlz6bDe2f5w5jr5NNdjr5dKnAk" crossorigin="anonymous">
    <!-- 引入Animate.css 动画库 -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-image: url('https://source.unsplash.com/1920x1080/?nature,landscape');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            color: #fff;
        }

        .container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 100%;
            animation: fadeIn 1s ease-in-out;
        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
            font-size: 2rem;
        }

        .form-label {
            font-weight: bold;
            color: #333;
        }

        .form-check-label {
            font-size: 1rem;
            color: #333;
        }

        .form-control {
            border-radius: 5px;
            border: 1px solid #ccc;
            background-color: #f9f9f9;
            color: #333;
            width: 100%;
            height: 50px;
            font-size: 1rem;
            padding: 10px;
            box-sizing: border-box;
        }

        .btn {
            border-radius: 50px;
            padding: 10px 30px;
            width: 100%;
            transition: background-color 0.3s ease;
            background-color: #007bff;
            border: none;
            color: white;
        }

        .btn:hover {
            background-color: #0056b3;
        }

        .btn:active {
            transform: scale(0.98);
            transition: transform 0.2s;
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        .form-check-label, .form-control, .btn {
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
        }
    </style>
</head>
<body>
    <div class="container animate__animated animate__fadeInUp">
        <h1>F2 Gogogo!</h1>
        <form id="commandForm">
            <div class="mb-3">
                <label for="url" class="form-label">输入网址:</label>
                <br>
                <input type="text" class="form-control" id="url" placeholder="输入网址,可直接粘贴分享链接。" required>
            </div>
            <div class="mb-3">
            <br>
                <label class="form-label">选择类型:</label><br>
                <br>
                <div class="form-check">
                    <input class="form-check-input" type="radio" name="template" id="template1" value="template1" checked>
                    <label class="form-check-label" for="template1">
                        主页作品: `f2 dy -c app.yaml -M post`
                    </label>
                </div>
                <br>
                <div class="form-check">
                    <input class="form-check-input" type="radio" name="template" id="template2" value="template2">
                    <label class="form-check-label" for="template2">
                        喜欢作品: `f2 dy -c app.yaml -M like`
                    </label>
                </div>
            </div>
            <br>
            <button type="submit" class="btn">提交下载</button>
        </form>
    </div>

    <script>
        document.getElementById("commandForm").addEventListener("submit", async function(event) {
            event.preventDefault();
            let inputText = document.getElementById('url').value;

            const urlMatch = inputText.match(/https?:\/\/[^\s]+/);

            if (!urlMatch) {
                alert("请输入有效的网址");
                return;
            }

            const url = urlMatch[0];
            const template = document.querySelector('input[name="template"]:checked').value;

            // 检查 URL 是否已存在
            const checkResponse = await fetch('/check_url', {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json'
                },
                body: JSON.stringify({ url })
            });

            const checkResult = await checkResponse.json();
            if (checkResponse.ok && checkResult.exists) {
                const confirmExecute = confirm('URL 已存在,是否继续执行命令?');
                if (!confirmExecute) {
                    //alert('操作已取消');
                    return;
                }
            }

            const response = await fetch('/execute', {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json'
                },
                body: JSON.stringify({ url, template })
            });

            const result = await response.json();
            if (response.ok) {
                alert('命令提交成功,正在后台执行');
                document.getElementById('url').value = '';
            } else {
                alert(`错误: ${result.error}`);
            }
        });
    </script>
</body>
</html>
'''

@app.route('/')
def index():
    return render_template_string(HTML_TEMPLATE)

def remove_duplicates_from_log():
    """去重url.log文件中的URL"""
    if os.path.exists('url.log'):
        with open('url.log', 'r') as log_file:
            urls = log_file.readlines()

        # 去重并保持原始顺序
        unique_urls = list(dict.fromkeys(url.strip() for url in urls))

        with open('url.log', 'w') as log_file:
            log_file.write('\n'.join(unique_urls) + '\n')

def execute_command_in_background(url, template):
    command_templates = {
        'template1': f"f2 dy -c app.yaml -M post -i all -u {shlex.quote(url)}",
        'template2': f"f2 dy -c app.yaml -M like -i all -u {shlex.quote(url)}"
    }

    command_template = command_templates.get(template)
    if not command_template:
        print("无效的模板")
        return

    try:
        with open('url.log', 'a') as log_file:
            log_file.write(f"{url}\n")

        # 去重操作
        remove_duplicates_from_log()

        subprocess.run(command_template, shell=True, check=True)
    except subprocess.CalledProcessError as e:
        print(f"命令执行失败: {str(e)}")

@app.route('/check_url', methods=['POST'])
def check_url():
    data = request.json
    url = data.get('url')

    if not url:
        return jsonify({'error': 'URL 参数缺失'}), 400

    if os.path.exists('url.log'):
        with open('url.log', 'r') as log_file:
            if url in log_file.read():
                return jsonify({'exists': True})

    return jsonify({'exists': False})

@app.route('/execute', methods=['POST'])
def execute_command():
    data = request.json
    url = data.get('url')
    template = data.get('template')

    if url and template:
        threading.Thread(target=execute_command_in_background, args=(url, template)).start()
        return jsonify({'message': '命令提交成功,正在后台执行'})
    else:
        return jsonify({'error': '缺少必要的参数'}), 400

if __name__ == '__main__':
    app.run(debug=True, host='0.0.0.0', port=5000)

标签:下载工具,Web,F2,return,log,url,background,color,template
From: https://www.cnblogs.com/Nice2cu0o0/p/18676622

相关文章

  • 你在工作中有用到过websocket吗?用它来解决什么问题?
    是的,我在工作中用到过WebSocket。WebSocket是一种网络通信协议,允许服务器与客户端之间进行双向通信。在前端开发中,我使用WebSocket主要解决以下问题:实时数据更新:在需要实时数据更新的应用场景中,WebSocket非常有用。例如,在开发实时股票价格更新系统时,我使用WebSocket来实时接收......
  • 请问WebSql是HTML5的一个规范吗?
    WebSQL并不是HTML5的一个规范。尽管它常常与HTML5的技术栈一起被提及,但WebSQL本身是基于SQLite的一个独立规范,引入了一组使用SQL操作客户端数据库的API。这些API允许前端开发者在浏览器中创建、读取、更新和删除数据库中的数据,从而提供了一种在客户端存储和管理数据的机制。然而,......
  • WEB:使用 Semi Design 构建 React 的技术指南
    1、简述SemiDesign是由字节跳动开源的现代化React组件库,提供了丰富的UI组件,具有简洁美观、响应迅速等优点,适用于各种类型的前端项目。本篇博客将介绍如何在React项目中集成SemiDesign,展示常见的组件用法和几个应用场景。2、核心特点SemiDesign的设计目标是......
  • 说说你对移动端和web前端开发的主要区别是什么?
    移动端开发和Web前端开发的主要区别体现在以下几个方面:运行平台:Web前端开发主要指传统的PC端网页开发,页面主要是运行在PC端浏览器中。移动前端开发则专注于移动设备,如手机和平板,其页面主要在这些设备的浏览器或应用中运行。技术适配性:Web前端在某些场景下需要兼容老版......
  • 30分钟内搭建一个全能轻量级springboot 3.4 + 脚手架 <1> 5分钟快速创建一个springboot
    快速导航<1>5分钟快速创建一个springbootweb项目<2>5分钟集成好最新版本的开源swaggerui,并使用ui操作调用接口<3>5分钟集成好druid并使用druid自带监控工具监控sql请求<4>5分钟集成好mybatisplus并使用mybatisplusgenerator自动生成代码<5>5分钟集成好caffeine......
  • Web前端------HTML表格
    一.表格标签介绍表格,类似操作的软件excel一样,通过规范的行列方式展示数据的一种视图!        网页中(初级开发),对于这种规范的数据,使用表格标签最方便的;        实际开发(高级开发),大量的插件,可以直接生成好看的表格数据,反倒原始的表格标签使用频率降低<table><......
  • webpack5 从零搭建 vue3 项目
    目前vue3官网推荐的工具链已经是vite了,就算是要使用webpack甚至是webpack5,也可以直接使用vue-cli。然而之所以写这个,可以当是webpack5的一个学习文章。同时也是因为之前有个项目是在vue3刚出来的时候使用vue-cli(那是官网还是推荐使用webpack,以及但是得版本为webp......
  • 基于SSM实现的基于web的汽车售后服务管理系统的设计与实现+jsp源码+论文
    项目简介基于SSM实现的基于web的汽车售后服务管理系统的设计与实现+jsp源码+论文,主要功能如下:审核说明项目收集于互联网,经过我们仔细验证,可以正常运行;本项目属于学习项目,适合个人学习使用,不适合商用;精力有限,运行过程中若有小问题属正常现象,需要自行看源码进行简单的修......
  • Day10-后端Web实战——Mysql多表操作&员工列表查询(分页查询)
    目录1.多表关系1.1一对多1.1.1关系实现1.1.2外键约束1.2一对一1.3多对多1.4案例2.多表查询2.1概述2.1.1数据准备2.1.2介绍2.1.3分类2.2内连接2.3外连接2.4子查询2.4.1介绍2.4.2标量子查询2.4.3列子查询2.4.4行子查询2.4.5表子查询2.5案例3.员......
  • Day08-后端Web实战——JDBC&Mybatis
    目录前言1.JDBC1.1概述1.2快速入门1.3API详解1.3.1DriverManager1.3.1.1注册驱动1.3.1.2获取链接1.3.2Connection&Statement1.3.3ResultSet1.3.4PreparedStatement1.3.4.1SQL注入演示1.3.4.2SQL注入解决2.Mybatis基础2.1介绍2.2快速入门2.2.1准备......