LoginSignup
4
6

More than 3 years have passed since last update.

Pythonでyoutubeを再生する

Posted at

はじめに

計算が終わったのがわかるようにbeep音を鳴らそうと思いましたが、Macだと難しかったです。
音声ファイルを入手するのも面倒だったので、youtubeを再生するようにしました。
Pythonだと標準モジュールでかなり簡単にできました。
CMが再生されるのがたまに傷。。。

環境

mac OS Catalina 10.15.6
Python 3.5.5

コード

play_youtube.py
import webbrowser
webbrowser.open("再生したい動画のURL")

かなり簡単、2行でできちゃった。
ちなみに僕が使ってるのはこれ

4
6
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
4
6