LoginSignup
1
0

More than 3 years have passed since last update.

HTML5で音楽を流す方法

Posted at

サイトやアプリで音楽が流れるようにしたいと思い、その方法を調べてできた方法を備忘録として残します。

HTML5には音楽を流すようにするaudioタグというものがあります。

準備するのはhtmlファイルと今回はmp3の拡張子の音楽ファイルです。

ターミナル
$ mkdir hoge
$ cd hoge
$ touch index.html

と簡単にhogeディレクトリとindex.htmlを準備して、hogeディレクトリの中に好きなmp3の音楽を入れましょう。

次にindex.htmlの中身を以下のように書きます。

index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utg-8">
  <title>hoge</title>
</head>
<body>
  <audio src="sample.mp3" controls></audio>
</body>
</html>

これでhtmlファイルを開き、以下のように表示されたら成功です。

スクリーンショット 2020-07-12 23.35.27.png

これでアプリで音楽を流すことができました。

1
0
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
1
0