Hero Video Performance

Walter Ebert
Walter EbertIndependent Web & Usability Engineer at walter.ebert.engineering
HE OVIDEOPERFORMANCE
Walter Ebert
@wltrd
mastodon.social/@walterebert
https://yoast.com/video-backgrounds-suck/
AUTOPLAYING VIDEOS
<video autoplay loop muted playsinline>
<source src="video.mp4" type="video/mp4">
</video>
AUTOPLAYING VIDEOS
muted: Chrome, iOS, Android
playsinline: iOS
<video autoplay loop muted playsinline>
<source src="video.mp4" type="video/mp4">
</video>
OHNE TON
ffmpeg -i input.mp4 -an -c:v copy output.mp4
OHNE TON
Geht auch mit
ffmpeg -i input.mp4 -an -c:v copy output.mp4
HandBrake
MOOV-ATOM (MP4)
ffmpeg -i input.mp4 -an -c:v copy -movflags +faststart output.mp4
https://www.adobe.com/devnet/video/articles/mp4_movie_atom.html
ALL THE CODECS!
<video autoplay loop muted playsinline>
<source src="av1.webm" type='video/webm;codecs="av1"'>
<source src="av1.mp4" type='video/mp4;codecs="av1"'>
<source src="h265.mp4" type='video/mp4;codecs="hvc1.1.L0.0"'>
<source src="vp9.webm" type='video/webm;codecs="vp9"'>
<source src="h264.mp4" type='video/mp4'>
</video>
BEGRÜNDUNGEN
KEIN VIDEO
ZU LADEN
MOBIL (IN THEORIE)
<video autoplay loop muted playsinline>
<source src="vid.mp4" media="(min-width: 1366px)" type="video/mp4">
<img src="screenshot.jpg" alt="Video screenshot">
</video>
MOBIL
Problem: Video Media Query Support wurde aus
Chrome + Firefox entfernt
<video autoplay loop muted playsinline>
<source src="vid.mp4" media="(min-width: 1366px)" type="video/mp4">
<img src="screenshot.jpg" alt="Video screenshot">
</video>
SVG-PLATZHALTER
<style>
#hero svg, #hero video, #hero img {
height: auto; width: 100%;
}
</style>
<div id="hero">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9"/>
</div>
SVG-PLATZHALTER
<script>
var hero = document.getElementById('hero')
if (window.screen.width > 1365) {
var video = document.createElement('video')
video.src = 'video.mp4'
video.setAttribute('muted', 'muted')
video.setAttribute('loop', 'loop')
hero.innerHTML = ''
hero.appendChild(video)
video.play()
} else {
hero.innerHTML = '<img src="screenshot.jpg" alt="screenshot">'
}
SVG ALS POSTER-BILD
<video id="hero" preload="none" loop muted playsinline
poster="data:image/svg+xml,%3Csvg%20xmlns%3D%22...">
</video>
<script>
var video = document.getElementById('hero')
if (window.screen.width > 1365) {
video.setAttribute('src', 'large.mp4')
video.play()
} else {
video.setAttribute('poster', 'screenshot.jpg')
video.setAttribute('controls', 'controls')
video.setAttribute('src', 'small.mp4')
}
IST MOBIL?
<script>
...
navigator.userAgent.match(/Mobi/)
window.screen.width > 1599
window.matchMedia('(min-width: 1366px)').matches
...
</script>
IST SICHTBAR?
<video id="hero" preload="none" loop muted playsinline src="v.mp4"/>
<script>
if ("hidden" in document) {
var hero = document.getElementById('hero')
if (!document.hidden) hero.play()
document.addEventListener('visibilitychange', function () {
if (document.hidden) hero.pause()
else hero.play()
}, false)
}
</script>
REDUCED MOTION
Safari, Firefox
<script>
var autoplay = true
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
autoplay = false
}
</script>
CHROME DATA SAVER
<script>
var autoplay = true
if ("connection" in navigator && navigator.connection.saveData) {
autoplay = false
}
</script>
<?php
if (empty($_SERVER['HTTP_SAVE_DATA'])) {
// Load video
}
https://developer.chrome.com/multidevice/data-compression
DO NOT TRACK
Relevant für DSGVO
<script>
var autoplay = true
if ("doNotTrack" in navigator && navigator.doNotTrack === "1") {
autoplay = false
}
</script>
<?php
if (empty($_SERVER['HTTP_DNT']) ||
$_SERVER['HTTP_DNT'] === 'unspecified') {
// Video von Drittanbieter (YouTube, Vimeo, ...)
}
https://www.praetor.im/notizen/please-do-not-track/
MODERNES JAVASCRIPT
<script type="module">
let autoplay = true
</script>
<script nomodule>
var autoplay = false
</script>
NETWORK INFORMATION API
<script>
var autoplay = false
if (
"connection" in navigator &&
(
navigator.connection.type === 'ethernet' ||
navigator.connection.type === 'wifi' ||
navigator.connection.type === '4g'
)
) {
autoplay = true
}
</script>
https://caniuse.com/#feat=netinfo
AUTOPLAY DEAKTIVIERT?
<script>
window.setTimeout(function () {
var hero = document.getElementById('hero')
if (hero.paused) {
hero.setAttribute('controls', 'controls')
hero.setAttribute('poster', 'screenshot.jpg')
}
}, 2000)
</script>
https://www.w3.org/2010/05/video/mediaevents.html
VIDEO ALS BILD
<picture>
<source srcset="video.mp4" type="video/mp4">
<source srcset="video.webp" type="image/webp">
<img src="video.gif" alt="Video">webm
</picture>
https://calendar.perfplanet.com/2017/animated-gif-without-the-gif/
FRAGEN?
@wltrd
mastodon.social/@walterebert
slideshare.net/walterebert
walterebert.de
1 of 25

