본문 바로가기
파이썬트러블슈팅

PlaysoundException playsound Error

by 하이어시스템 2023. 8. 9.
반응형

하이어시스템 소개

 

하이어시스템 소개 feat.김프로

소개 안녕하세요, 저는 하이어시스템의 김프로입니다. 여러분들이 어려움을 겪고 계신 일상 업무를 저의 안정적이고 빠른 소프트웨어로 자동화하는 것, 그것이 저의 목표입니다. '하이어시스템

wise-office-worker.tistory.com

 

파이썬 playsound 모듈 사용간 발생하는 Exception Error는 대부분 하위 버전과 상위 버전의 사용법 차이에서 발생합니다. 주로 나타나는 Exception Error는 다음과 같습니다.

 

Error 259 for command:

The driver cannot recognize the specified command parameter.

 

Error 261 for command:

The driver cannot recognize the specified command.

 

Error 263 for command:

The specified device is not open or is not recognized by MCI.
지정한 정차기 열려 있지 않거나 MCI에서 인식되지 않습니다.

 

Error 305 for command:

Cannot specify extra characters after a string enclosed in quotation marks.

 

위의 에러는 다음과 같이 우회하면 간단하게 해결 됩니다. 다만 상위 버전에서도 변화된 사용법을 이용해서 해결할 수 있다는 점 참고하시기 바랍니다.

 

해결방법

아래의 명령어를 이용해 하위버전의 playsound모듈을 재설치 합니다.

pip uninstall playsound
pip install playsound==1.2.2

 

반응형