-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path测试.py
161 lines (135 loc) · 5.91 KB
/
测试.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import os
import subprocess
from pydub import AudioSegment
import time
import sys
import threading
def get_audio_format(file_path):
_, ext = os.path.splitext(file_path)
return ext[1:]
def convert_audio_with_pydub(source_file, target_format):
audio = AudioSegment.from_file(source_file)
target_file = os.path.splitext(source_file)[0] + '.' + target_format
# 指定更高的音频比特率(根据需要调整)
audio.export(target_file, format=target_format, bitrate='128k')
return target_file
def convert_audio_with_ffmpeg(source_file, target_format):
target_file = os.path.splitext(source_file)[0] + '.' + target_format
command = ['ffmpeg', '-i', source_file, '-c:a', 'aac', '-strict', 'experimental', target_file]
try:
result = subprocess.run(command, check=True, capture_output=True, text=True)
if result.returncode == 0:
return target_file
else:
print(f"转换失败:{result.stderr}")
return None
except subprocess.CalledProcessError as e:
print(f"转换失败:{e}")
return None
def convert_audio(source_file, target_format):
source_format = get_audio_format(source_file)
if source_format == target_format:
print("源格式和目标格式相同,无需转换。")
return None
try:
target_file = os.path.splitext(source_file)[0] + '.' + target_format
'''
# Check if the target file already exists
if os.path.exists(target_file):
overwrite = input(f"文件 '{target_file}' 已存在。是否删除并覆盖?(y/n): ")
if overwrite.lower() == 'y':
os.remove(target_file)
else:
print("转换已取消。")
return None
'''
if target_format == 'm4a':
return convert_audio_with_ffmpeg(source_file, target_format)
else:
return convert_audio_with_pydub(source_file, target_format)
except Exception as e:
print(f"转换失败:{e}")
return None
def animate_loading_message(message, event):
frames = ["-", "\\\\", "|", "/"]
num_frames = len(frames)
while not event.is_set():
for i in range(num_frames):
sys.stdout.write(f"\r{message} {frames[i]}")
sys.stdout.flush()
time.sleep(0.2)
def file_overwrite_prompt(target_file):
while True:
overwrite = input(f"文件 '{target_file}' 已存在。是否删除并覆盖?(y/n): ")
if overwrite.lower() == 'y':
return True
elif overwrite.lower() == 'n':
return False
else:
print("无效的输入,请输入 'y' 或 'n'.")
def convert_audio_with_loading_animation(source_file, target_format):
global loading_completed
loading_completed = threading.Event()
loading_thread = threading.Thread(target=animate_loading_message, args=("请耐心等待,处理中 ------", loading_completed))
loading_thread.start()
try:
target_file = os.path.splitext(source_file)[0] + '.' + target_format
# Check if the target file already exists
while os.path.exists(target_file):
loading_completed.set() # Pause the animation
if not file_overwrite_prompt(target_file):
print("转换已取消。")
loading_completed.clear() # Resume the animation
loading_thread.join() # Wait for the animation thread to finish
print("\r" + " " * len("请耐心等待,处理中 ------") + "\r", end="") # Clear the loading animation
return
os.remove(target_file)
target_file = convert_audio(source_file, target_format)
if target_file:
loading_completed.set() # Set the event to signal the animation thread to terminate
loading_thread.join() # Wait for the animation thread to finish
print("\r" + " " * len("请耐心等待,处理中 ------") + "\r", end="") # Clear the loading animation
print(f"文件已成功转换为 {target_format} 格式:{target_file}")
except Exception as e:
loading_completed.set() # Set the event to signal the animation thread to terminate
loading_thread.join() # Wait for the animation thread to finish
print("\r" + " " * len("请耐心等待,处理中 ------") + "\r", end="") # Clear the loading animation
print(f"转换失败:{e}")
def convert_audio_with_retry(source_file, target_format):
while True:
try:
convert_audio_with_loading_animation(source_file, target_format)
break
except KeyboardInterrupt:
print("\n转换已取消。")
break
except Exception as e:
print(f"转换失败:{e}")
retry = input("是否重试?(y/n): ")
if retry.lower() != 'y':
print("转换已取消。")
break
def main():
print("欢迎使用音频格式转换工具!输入 'o' 可退出程序。")
while True:
source_file = input("请输入源文件名: ")
if source_file.lower() == 'o':
print("程序已退出。")
break
if not os.path.isfile(source_file):
print("文件不存在,请重新输入。")
continue
source_format = get_audio_format(source_file)
if not source_format:
print("无法识别源文件格式,请输入支持的音频格式。")
continue
target_format = input("请输入目标转换格式: ")
if target_format.lower() == 'o':
print("程序已退出。")
break
if target_format not in ['wav', 'mp3', 'flac', 'm4a']:
print("不支持的目标格式,请输入支持的音频格式。")
continue
convert_audio_with_loading_animation(source_file, target_format)
if __name__ == "__main__":
main()