-
import pygame pygame.mixer.init() # or pygame.init() sound = pygame.mixer.Sound(r'C:\temp\t.mp3') playing = sound.play() while playing.get_busy(): pygame.time.delay(100) #playing.stop()
'Python' 카테고리의 다른 글
파이썬 object(개체) 비교(is, == 처리) (0) 2023.09.03 오류해결 - module compiled against API version 0xf but this version of numpy is 0xd (0) 2023.08.13 Python - dict() for문 key value 처리 (0) 2023.07.13 파이썬 파일 경로 슬러쉬 (0) 2023.07.12 UUID(GUID) 생성 (0) 2023.07.06 Python Streamlit 시각화(웹서비스) (0) 2023.02.05 Python Re 정규식 예제1 (0) 2023.01.15 Python bs4.BeautifulSoup (0) 2022.12.16