반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c#
- Tkinter
- Redshift
- string
- Java
- google apps script
- Google Spreadsheet
- PostgreSQL
- Google Excel
- Python
- array
- django
- Kotlin
- list
- GIT
- dataframe
- numpy
- gas
- 파이썬
- PySpark
- PANDAS
- SQL
- Apache
- matplotlib
- Github
- Excel
- math
- Mac
- hive
Archives
- Today
- Total
달나라 노트
Python subprocess : 음악 파일 재생하기 본문
728x90
반응형
subprocess library를 이용해 Python에서 음악 파일을 재생할 수 있습니다.
(본 예시는 Mac OS에서 실행되었습니다.)
import subprocess
subprocess.call(['afplay', 'music/test.mp3'])
.위 예시처럼 간단하게 적으면 됩니다.
subprocess의 call을 이용하며 인자로 list를 전달하는데 첫 번째는 afplay를 적어주고 두 번째에는 재생할 음악 파일이 있는 directory와 음악파일 이름을 적어주면 됩니다.
import subprocess
subprocess.call(['afplay', 'music/test.wav'])
mp3 파일 뿐 아니라 wav 파일도 재생 가능합니다.
728x90
반응형
'Python > Python ETC' 카테고리의 다른 글
Python으로 HTML 태그의 특정 속성값 가져오기 (0) | 2021.05.17 |
---|---|
Image를 ASCII Character art로 변환하기 in Python (0) | 2021.04.01 |
Python : Web 페이지에서 원하는 태그의 정보 추출하기 (1) | 2021.01.23 |
Python : Web page의 HTML 코드를 가져오기. (Web Crawling, 크롤링, 웹 크롤링) (0) | 2021.01.23 |
Python tistory api : 앱 등록 & Access token 발급 (0) | 2021.01.04 |
Comments