检查Windows声音系统

睡前看到一个好玩的,python的winsound模块可以检查windows系统声音子系统的配置是否是正常的

#!/usr/bin/env python

import winsound
try:
    winsound.PlaySound(‘*’, winsound.SND_ALIAS)
except RuntimeError, e:
    print ‘Sound system has problems, ‘, e
else:
    print ‘Sound system is OK’

试了一下,的确检查声音is OK,但是没试出来has problem的情况,做这个测试可以知道是否需要在设备驱动的配置问题上研究一下,或者是需要检查音箱(如果有)的电源开关

发表回复