Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 25, 2019 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/151c311f9a5cbfb87d81b29c64197e8f to your computer and use it in GitHub Desktop.
Save parzibyte/151c311f9a5cbfb87d81b29c64197e8f to your computer and use it in GitHub Desktop.
"""
Reproducir un archivo de audio
con Python 3
@author parzibyte
"""
from playsound import playsound
NOMBRE_ARCHIVO = "salida.mp3"
playsound(NOMBRE_ARCHIVO)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment