Coder Social home page Coder Social logo

estefaniabarrera / iphone-inline-video Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fregante/iphone-inline-video

0.0 0.0 0.0 1.54 MB

๐Ÿ“ฑ Make videos playable inline on the iPhone (prevents automatic fullscreen)

Home Page: http://npm.im/iphone-inline-video

License: MIT License

HTML 22.36% JavaScript 73.53% CSS 4.12%

iphone-inline-video's Introduction

iphone-inline-video

Make videos playable inline on Safari on iPhone (prevents automatic fullscreen)

gzipped size Travis build status npm version

This lets you:

  • Play videos without forcing the fullscreen on the iPhone (demo)
  • Play silent videos without user interaction
  • Autoplay silent videos with the autoplay attribute (demo)
  • Play multiple silent videos at the same time
  • Use videos as WebGL/ThreeJS textures (demo)

This essentially enables iOS 10's playsinline attribute on iOS 8 and iOS 9 (almost a polyfill)

Demo

Main features

  • <2KB, standalone (no frameworks required)
  • No setup: include it, call makeVideoPlayableInline(video), done
  • No custom API for playback, you can just call video.play() on click
  • Supports audio
  • Supports autoplay on silent videos
  • Doesn't need canvas
  • Doesn't create new elements/wrappers
  • It works with existing players like jPlayer
  • Disabled automatically on iOS 10

Limitations:

  • Needs user interaction to play videos with sound (standard iOS limitation)
  • Currently limited to iPhone, unneeded on iPad, disabled on Android
  • The video framerate depends on requestAnimationFrame, so avoid expensive animations and similar while the video is playing. Try stats.js to visualize your page's framerate
  • Known issues

Install

npm install --save iphone-inline-video
const makeVideoPlayableInline = require('iphone-inline-video');

If you don't use node, include the file dist/iphone-inline-video.browser.js

Usage

You will need:

  • a <video> element with the attribute playsinline (this is needed on iOS 10)

     <video src="file.mp4" playsinline></video>
  • the native play buttons will still trigger the fullscreen, so it's best to hide them when iphone-inline-video is enabled. More info on the .IIV CSS class

     .IIV::-webkit-media-controls-play-button,
     .IIV::-webkit-media-controls-start-playback-button {
         opacity: 0;
         pointer-events: none;
         width: 5px;
     }
  • the activation call

     // one video
     var video = document.querySelector('video');
     makeVideoPlayableInline(video);
     // or if you're already using jQuery:
     var video = $('video').get(0);
     makeVideoPlayableInline(video);
     // or if you have multiple videos:
     $('video').each(function () {
     	makeVideoPlayableInline(this);
     });

Done! It will only be enabled on iPhones and iPod Touch devices.

Now you can keep using it just like you would on a desktop. Run video.play(), video.pause(), listen to events with video.addEventListener() or $(video).on(), etc...

BUT you still need user interaction to play the audio, so do something like this:

makeVideoPlayableInline(video);
video.addEventListener('touchstart', function () {
	video.play();
});

If at some point you want to open the video in fullscreen, use the standard (but still prefixed) webkitEnterFullScreen() API, but it has some caveats.

Usage with audio-less videos

If your video file doesn't have an audio track, then you need this:

makeVideoPlayableInline(video, /* hasAudio */ false);

And the muted attribute

<video muted playsinline src="video.mp4"></video>

Muted videos can also be played without user interaction (video.play() doesn't need to be called inside an event listener).

Usage with autoplaying videos

Thanks to the above behavior, muted videos can also autoplay:

makeVideoPlayableInline(video, /* hasAudio */ false);

And the autoplay and muted attributes:

<video autoplay muted playsinline src="video.mp4"></video>

Notes about iOS 10

New features in iOS 10:

  • videos play inline:

    <video playsinline src="video.mp4"></video>
  • muted videos play inline without user interaction:

    <video muted playsinline src="video.mp4"></video>
    setTimeout(function () { video.play(); }, 1000); // example
  • muted videos autoplay inline:

    <video autoplay muted playsinline src="video.mp4"></video>

Essentially everything that this module does, so iphone-inline-video will be automatically disabled there. Make sure you have all the above attributes.

License

MIT ยฉ Federico Brigante

iphone-inline-video's People

Contributors

bfred-it avatar ivanschwarz avatar timdp avatar wpsmithtwc avatar webpapaya avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.