文件夹中有很多个ts后缀的视频文件,要合并成一个视频文件,在ChatGPT中可以这样输入提示词:
你是一个Python编程专家,要完成一个批量合并ts文件的任务,具体步骤如下:
打开文件夹:C:\Users\dell\Pictures\Camera Roll\index-f1-v1-a1_20230825221408\Part_0
按照文件名称的顺序将文件夹中所有.ts后缀的文件合并成一个文件;
合并完成后删除合并前的所有ts文件,只保留合并后的ts文件;
注意:每一步都要输出相关信息
ChatGPT生成代码如下:
import os
# 定义文件夹路径
folder_path = r'C:\Users\dell\Pictures\Camera Roll\index-f1-v1-a1_20230825221408\Part_0'
# 检查文件夹是否存在
if not os.path.exists(folder_path):
print(f"文件夹 '{folder_path}' 不存在")
exit()
# 获取文件夹中所有的.ts文件并按文件名排序
ts_files = [f for f in os.listdir(folder_path) if f.endswith('.ts')]
ts_files.sort()
# 如果没有.ts文件,则无需合并
if not ts_files:
print("文件夹中没有.ts文件需要合并")
exit()
# 创建要保存合并内容的文件
output_file_path = os.path.join(folder_path, 'merged.ts')
with open(output_file_path, 'wb') as output_file:
for ts_file in ts_files:
ts_file_path = os.path.join(folder_path, ts_file)
with open(ts_file_path, 'rb') as input_file:
data = input_file.read()
output_file.write(data)
print(f"已合并文件: {ts_file}")
# 删除原始.ts文件
for ts_file in ts_files:
ts_file_path = os.path.join(folder_path, ts_file)
os.remove(ts_file_path)
print(f"已删除文件: {ts_file}")
print(f"合并完成,合并后的文件保存在 '{output_file_path}'")
运行程序,成功合并。
标签:文件,编程,合并,ts,文件夹,file,path,ChatGPT From: https://blog.51cto.com/fancyar/7438251