Recommended

HTML5 multimedia - browser-native video and audio - DevUp HTML5 / Barcelona /... by
HTML5 multimedia - browser-native video and audio - DevUp HTML5 / Barcelona /...HTML5 multimedia - browser-native video and audio - DevUp HTML5 / Barcelona /...
HTML5 multimedia - browser-native video and audio - DevUp HTML5 / Barcelona /...Patrick Lauke
2.2K views60 slides
Mobile Web Video by
Mobile Web VideoMobile Web Video
Mobile Web VideoSarah Allen
2.1K views47 slides
Using browser settings for performance by
Using browser settings for performanceUsing browser settings for performance
Using browser settings for performanceWalter Ebert
581 views18 slides
Video by
VideoVideo
Videojsola12
210 views1 slide
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010 by
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010
audio, video and canvas in HTML5 - standards>next Manchester 29.09.2010Patrick Lauke
1.5K views58 slides
Hybrid app by
Hybrid appHybrid app
Hybrid apphyun soomyung
1.3K views12 slides

More Related Content

What's hot

Underground songs.txt by
Underground songs.txtUnderground songs.txt
Underground songs.txt23rd Street Productions Group
76 views1 slide
Ravi Singh / Campaign Guru Biography by
Ravi Singh / Campaign Guru BiographyRavi Singh / Campaign Guru Biography
Ravi Singh / Campaign Guru Biographyemt_slideshare
175 views1 slide
Html5 - audio and video tags by
Html5 - audio and video tagsHtml5 - audio and video tags
Html5 - audio and video tagsRae Allen
2.1K views19 slides
Video.js - How to build and HTML5 Video Player by
Video.js - How to build and HTML5 Video PlayerVideo.js - How to build and HTML5 Video Player
Video.js - How to build and HTML5 Video Playersteveheffernan
4.1K views26 slides
Boceto de mi webquest by
Boceto de mi webquestBoceto de mi webquest
Boceto de mi webquestDaniela Castillo Nuñez
133 views7 slides
Vídeo.1 by
Vídeo.1Vídeo.1
Vídeo.1home
185 views1 slide

What's hot(20)

