It is not as simple as that. Even if videos are prevented from being auto-playing, people resort to much much worse techniques. For example, GIFs - which are much bigger that the corresponding video, worse for battery life etc. To combat this, Chrome recently enabled autoplaying of videos if the video is muted on mobile browser. Hopefully this gets the number of people using GIFs down. Or who knows, people might star…
Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
141–150 of 330 posts
Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#142Earlier quoted context omitted.
I think that maybe the submitters are running a variety of ad-etc-blocking software, and so they're not seeing it.
Looking at Google Analytics for a website we were about to launch, I was surprised to see hits from others in the development team, tracked by Google. I block Google Analytics (and many other things), and was surprised that none of my colleagues do the same.
Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#143Earlier quoted context omitted.
I think that maybe the submitters are running a variety of ad-etc-blocking software, and so they're not seeing it.
Looking at Google Analytics for a website we were about to launch, I was surprised to see hits from others in the development team, tracked by Google. I block Google Analytics (and many other things), and was surprised that none of my colleagues do the same.
Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#144Earlier quoted context omitted.
I think that maybe the submitters are running a variety of ad-etc-blocking software, and so they're not seeing it.
Looking at Google Analytics for a website we were about to launch, I was surprised to see hits from others in the development team, tracked by Google. I block Google Analytics (and many other things), and was surprised that none of my colleagues do the same.
Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#145Here's Tampermonkey: https://chrome.google.com/webstore/detail/tampermonkey/dhdgf...
Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#146Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#147Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#148There are situations when you need to play video on load. (for example, you want a nicely designed content or DIVs.) But Maybe a browser option to enable/disable video playback would solve this. Maybe disabling audio would be as an option, so as webdesigner you can show the relevant visual content but without sound.
> There are situations when you need to play video on load No there really aren't, not on page load [0]. Show a nice still with a big play button on it - people know what that means. It's probably going to load faster too, so people won't be stuck staring at a blank section for 15 seconds. Or even worse, start reading and scrolling the first two paragraphs, then wonder why some audio started playing. And as others ha…
That could be handled by allowing the media tag to be changed and restarted with a new URL during (and only during) the "ended" event[1]. That would allow continuing an already playing video with minimal side effects. E.g. only alow something like this:
var video = document.getElementsById("current_video_tag");
var play_next_video = function () {
video.src = "https://exmple.com/next_video_url";
video.currentTime = 0;
video.play();
});
/* this should work */
video.addEventListener("ended", play_next_video);
/* but these shouldn't */
video.addEventListener("progress", play_next_video);
setTimeout(play_next_video, 1000);
[1] https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Me...Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#149Earlier quoted context omitted.
I'm taking a more drastic way; turning media.{mp4, webm, ...}.enabled into False never let YouTube and other media autoplay(even play nomally) without any addons. When I want to watch videos, download them by youtube-dl and watch locally.
You download YT videos before watching them? Seriously? Sometimes the suggestions on HN are literally insane in the amount of effort people go through to avoid things that wouldn't be a problem in the first place if you did something simple like use adblock software. I saw some other post where a guy hand edits tens of thousands of entries in his hosts file... yeah dude what an amazing use of time.
Re: Dear Google, Apple, Mozilla, and MS: Please End Auto-Playing Media in Browsers
#150Earlier quoted context omitted.
Your know there are HN readers who write this crap. I wonder if they'll chime in on why they do.
At my last job at a web agency, I was told to make a newsletter popup that opened on first page load. I said to my project manager (he was a web developer before) that it was bad design and everyone finds it annoying. He said that the client wanted it, and I should just do it. I asked him, what if the client wanted a pink unicorn gif in the corner, should we just do that as well? Without telling the client that it do…