py 多线程 m3u8 转mp4 过滤广告,结合ffmpeg使用

2024-09-01 08:44

本文主要是介绍py 多线程 m3u8 转mp4 过滤广告,结合ffmpeg使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

python代码:

import csv
import os
import subprocess
from concurrent.futures import ThreadPoolExecutor, as_completed
from urllib.parse import urljoin
import sys
import requestsdef resource_path(relative_path):"""获取资源文件的绝对路径,兼容PyInstaller打包后的环境"""try:base_path = sys._MEIPASSexcept AttributeError:base_path = os.path.abspath(".")return os.path.join(base_path, relative_path)def process_csv(csv_file, output_dir, begin_num, max_workers=8):csv_file = resource_path(csv_file)with open(csv_file, 'r', encoding='utf-8') as file:reader = csv.reader(file)next(reader)  # 跳过表头with ThreadPoolExecutor(max_workers=max_workers) as executor:futures = []try:for index, row in enumerate(reader, start=1):if index < begin_num:continueprint(f"Processing row {index}...")title, _, m3u8_url = rowbase_name = f"{index}.m3u8"cleaned_m3u8_file_name = f"{index}_cleaned.m3u8"# 提交任务到线程池future = executor.submit(download_and_process_m3u8, m3u8_url, output_dir, base_name,cleaned_m3u8_file_name, title, index)futures.append(future)# 等待所有线程完成for future in as_completed(futures):try:future.result()except Exception as e:print(f"Task generated an exception: {e}")except KeyboardInterrupt:print("用户中断,正在取消所有任务...")for future in futures:future.cancel()executor.shutdown(wait=False)sys.exit(1)def download_and_process_m3u8(m3u8_url, output_dir, m3u8_file_name, cleaned_m3u8_file_name, title, index):m3u8_content = requests.get(m3u8_url).textprint(f"Downloaded m3u8 file from {m3u8_url}, content: {m3u8_content}")m3u8_file_path = os.path.join(output_dir, m3u8_file_name)with open(m3u8_file_path, 'w') as m3u8_file:m3u8_file.write(m3u8_content)print(f"m3u8 file downloaded and saved as {m3u8_file_path}")tsM3u8 = os.path.join(output_dir, f"{index}_ts.m3u8")download_ts_files(m3u8_file_path, m3u8_url, tsM3u8)cleaned_m3u8_file_path = os.path.join(output_dir, cleaned_m3u8_file_name)cleaned_m3u8_path = filter_advertisement(m3u8_url, tsM3u8, cleaned_m3u8_file_path)convert_to_mp4(cleaned_m3u8_path, "video_output", title, index)def download_ts_files(m3u8_file_path, m3u8_url, ts_filename):with open(m3u8_file_path, 'r') as m3u8_file:lines = m3u8_file.readlines()for line in lines:if line.startswith('#'):continuets_url = urljoin(m3u8_url, line.strip())with requests.get(ts_url, stream=True) as r:if r.status_code == 200:with open(ts_filename, 'wb') as ts_file:for chunk in r.iter_content(chunk_size=8192):ts_file.write(chunk)print(f"Downloaded {ts_filename}")else:print(f"Failed to download {ts_url}, status code: {r.status_code}")print("All .ts files have been downloaded.")def filter_advertisement(base_url, m3u8_file_path, cleaned_m3u8_file_path):with open(m3u8_file_path, 'r') as m3u8_file:lines = m3u8_file.readlines()cleaned_lines = []skip = Falsead_removed = Falsefor i, line in enumerate(lines):if line.startswith("#EXT-X-KEY") and not ad_removed:skip = Truead_removed = Trueprint(f"Removing key and associated segments starting with: {line.strip()}")continueif skip and line.startswith("#EXTINF"):continueif skip and (line.startswith("http") or line.startswith("/")):continueif line.strip().startswith("https"):last_element = cleaned_lines[-1]if last_element.startswith("#EXTINF"):cleaned_lines.pop()continueif skip and line.startswith("#EXT-X-DISCONTINUITY"):skip = Falseif not skip:cleaned_lines.append(line)new_lines = []for line in cleaned_lines:if line.startswith('#EXT-X-KEY'):uri_part = line.split('URI="')[1].split('"')[0]if not uri_part.startswith('http'):full_uri = urljoin(base_url, uri_part)line = line.replace(uri_part, full_uri)new_lines.append(line)elif line.startswith('/') and not line.startswith('http'):line = urljoin(base_url, line.strip())new_lines.append(line + "\n")else:new_lines.append(line)with open(cleaned_m3u8_file_path, 'w') as cleaned_m3u8_file:cleaned_m3u8_file.writelines(new_lines)print(f"Filtered m3u8 file saved as {cleaned_m3u8_file_path}")return cleaned_m3u8_file_pathdef convert_to_mp4(m3u8_file_path, output_dir, title, index):output_mp4 = os.path.join(output_dir, f"{index}_{title}.mp4")ffmpeg_command = ["ffmpeg","-protocol_whitelist", "file,http,https,tcp,tls,crypto","-i", m3u8_file_path,"-c", "copy","-bsf:a", "aac_adtstoasc",f"{output_mp4}"]print(f"命令行:{' '.join(ffmpeg_command)}")try:subprocess.run(ffmpeg_command, check=True)print(f"Successfully created {output_mp4}")except subprocess.CalledProcessError as e:print(f"Failed to create MP4: {e}")if __name__ == "__main__":csv_file = "ai_video.csv"output_dir = "ts_files"video_outputh = "video_output"max_workers = 4if not os.path.exists(video_outputh):os.makedirs(video_outputh)if not os.path.exists(output_dir):os.makedirs(output_dir)files = [f for f in os.listdir(video_outputh) ifos.path.isfile(os.path.join(video_outputh, f)) and not f.startswith('.')]files_sorted = sorted(files, key=lambda x: int(x.split('_')[0]))print("files:", files_sorted)begin_num = 1if files_sorted:last_file = files_sorted[-1]num = int(last_file.split('_')[0])if num > 0 and num - max_workers > 0:begin_num = num - max_workers + 1print("最后一个文件名是:", last_file, begin_num)else:print("目录中没有符合条件的文件。")try:process_csv(csv_file, output_dir, begin_num, max_workers=max_workers)except KeyboardInterrupt:print("程序被用户中断。")

