If anyone is interested, I'm working on a free online YouTube client website that doesn't show ads, has a separate login system that allows you to subscribe to users, without YouTube knowing anything about that. I need help with building the website, so anyone doing design / PHP is welcome to contact me. edit: Forgot to add, the website uses no JavaScript and doesn't track you at all. It also tries to implement most…
If you're building such a website, Google will shut it down quickly. It probably breaks some laws too (i'm not a lawyer).
YouTube now shows "An error has occurred" while ads running
51–60 of 131 posts
Re: YouTube now shows "An error has occurred" while ads running
#52It's quite staggering to think the risk adblocking poses to Google's business. They have virtually no business apart from ads. AFIAK they have marketshare in the UK (and maybe US) which surpasses print+tv. Can you imagine this 40 years ago? An invention which cuts out newspaper ads and time travels broadcast TV past the commercials? Staggering.
One is where you are searching something and they show you relevant offerings. Here, people are often happy to see the results, as they can move them toward their goal.
The other is where you are trying to do something (read a blog post, watch a video) and they want you to do something else (read about somebody's product, watch a video advertisement). Here many people are resistant, as it takes them away from their chosen activity.
My understanding is that Google makes most of their money from the first kind of ad, and that ad blockers mainly block the second. So I don't think this is a very big deal for them. In Google's shoes, I'd happily let people run ad blockers if they wanted. One, those people were unlikely to click on ads anyhow. And two, it's dangerous money. For their long-term success, they're much better off if they're doing things that customers actually like.
It's dangerous when companies get hooked on money that requires them to work against their users. Look at how much trouble TV networks have had adapting, for example; they just aren't clear on how to make great TV in the same way that places like HBO are. Or look at the sad, slow fall of Yahoo, which has always thought of itself as a media company. They were never able to do much with customer-focused acquisitions like Flickr because they never could quite understand them.
Re: YouTube now shows "An error has occurred" while ads running
#53Earlier quoted context omitted.
How are you going to play YouTube videos without ads?
The server fetches the video page from YouTube, and embeds the VP8+Opus video URL into my site's page with a tag.
Re: YouTube now shows "An error has occurred" while ads running
#54It's quite staggering to think the risk adblocking poses to Google's business. They have virtually no business apart from ads. AFIAK they have marketshare in the UK (and maybe US) which surpasses print+tv. Can you imagine this 40 years ago? An invention which cuts out newspaper ads and time travels broadcast TV past the commercials? Staggering.
Re: YouTube now shows "An error has occurred" while ads running
#55I'd sign up for a low tier Red. Don't watch too many videos maybe $1/$2 month for an ad free vid limit or ability to buy instant skips
This is the only reasonable response to this news. I find it remarkable how many people expect their content for free.
Re: YouTube now shows "An error has occurred" while ads running
#56Earlier quoted context omitted.
> videos through youtube-dl these days how do you find the video you want without using youtube? do you just use the youtube search interface then download the video by copying the url (w/o even clicking on the link to start the video buffer)
youtube-dl can fetch a video via its ID, the part after the "/watch?v= " in the URL. Combined with a video player, such as vlc, mpv, mpc-hc or similar, you can stream youtube videos without viewing from the youtube website. There are scripts available that make this less DIY, such as ones that launch your video player with youtube-dl when you load a page on youtube, though I do not have any of those on hand to show y…
Re: YouTube now shows "An error has occurred" while ads running
#57Earlier quoted context omitted.
If you're building such a website, Google will shut it down quickly. It probably breaks some laws too (i'm not a lawyer).
It doesn't break any laws since I don't play any videos which have forbidden embedding. Plus, technology like that has been mainstream in VLC, youtube-dl, etc, for ages. It uses the official YouTube API, and respects mosts of the Terms of Service, except the video fetching, which doesn't use the API at all, just loads the page on the server and catches the video stream.
As soon as you store any of their content on your server, even if in just RAM, you're fucked, because that's copyright infringement.
Re: YouTube now shows "An error has occurred" while ads running
#58Earlier quoted context omitted.
> videos through youtube-dl these days how do you find the video you want without using youtube? do you just use the youtube search interface then download the video by copying the url (w/o even clicking on the link to start the video buffer)
youtube-dl can fetch a video via its ID, the part after the "/watch?v= " in the URL. Combined with a video player, such as vlc, mpv, mpc-hc or similar, you can stream youtube videos without viewing from the youtube website. There are scripts available that make this less DIY, such as ones that launch your video player with youtube-dl when you load a page on youtube, though I do not have any of those on hand to show y…
Re: YouTube now shows "An error has occurred" while ads running
#59Earlier quoted context omitted.
If you're building such a website, Google will shut it down quickly. It probably breaks some laws too (i'm not a lawyer).
It doesn't break any laws since I don't play any videos which have forbidden embedding. Plus, technology like that has been mainstream in VLC, youtube-dl, etc, for ages. It uses the official YouTube API, and respects mosts of the Terms of Service, except the video fetching, which doesn't use the API at all, just loads the page on the server and catches the video stream.
Re: YouTube now shows "An error has occurred" while ads running
#60Earlier quoted context omitted.
The server fetches the video page from YouTube, and embeds the VP8+Opus video URL into my site's page with a tag.
Your server will probably get blacklisted for heavy usage or some arbitrary API violation. Do you have a plan to remedy or circumvent it?