代码拉取完成,页面将自动刷新
import argparse
from pathlib import Path
import loguru
from src.core.enums import Orientation
description = """批量视频处理工具
目前更加细致的设定请前往GUI中进行设置,命令只提供最基础的合并功能
"""
parser = argparse.ArgumentParser(description=description)
parser.add_argument('-i', '--input', type=str, help='包含视频文件地址的txt文件的地址')
parser.add_argument("--video_oritation", type=str, default='horization', choices=['vertical', 'horization'],
help='视频的方向')
def parse_args():
# 解析视频文件地址
input_txt_path: Path = Path(parser.parse_args().input)
video_path_list: list[Path] = []
if not input_txt_path.exists():
loguru.logger.error(f'txt文件{input_txt_path}不存在')
raise FileNotFoundError(f'txt文件{input_txt_path}不存在')
# 判断里面每一行是否都是路径
for line in input_txt_path.read_text().replace('"', '').splitlines():
real_path = Path(line)
if not real_path.exists():
loguru.logger.error(f'视频文件{line}不存在,请检查txt文件中的路径是否正确')
raise FileNotFoundError(f'视频文件{line}不存在,请检查txt文件中的路径是否正确')
video_path_list.append(real_path)
loguru.logger.debug(f'一共加载了{len(video_path_list)}个视频文件,分别是{video_path_list}')
# 解析视频朝向
video_orientation = parser.parse_args().video_oritation
if video_orientation == 'vertical':
video_orientation = Orientation.VERTICAL
else:
video_orientation = Orientation.HORIZONTAL
loguru.logger.debug(f'视频的方向为{video_orientation}')
if __name__ == '__main__':
parse_args()
print(parser.print_help())
print(parser.parse_args())
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。