在一个雨后的傍晚,我躺在窗前听着喜欢的音乐,感叹于网络的发达,我们可以轻松地在线听到任何我们想听的音乐。但突然之间,我想起一个问题:如果某一天我去了一个没有网络的地方,我还能听到这些音乐吗?当然,购买会员可以下载,但不是所有人都有这个能力。于是,我决定自己动手,将网易云音乐的缓存文件转为MP3格式,以便我随时随地都可以听到这些音乐。
1. 前置准备
首先,你需要有Python环境。我们的代码是用Python编写的。
2. 深度遍历获取所有缓存文件
为了获取到缓存目录下的所有文件,我们使用了深度优先搜索(DFS):
def get_path_dfs_helper(path_collect_list: list, input_path: str, deep: int):
if not os.path.exists(input_path):
print(f'目录不存在:{input_path}')
return
if deep > 10:
return
if os.path.isfile(input_path):
path_collect_list.append(input_path)
return
files = os.listdir(input_path)
for file in files:
f_abs = os.path.join(input_path, file)
get_path_dfs_helper(path_collect_list, f_abs, deep + 1)
这段代码会递归地搜索目录,获取所有文件的路径。
3. 转换缓存文件为MP3
网易云的缓存文件是.uc
格式,我们需要将其转换为.mp3
格式。
def convert_uc_to_mp3(input_dir: str, output_dir: str):
if not os.path.exists(output_dir):
os.makedirs(output_dir)
cache_file_list = []
get_path_dfs_helper(cache_file_list, input_dir, 0)
for f in cache_file_list:
if not f.endswith('.uc'):
continue
file_name = os.path.basename(f)
print(f'文件:{os.path.basename(f)}-->{os.path.getsize(f)}字节')
with open(f, mode='rb+') as fr:
data_bytes = fr.read()
file_name = file_name[:-3] + '.mp3'
output_file_abs_path = os.path.join(output_dir, file_name)
if os.path.exists(output_file_abs_path):
continue
with open(output_file_abs_path, 'wb+') as fw:
convert_list = list()
for data in data_bytes:
result = data ^ 0xA3
convert_list.append(result)
fw.write(bytes(convert_list))
这段代码的核心是XOR运算,用于将.uc
文件转为.mp3
文件。
4. 使用方法
def test_function():
input_cache_dir = r'F:\99.OtherSoftwareCache\Netease\CloudmusicCache\Cache'
output_dir = r'F:\99.OtherSoftwareCache\ConvertToMp3'
convert_uc_to_mp3(input_cache_dir, output_dir)
if __name__ == '__main__':
test_function()
只需要修改input_cache_dir
和output_dir
这两个路径,然后运行上述代码,即可将缓存文件转为MP3。
结尾
音乐是我们生活中的调味品,它能带给我们快乐和激情。希望这篇教程能够帮助到喜欢音乐的你,让你随时随地都能欣赏到美妙的旋律。