1
0

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 5 years have passed since last update.

動画の倍速を変更して見る方法

Last updated at Posted at 2019-11-17

倍速機能がなかったり、倍速をもっと上げたかったので、とりあえずメモ

開発者ツールのコンソール画面
// videoタグにidがない場合
// videoタグを取得
video = document.getElementsByTagName('video');

// videoタグにidがある場合
// videoタグに付与されているidを取得
video = document.getElementById('id名');


video.playbackRate = 2.0; // 2倍速で再生
video.playbackRate = 4.0; // 4倍速で再生
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?