반응형
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
- dataframe
- Mac
- Python
- hive
- Apache
- 파이썬
- django
- Google Spreadsheet
- gas
- SQL
- Redshift
- numpy
- PostgreSQL
- PANDAS
- Google Excel
- string
- Tkinter
- matplotlib
- PySpark
- c#
- list
- math
- Java
- GIT
- Github
- Kotlin
- Excel
- array
- google apps script
Archives
- Today
- Total
목록Python으로 음악파일 재생 (1)
달나라 노트
Python subprocess : 음악 파일 재생하기
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 파일도 재생 가능합니다.
Python/Python ETC
2021. 3. 29. 21:14