Ravi Singh / Campaign Guru Biography by emt_slideshare
Ravi Singh / Campaign Guru BiographyRavi Singh / Campaign Guru Biography
Ravi Singh / Campaign Guru Biography
emt_slideshare175 views
Html5 - audio and video tags by Rae Allen
Html5 - audio and video tagsHtml5 - audio and video tags
Html5 - audio and video tags
Rae Allen2.1K views
Video.js - How to build and HTML5 Video Player by steveheffernan
Video.js - How to build and HTML5 Video PlayerVideo.js - How to build and HTML5 Video Player
Video.js - How to build and HTML5 Video Player
steveheffernan4.1K views
Vídeo.1 by home
Vídeo.1Vídeo.1
Vídeo.1
home185 views
[peachpit] Adaptive Images in Responsive Web Design by Christopher Schmitt
[peachpit] Adaptive Images in Responsive Web Design[peachpit] Adaptive Images in Responsive Web Design
[peachpit] Adaptive Images in Responsive Web Design
Diegetic crescendo godfather the resturant scene by itzz_ells
Diegetic crescendo  godfather the resturant sceneDiegetic crescendo  godfather the resturant scene
Diegetic crescendo godfather the resturant scene
itzz_ells6 views
Ec2 Commands by snusmumrik
Ec2 CommandsEc2 Commands
Ec2 Commands
snusmumrik258 views
Making the HTML5 Video element interactive by Charles Hudson
Making the HTML5 Video element interactiveMaking the HTML5 Video element interactive
Making the HTML5 Video element interactive
Charles Hudson15.5K views
Jager by paskar
JagerJager
Jager
paskar162 views
Android unlocking and rooting by Max Shytikov
Android unlocking and rootingAndroid unlocking and rooting
Android unlocking and rooting
Max Shytikov164 views
Web Directions @media 2010 by Patrick Lauke
Web Directions @media 2010Web Directions @media 2010
Web Directions @media 2010
Patrick Lauke919 views
I just hacked your app! - Marcos Placona - Codemotion Rome 2017 by Codemotion
I just hacked your app! - Marcos Placona - Codemotion Rome 2017I just hacked your app! - Marcos Placona - Codemotion Rome 2017
I just hacked your app! - Marcos Placona - Codemotion Rome 2017
Codemotion993 views

Similar to Hero Video Performance

Hero Video Performance - DrupalCamp Ruhr by
Hero Video Performance - DrupalCamp RuhrHero Video Performance - DrupalCamp Ruhr
Hero Video Performance - DrupalCamp RuhrWalter Ebert
14 views25 slides
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012 by
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012Patrick Lauke
1.6K views66 slides
Responsive Videos, mehr oder weniger by
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerWalter Ebert
8.1K views47 slides
Multimedia on the web - HTML5 video and audio by
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioChristian Heilmann
4.3K views85 slides
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ... by
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...Patrick Lauke
2.6K views70 slides
Leave No One Behind with HTML5 - FFWD.PRO, Croatia by
Leave No One Behind with HTML5 - FFWD.PRO, CroatiaLeave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, CroatiaRobert Nyman
32.7K views79 slides

Similar to Hero Video Performance(20)

Hero Video Performance - DrupalCamp Ruhr by Walter Ebert
Hero Video Performance - DrupalCamp RuhrHero Video Performance - DrupalCamp Ruhr
Hero Video Performance - DrupalCamp Ruhr
Walter Ebert14 views
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012 by Patrick Lauke
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012
HTML5 multimedia - browser-native video and audio - JSDay / Verona / 17 May 2012
Patrick Lauke1.6K views
Responsive Videos, mehr oder weniger by Walter Ebert
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder weniger
Walter Ebert8.1K views
Multimedia on the web - HTML5 video and audio by Christian Heilmann
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audio
Christian Heilmann4.3K views
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ... by Patrick Lauke
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
HTML5 multimedia - browser-native video, audio and canvas - meet.js Summit / ...
Patrick Lauke2.6K views
Leave No One Behind with HTML5 - FFWD.PRO, Croatia by Robert Nyman
Leave No One Behind with HTML5 - FFWD.PRO, CroatiaLeave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Robert Nyman32.7K views
HTML5 APIs - native multimedia support and beyond - University of Leeds 05.05... by Patrick Lauke
HTML5 APIs - native multimedia support and beyond - University of Leeds 05.05...HTML5 APIs - native multimedia support and beyond - University of Leeds 05.05...
HTML5 APIs - native multimedia support and beyond - University of Leeds 05.05...
Patrick Lauke4.1K views
Building an HTML5 Video Player by Jim Jeffers
Building an HTML5 Video PlayerBuilding an HTML5 Video Player
Building an HTML5 Video Player
Jim Jeffers84.6K views
Speak The Web: The HTML5 Experiments by guestd427df
Speak The Web: The HTML5 ExperimentsSpeak The Web: The HTML5 Experiments
Speak The Web: The HTML5 Experiments
guestd427df701 views
HTML5 multimedia - where we are, where we're going by brucelawson
HTML5 multimedia - where we are, where we're goingHTML5 multimedia - where we are, where we're going
HTML5 multimedia - where we are, where we're going
brucelawson3.1K views
HTML5 Video Player - HTML5 Dev Conf 2012 by steveheffernan
HTML5 Video Player - HTML5 Dev Conf 2012HTML5 Video Player - HTML5 Dev Conf 2012
HTML5 Video Player - HTML5 Dev Conf 2012
steveheffernan1.4K views
How to-save-video-list by phanhung20
How to-save-video-listHow to-save-video-list
How to-save-video-list
phanhung201.1K views
HTML5 Multimedia: where we are, where we're going by brucelawson
HTML5 Multimedia: where we are, where we're goingHTML5 Multimedia: where we are, where we're going
HTML5 Multimedia: where we are, where we're going
brucelawson2.8K views
Building Video Applications with YouTube APIs by Jarek Wilkiewicz
Building Video Applications with YouTube APIsBuilding Video Applications with YouTube APIs
Building Video Applications with YouTube APIs
Jarek Wilkiewicz12K views
HTML5 Multimedia Support by Henry Osborne
HTML5 Multimedia SupportHTML5 Multimedia Support
HTML5 Multimedia Support
Henry Osborne509 views

