0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ラズパイのpythonでオーディオファイルを再生

Last updated at Posted at 2020-09-30

#pygame
音声ファイルの再生にはpygameを使ってみます。
ラズパイのpythonにはpygameがインストールされているようなので、とくにインストールするパッケージはないです。

#音声ファイル
今回はここから猫のファイルをダウンロードします。

#ファイルの置き場所
pythonファイルがあるディレクトリにaudioというフォルダを作って、その中にダウンロードしたcat1a.mp3を置きます。
任意のフォルダ
|--audio.py
|--audio
|---cat1a.mp3

#ファイル名
ファイル名はaudio.pyとします。

audio.py
import pygame
import time


pygame.mixer.init(frequency=44100)
pygame.mixer.music.load("audio/cat1a.mp3")
pygame.mixer.music.play(1)
time.sleep(2)
pygame.mixer.music.stop()

#イヤホンジャックにつないだスピーカーやヘッドホンから音を出したいとき
1)メニューのスピーカーマークを右クリックしてAnalogを選択
だめだったら
2)ここを参考にraspi-configの設定をしてみる
だめだったら、再起動してみる、それでもだめだったら
3)ターミナルで下記のコマンドを実行して、再起動してみる

cd /opt/vc/src/hello_pi
./rebuild.sh
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?