import os import subprocess import whisper import torch from zhconv import convert from tqdm import tqdm def extract_audio(video_file): ...
Month: March 2025
xml to word
从wordpress后台,导出所有文章,格式为xml。再将xml转为word。 import xml.etree.ElementTree as ET from docx import Document def xml_to_word(xml_file_path,...
正则表达式删除所有行某字符开始之前或者之后所有字符
删除S 之后的所有字符用:s.*$ 删除S 之前的所有字符用:^.*s