4 lines
67 B
Python
4 lines
67 B
Python
|
import vlc
|
||
|
p=vlc.MediaPlayer("warma.mp3")
|
||
|
p.play()
|
||
|
input("playing")
|