More from Walter Ebert

FrOSCon 2023: WordPress als ActivityPub-Instanz by
FrOSCon 2023: WordPress als ActivityPub-InstanzFrOSCon 2023: WordPress als ActivityPub-Instanz
FrOSCon 2023: WordPress als ActivityPub-InstanzWalter Ebert
3 views31 slides
Sicherheit für WordPress by
Sicherheit für WordPressSicherheit für WordPress
Sicherheit für WordPressWalter Ebert
630 views31 slides
WordPress aufräumen - WordCamp Stuttgart by
WordPress aufräumen - WordCamp StuttgartWordPress aufräumen - WordCamp Stuttgart
WordPress aufräumen - WordCamp StuttgartWalter Ebert
1.5K views32 slides
WordPress aufräumen by
WordPress aufräumenWordPress aufräumen
WordPress aufräumenWalter Ebert
1K views24 slides
WordPress-Webseiten umziehen / online stellen by
WordPress-Webseiten umziehen / online stellenWordPress-Webseiten umziehen / online stellen
WordPress-Webseiten umziehen / online stellenWalter Ebert
537 views21 slides
Das richtige WordPress-Theme finden by
Das richtige WordPress-Theme findenDas richtige WordPress-Theme finden
Das richtige WordPress-Theme findenWalter Ebert
320 views24 slides

More from Walter Ebert(20)