写入 pip freeze > requirements.txt

打包使用github action
mkdir -p .github/workflows

name: Build Windows Executableon: [push]jobs:build:runs-on: windows-lateststeps:- name: Checkout codeuses: actions/checkout@v2- name: Set up Pythonuses: actions/setup-python@v2with:python-version: '3.12.4'  # 使用适合你的 Python 版本- name: Install dependenciesrun: |python -m pip install --upgrade pippip install pyinstaller requests  # 安装 pyinstaller 和 requestspip install -r requirements.txt  # 如果你有 requirements.txt 文件- name: Build executablerun: pyinstaller --onefile --add-data "ai_video.csv;." test_ts.py- name: Upload artifactuses: actions/upload-artifact@v2with:name: Windows Executablepath: dist/test_ts.exe

ffmpeg 常用命令


ffmpeg -i demo.mp4 -ss 1 -f image2 -vframes 1 out.jpg  // 原视频截图
ffmpeg -hide_banner -i demo.mp4 -i logo.png -filter_complex "overlay=x=xxx:y=xxx" with_watermark.mp4 -y // 原视频添加水印
ffmpeg -i with_watermark.mp4 -ss 1 -f image2 -vframes 1 with_watermark.jpg  // 对添加水印视频截图
ffmpeg -i with_watermark.mp4 -vf "delogo=x=xxx:y=xxx:w=xxx:h=xxx:show=0" -c:a copy no_watermark.mp4 // 给添加水印的视频,去除水印
ffmpeg -protocol_whitelist "file,http,https,tcp,tls,crypto" -i ./ts_files/cleaned_index.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4 转成视频
ffmpeg -i "https://xxx.com/20240814/Zf8gOK3i/index.m3u8" -c copy output.ts 转视频ps网页榜:https://www.nuanque.com/ps/ffmpeg -i demo.mp4 -ss 16 -f image2 -vframes 1 out.jpg  // 原视频截图
ffmpeg -i demo.mp4 -vf "delogo=x=892:y=589:w=385:h=113:show=0" -c:a copy no_watermark.mp4 // 给添加水印的视频,去除水印
ffmpeg -i demo.mp4 -vf "delogo=x=892:y=589:w=385:h=113:show=0, delogo=x=100:y=100:w=150:h=50:show=0" -c:a copy no_watermark.mp4

这篇关于py 多线程 m3u8 转mp4 过滤广告,结合ffmpeg使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1126465

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

python: 多模块(.py)中全局变量的导入

文章目录 global关键字可变类型和不可变类型数据的内存地址单模块(单个py文件)的全局变量示例总结 多模块(多个py文件)的全局变量from x import x导入全局变量示例 import x导入全局变量示例 总结 global关键字 global 的作用范围是模块(.py)级别: 当你在一个模块(文件)中使用 global 声明变量时,这个变量只在该模块的全局命名空

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

深入探索协同过滤:从原理到推荐模块案例

文章目录 前言一、协同过滤1. 基于用户的协同过滤(UserCF)2. 基于物品的协同过滤(ItemCF)3. 相似度计算方法 二、相似度计算方法1. 欧氏距离2. 皮尔逊相关系数3. 杰卡德相似系数4. 余弦相似度 三、推荐模块案例1.基于文章的协同过滤推荐功能2.基于用户的协同过滤推荐功能 前言     在信息过载的时代,推荐系统成为连接用户与内容的桥梁。本文聚焦于

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操