3
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?

KinoYouTube を使って Livebook 上で YouTube 動画を視聴する

Last updated at Posted at 2024-11-18

はじめに

みなさんご存知、動画共有サービス YouTube

今回は KinoYouTube を使って、 Livebook で YouTube動画を視聴します

実装したノートブックはこちら

セットアップ

KinoYouTube をインストールします

Mix.install([
  {:kino_youtube, "~> 0.1"}
])

動画視聴

YouTube の URL を指定するだけで動画が視聴できます

KinoYouTube.new(
  "https://www.youtube.com/watch?v=2BaHEk5zwTo",
  start: 2,
  controls: 1
)

実行の様子

kino_youtube.gif

オプションについては YouTube のドキュメントを参照してください

ちなみに、視聴したのは piyopiyo.ex の紹介動画です

まとめ

簡単に Livebook で YouTube 動画が視聴できました

ドキュメントとして Livebook を使うとき、動画を埋め込むのに使えますね

3
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
3
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?