playmusic: 添加播放音乐文件的功能

- 新增 test.py 文件- 实现了通过 os.startfile 方法播放指定音乐文件的功能
- 目前播放的音乐文件为 "国风堂#哦漏 - 知我.mp3"
This commit is contained in:
2025-08-30 22:08:09 +08:00
parent 9e424631a9
commit 43ad0fa955

4
test.py Normal file
View File

@ -0,0 +1,4 @@
import os
audio_file = "C:/Users/Administrator/Music/国风堂#哦漏 - 知我.mp3"
os.startfile(audio_file)