FrOSCon 2023: WordPress als ActivityPub-Instanz by Walter Ebert
FrOSCon 2023: WordPress als ActivityPub-InstanzFrOSCon 2023: WordPress als ActivityPub-Instanz
FrOSCon 2023: WordPress als ActivityPub-Instanz
Walter Ebert3 views
Sicherheit für WordPress by Walter Ebert
Sicherheit für WordPressSicherheit für WordPress
Sicherheit für WordPress
Walter Ebert630 views
WordPress aufräumen - WordCamp Stuttgart by Walter Ebert
WordPress aufräumen - WordCamp StuttgartWordPress aufräumen - WordCamp Stuttgart
WordPress aufräumen - WordCamp Stuttgart
Walter Ebert1.5K views
WordPress-Webseiten umziehen / online stellen by Walter Ebert
WordPress-Webseiten umziehen / online stellenWordPress-Webseiten umziehen / online stellen
WordPress-Webseiten umziehen / online stellen
Walter Ebert537 views
Das richtige WordPress-Theme finden by Walter Ebert
Das richtige WordPress-Theme findenDas richtige WordPress-Theme finden
Das richtige WordPress-Theme finden
Walter Ebert320 views
WordPress Health Check - WordCamp Würzburg by Walter Ebert
WordPress Health Check - WordCamp WürzburgWordPress Health Check - WordCamp Würzburg
WordPress Health Check - WordCamp Würzburg
Walter Ebert1.8K views
WordPress Health Check by Walter Ebert
WordPress Health CheckWordPress Health Check
WordPress Health Check
Walter Ebert315 views
Making WordPress fast(er) by Walter Ebert
Making WordPress fast(er)Making WordPress fast(er)
Making WordPress fast(er)
Walter Ebert766 views
Testumgebungen für WordPress by Walter Ebert
Testumgebungen für WordPressTestumgebungen für WordPress
Testumgebungen für WordPress
Walter Ebert1.2K views
Modernism in Web Design by Walter Ebert
Modernism in Web DesignModernism in Web Design
Modernism in Web Design
Walter Ebert1.4K views
Weniger aus Bilder holen by Walter Ebert
Weniger aus Bilder holenWeniger aus Bilder holen
Weniger aus Bilder holen
Walter Ebert1.9K views
WordPress mit Composer und Git verwalten by Walter Ebert
WordPress mit Composer und Git verwaltenWordPress mit Composer und Git verwalten
WordPress mit Composer und Git verwalten
Walter Ebert1.6K views
High Performance Images by Walter Ebert
High Performance ImagesHigh Performance Images
High Performance Images
Walter Ebert5.9K views
HTTPS + Let's Encrypt by Walter Ebert
HTTPS + Let's EncryptHTTPS + Let's Encrypt
HTTPS + Let's Encrypt
Walter Ebert1.8K views
WordPress-Templates mit Twig erstellen - PHPUGFFM by Walter Ebert
WordPress-Templates mit Twig erstellen - PHPUGFFMWordPress-Templates mit Twig erstellen - PHPUGFFM
WordPress-Templates mit Twig erstellen - PHPUGFFM
Walter Ebert2K views
WordPress-Themes mit Twig entwickeln by Walter Ebert
WordPress-Themes mit Twig entwickelnWordPress-Themes mit Twig entwickeln
WordPress-Themes mit Twig entwickeln
Walter Ebert2.9K views
Bilder einbinden ist kein Thema, oder? by Walter Ebert
Bilder einbinden ist kein Thema, oder?Bilder einbinden ist kein Thema, oder?
Bilder einbinden ist kein Thema, oder?
Walter Ebert1.9K views

Recently uploaded

Marketing and Community Building in Web3 by
Marketing and Community Building in Web3Marketing and Community Building in Web3
Marketing and Community Building in Web3Federico Ast
15 views64 slides
How to think like a threat actor for Kubernetes.pptx by
How to think like a threat actor for Kubernetes.pptxHow to think like a threat actor for Kubernetes.pptx
How to think like a threat actor for Kubernetes.pptxLibbySchulze1
7 views33 slides
Affiliate Marketing by
Affiliate MarketingAffiliate Marketing
Affiliate MarketingNavin Dhanuka
18 views30 slides
hamro digital logics.pptx by
hamro digital logics.pptxhamro digital logics.pptx
hamro digital logics.pptxtupeshghimire
10 views36 slides
The Dark Web : Hidden Services by
The Dark Web : Hidden ServicesThe Dark Web : Hidden Services
The Dark Web : Hidden ServicesAnshu Singh
16 views24 slides
ATPMOUSE_융합2조.pptx by
ATPMOUSE_융합2조.pptxATPMOUSE_융합2조.pptx
ATPMOUSE_융합2조.pptxkts120898
35 views70 slides

Recently uploaded(6)

Marketing and Community Building in Web3 by Federico Ast
Marketing and Community Building in Web3Marketing and Community Building in Web3
Marketing and Community Building in Web3
Federico Ast15 views
How to think like a threat actor for Kubernetes.pptx by LibbySchulze1
How to think like a threat actor for Kubernetes.pptxHow to think like a threat actor for Kubernetes.pptx
How to think like a threat actor for Kubernetes.pptx
LibbySchulze17 views
The Dark Web : Hidden Services by Anshu Singh
The Dark Web : Hidden ServicesThe Dark Web : Hidden Services
The Dark Web : Hidden Services
Anshu Singh16 views
ATPMOUSE_융합2조.pptx by kts120898
ATPMOUSE_융합2조.pptxATPMOUSE_융합2조.pptx
ATPMOUSE_융합2조.pptx
kts12089835 views

Hero Video Performance