1. apt-get update
2. apt-get upgrade
3. apt-get install python-game
import pygame
pygame.mixer.init()
pygame.mixer.music.load("myFile.wav")
pygame.mixer.music.play()
while pygame.mixer.music.get_busy() == True:
continue
วิธี load ไฟล์จาก google.com mp3
http://translate.google.com/translate_tts?tl=th&q=สวัสดีครับ
click ขวา Save file
ตัวอย่าง Code ในการให้ Computer พูด
โดย Save คำ จาก Google Transalte ด้านบน Save มาเป็นคำละ File
เช่น
word.mp3
hello.mp3
kun.mp3
time.mp3
import pygame
pygame.mixer.init()
speak_word = ["hello"]
speak_word.append("word1")
speak_word.append("kun")
speak_word.append("time")
for s in speak_word:
pygame.mixer.music.load(""+s+".mp3")
pygame.mixer.music.play()
while pygame.mixer.music.get_busy() == True:
continue