如何以编程方式在Windows中将VLC播放器设置为默认播放器?

时间:2018-08-03 21:23:16

标签: python windows registry mp3 vlc

我想将vlc播放器设置为Windows操作系统上mp3文件的默认播放器。例如,如果我通过命令运行mp3文件,则应通过vlc播放器播放。

是否有任何命令行或注册表设置可将vlc设置为Windows中的默认播放器?

谢谢

1 个答案:

答案 0 :(得分:0)

类似这样的可能有效,但我尚未对其进行测试。

该程序应从python脚本中运行Windows命令。

import os

os.system('assoc .mp3=mp3')
os.system('FTYPE mp3=PATH/TO/VLC.exe')

此内容取自Microsoft forums

Use FTYPE {fileType}={commandString} to create a file type and associated command to open the file.
Use ASSOC {.fileExtension}={fileType} to associate a file extension with the file type you created.