Last active
May 8, 2018 06:34
-
-
Save 4noha/be763707b5368965e66a3de4a1d46986 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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