Skip to content

Instantly share code, notes, and snippets.

@4noha
Last active May 8, 2018 06:34
Show Gist options
  • Save 4noha/be763707b5368965e66a3de4a1d46986 to your computer and use it in GitHub Desktop.
Save 4noha/be763707b5368965e66a3de4a1d46986 to your computer and use it in GitHub Desktop.
sudo nano /boot/config.txt
>
# uncomment to force a HDMI mode rather than DVI. This can make audio work in
# DMT (computer monitor) modes
hdmi_drive=2
>
amixer cset numid=3 1
emacs output.py
>
import pygame.mixer
import time
pygame.mixer.init()
pygame.mixer.music.set_volume(1.0)
# pygame.mixer.music.load("/home/nokkii/works/jiho/hotaru.mp3")
pygame.mixer.music.load("kane.wav")
pygame.mixer.music.play(-1)
time.sleep(23.5)
pygame.mixer.music.stop()
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment