21
17

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.

HTML5のVideo/AudioをモバイルOSで自動再生する

Last updated at Posted at 2016-02-19

iOSやAndroidのモバイルブラウザでは、VideoやAudioのautoplayをすることはできないという制約があります。

(この制約について、詳しく知りたい方はこちらさんを参照ください)
iOS/Android で HTML5 の audio/video を任意のタイミングで再生する方法

しかしどうしても自動再生したい場合は、iOSもAndroidもアプリ化してWebViewの設定を変えてあげればできるようになってます。

iOS
webView.mediaPlaybackRequiresUserAction = false;
Android
webView.getSettings().setMediaPlaybackRequiresUserGesture(false);

どちらも似たようなメソッド名ですね。

21
17
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
21
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?