cross-posted from: https://discuss.tchncs.de/post/22423685
EDIT: For those who are too lazy to click the link, this is what it says
Hello,
Sad news for everyone. YouTube/Google has patched the latest workaround that we had in order to restore the video playback functionality.
Right now we have no other solutions/fixes. You may be able to get Invidious working on residential IP addresses (like at home) but on datacenter IP addresses Invidious won’t work anymore.
If you are interested to install Invidious at home, we remind you that we have a guide for that here: https://docs.invidious.io/installation/..
This is not the death of this project. We will still try to find new solutions, but this might take time, months probably.
I have updated the public instance list in order to reflect on the working public instances: https://instances.invidious.io. Please don’t abuse them since the number is really low.
i absolutely despise youtube. these fuckers are putting ads on paused videos now, and then this.
they will never get better. only worse. we need regulations badly.
We need a competitor badly.
Competitor with no content, users is not a competitor. Youtube should be forced to share content they do not own. Just for the sake of competition.
The content isn’t the problem. It’s the delivery system. No one else has the storage and network capacity that Youtube has. And as a result of that, no one else has the built-in audience Youtube has. Putting your videos on YT is simply the best way to get views.
I use odysee, and so far it’s been nice.
rumble is pretty good
fuck off out of here with your nazi platforms
Pretty much every Alternative Tech platform also has a huge far right population Lemmy is an exception to this but has a decently sized far left population instead I dunno how it is now but a lot of people complained a couple of weeks ago about Nazis joining Bluesky and one of the guys from Bluesky covering them
that’s true, but platforms like rumble were created to be homes to the far right. we shouldn’t encourage their existence.
Mastadon has a huge far right population?
Poast is listed as one of the biggest instances You just don’t notice it on Mastadon since a lot of them are defederated
Gab and Truth.social are Mastodon instances, just defederated by everyone else in case of the former, and not federating and pretending they’re their own thing in case of the latter.
I am apolitical
Well that’s not true. You’re very pro-genocide, as long as it’s against Palestinians. That’s pretty political.
Not really, i just don’t want to see another islamist state
Paying Nebula subscriber here 🙋♂️
Pony up or your call for a competitor doesn’t mean anything. People don’t want ads? Fine. There has to be another revenue stream. Server capacity costs money, making a website and app cost money, and video creators need to eat.
Then isn’t the obvious move to just pay for youtube?
I also do that. But Nebula is more thoroughly creator friendly. 50% of net profits go to creators and are divided by their share of watch time. That is a far more creator friendly policy than YT having a closed ad algorithm and you just get what you get. The YT display algorithm is also famously opaque and has some bullshit nanny filters on it such that you can’t actually make a faithful video about something like a historical massacre without being demonetized and hurting your channel in the algo.
There’s a lot I like about YT and being a premium subscriber does benefit creators there but I think Nebula is a next step in that evolution and it’s off to a decent start.
I pay for both.
Absolutely this. I pay for both my Proton and Notesnook accounts. No ads, no trafficing my data, and services I like and believe in.
Whatever happened to dailymotion?
Does anyone really post anything to Dailymotion besides blatantly unauthorized TV stuff? I can’t imagine it’d be very good vibes for anyone trying to make an honest living with original content over there.
Dailymotion does not allow for commenting anymore. That’s why I stopped using it.
You want regulations on ads for a free service?
The entitlement is wild.
Free or not, monopolies should be regulated.
Do you pay for nebula?
Yes, and ads should be regulated regardless of whether the service is free or not. Same way you can’t put outright porn on a highway billboard.
Works for Albania.
Its not like google fucking earned that money anyways. You don’t earn billions of dollars.
Think about it. If you earned a million dollars a year, you’d be set for life. If you lived for a full hundred years you’d have only made 1/10th of a billion dollars. Despite the fact that its still more money than either of us will probably ever see.
The people who operate google have billions with an s at the end. Think about the hardest working person you’ve known. Think about how little money they made.
Now ask yourself, what did the people with billions do to earn that money? How hard did they have to work to justify it, and how is that level of work even humanly possible? How would a bunch of spoiled overgrown trustfund fratboys find it in themselves do that work?
They fucking don’t. The only people who get that rich do it by cheating, and stealing, and fucking people over. Those fuckers owe us a lot more than video streaming services.
👌👍
They’re a monopoly that relies on users to produce content. You see, in a functional capitalist system, when one supplier deliberately hinders competition through unfair trade practices, they are made to change their methods in order to foster competition.
When that system is corrupted and fails to act in a timely manner, all bets are off.
You know where else you can go to find the billions of videos users have uploaded? No. How did it get that way? Just, luck? No.
Yes, we want regulations on ads in YouTube, and it’s an ignorant and arrogant position to call that “entitled”.
You’ll never get upvotes for telling people this reality, but you are of course completely correct.
If only we saw as much enthusiasm for voting generally as we see for taking ads off YT. Maybe we’d actually get a government that was willing to regulate titans.
YouTube will not change until people stop using it. And people do not want to put up with the inconvenience of not having a YouTube type service again for the amount of time it would take for YouTube to change or a viable competitor to take their place, it really is that simple.
Are YouTube and Google terrible? For sure, but it only got this way because the only backstop to holding them accountable, the consumer, has proven that they will choose putting up with shitty products and services in the name of convenience 9 times out of 10.
Same reasons that ad tiers are gaining a foothold in streaming services like Netflix. The consumer has shown they are fine with it.
Time to pirate YT content and upload to usenet to be automatically downloaded using sonarr
Yes but literally throwing together a script to download the days subscription videos to a jellyfin media drive would be stupidly simple.
Sure, but not as convenient 🤷🏻
It already exists, even as a Docker. Not as simple as an *arr style interface, but it works great.
(ytdl-sub)[https://github.com/jmbannon/ytdl-sub]
Well you know what they say “Great minds think quicker than mine and probably have already had that thought.”
“Stupidly simple” might be overselling it when it comes to the masses adopting it. Not everyone is adept at “throwing together a script.”
That being said, I’m all for helping the masses adapt.
“Give me a Python script using yt-dlp that I can run on a cronjob that will download the videos from any of my subscribed channels since the last time the script was run”
You can use the following Python script to download videos from your subscribed channels since the last run. This script uses
yt-dlpand stores the last download timestamp to track new videos.First, ensure you have
yt-dlpinstalled:pip install yt-dlpThen, create a script called
download_videos.py:import os import json import subprocess from datetime import datetime # Configuration last_run_file = 'last_run.json' download_directory = 'downloads' # Ensure the download directory exists os.makedirs(download_directory, exist_ok=True) # Load the last run time if os.path.exists(last_run_file): with open(last_run_file, 'r') as f: last_run = json.load(f)['last_run'] else: last_run = datetime.now().isoformat() # Update the last run time to now current_run = datetime.now().isoformat() # Command to get videos from subscribed channels since the last run command = [ 'yt-dlp', '--download-archive', 'archive.txt', '--output', f'{download_directory}/%(title)s.%(ext)s', '--date-after', last_run, '--no-post-overwrites', '--merge-output-format', 'mp4', 'https://www.youtube.com/channel/CHANNEL_ID', # Replace with your channel URL ] # Run the command subprocess.run(command) # Save the current run time with open(last_run_file, 'w') as f: json.dump({'last_run': current_run}, f) print("Download complete. Next run will check for videos since:", current_run)Setting Up the Cron Job
-
Make the script executable:
chmod +x download_videos.py -
Open your crontab:
crontab -e -
Add a line to run the script at your desired interval (e.g., daily at 2 AM):
0 2 * * * /path/to/python /path/to/download_videos.py
Notes
- Replace
CHANNEL_IDin the script with your actual channel IDs or use a playlist URL if preferred. - The
archive.txtfile keeps track of already downloaded videos to avoid duplicates. - Adjust the paths to Python and your script as needed.
Another example, which i can personally verify has been working fine for months. It works a bit different to the above, it downloads the latests 2* vids that are not already downloaded and runs once every hour with cron. I also attempted to filter out live vids and shorts.
Channels i am “subscribed” too are stored in a single text file, it also uses the avc1 codec because i found p9 and p10 had issues with the jellyfin client on my tv.
looks like this, i added categories but i don’t actually use them in the script besides putting them in a variable, lol. Vid-limit is how many of the latests vids it should look at to download. The original reason i implemented that is so i could selectively download a bulk of latests vids if i wanted to.
Cat=Science Name=Vertitasium VidLimit=2 URL=https://www.youtube.com/channel/UCHnyfMqiRRG1u-2MsSQLbXA Cat=Minecraft Name=EthosLab VidLimit=2 URL=https://www.youtube.com/channel/UCFKDEp9si4RmHFWJW1vYsMA#!/bin/bash # Define the directory to store channel lists and scripts script_dir="/.../YTDL" # Define the base directory to store downloaded videos base_download_dir="/.../youtubevids" # Change to the script directory cd "$script_dir" # Parse the Channels.txt file and process each channel awk -F'=' ' /^Cat/ {Cat=$2} /^Name/ {Name=$2} /^VidLimit/ {VidLimit=$2} /^URL/ {URL=$2; print Cat, Name, VidLimit, URL} ' "$script_dir/Channels.txt" | while read -r Cat Name VidLimit URL; do # Define the download directory for this channel download_dir="$base_download_dir" # Define the download archive file for this channel archive_file="$script_dir/DLarchive$Name.txt" # Create the download directory if it does not exist mkdir -p "$download_dir" # If VidLimit is "ALL", set playlist_end option to empty, otherwise set it to --playlist-end <VidLimit> playlist_end_option="" if [[ $VidLimit != "ALL" ]]; then playlist_end_option="--playlist-end $VidLimit" fi yt-dlp \ --download-archive "$archive_file" \ $playlist_end_option \ --write-description \ --write-thumbnail \ --convert-thumbnails jpg \ --add-metadata \ --embed-thumbnail \ --match-filter "!is_live & !was_live & original_url!*=/shorts/" \ --merge-output-format mp4 \ --format "bestvideo[vcodec^=avc1]+bestaudio[ext=m4a]/best[ext=mp4]/best" \ --output "$download_dir/${Name} - %(title)s.%(ext)s" \ "$URL" doneYeah this is more elegant and closer to what I’d actually want to implement. I was more just showing what could be done in literally thirty seconds on the can with ChatGPT.
I knew i recognized that output.
Mine is actually also made with the help of Chatgpt but manually refined and tested.
-
Same reasons that ad tiers are gaining a foothold in streaming services like Netflix. The consumer has shown they are fine with it.
Yep, I remember when Netlfix first put it out there that they would start with the ads, and everyone on reddit was like, “Canceling my Netflix right now!!”
Netflix is doing just fine without the 5 redditors who actually did cancel it. lmao
the problem is so many people are willing to say they’ll take a stand.
but when the time comes, the mindnumbingly overwhelming majority suck it up, because they must have their precious shiny and can not suffer even the mildest of inconvenience.
Its my biggest gripe in gaming, but its a enormous gripe just in general, with everything. because it doesnt matter if you are talking about appliances, creative software, video games, streaming services, stores, etc.
To summarize what I was telling another person. The number of people who care are far outnumbered by the number of people who don’t. It doesn’t matter if you or I or all 10,000 (just a random number for the sake of argument) of the people subscribed to a sub like this were to cancel when r/justworks or r/normie (made up subreddits for the sake of argument) has 100,000,000 who don’t give a damn about computers, privacy, or anything else beyond the service working or not.
I agree. Tech communities have a habit of drastically over estimating how much everyone else cares about the details of tech.
Even something as simple as PC gaming scares off a lot of people because of the perception that you need to be some kind of tech wizard in order to cobble everything together to make a game run. Actual cobbling together of software to pirate (no matter how simple it seems to people in the know) is just a bunch of technobabble.
I have people whom I still need to explain copy and paste to on a regular basis. Trust me, I understand.
this is the primary reason i advocate for more piracy, and even legal protections for piracy, in some capacity.
It’s one of the few spaces i consider to be a “truly free market” when it comes to economics.
I know you weren’t using the number 5 as a hard example, but a thing that people still don’t seem to realize is that the people in threads like this are the people that actually care. Even if the few thousand redditors who subscribe to a subreddit where they discussed that topic were to all (and I mean 100% of them) cancel there subscriptions. That is still only a drop in the bucket for Netflix. Losing a few thousand subscribers is still nothing if they made more money with the addition of ads.
It is interesting to me that the chorus always talking about “switching” to piracy after every incident is also intimately familiar with piracy already. Almost as if it’s just people who already pirate talking to each other about how hard they are going to pirate. Meanwhile general audiences don’t care.
these are also the people who would pay more for quality service if it was available.
“Socialist Chaos Trow” lol
deleted by creator
While I agree, I have a hard time seeing how people will stop using it until the field changes. Maybe in 10 years it will the the MySpace of the sitcom era, but right now it’s still growing. That growth is giving it carte blanche to manipulate the users as it sees fit. Regulation might impact it, but it’s still a bit of a Goliath.
- Compared to 2023, YouTube’s user base has grown by 20 million this year, representing a 0.74% increase. From Global media insights
Also the active user base is 2.7 billion people in 2024 from the same source above.
The alternatives are out there, but just not in the same league.
Regulation might impact it
I’m having a hard time seeing any bill get passed that supports the rights of users to watch videos without the ads that support the creators and the platform that they’re watching.
regulations for ad quality, and privacy, are almost certainly what they mean by that.
I don’t think this requires an act of congress. I think you might see more consumer advocation on the part of FTC (although it doesn’t currently regulate online broadcast), or potentially the CFPB.
Admittedly it’s more likely to see the EU do some regulations, but it all depends on the election.
Not just invidious, they’ve just de facto blocked video embedding:

If you’re wondering how a viable competitor could arise, other companies needing a video hosting solution that they can rely on to run their storefronts is a perfect use case. This is the Humble Bundle storefront, and they could pretty easily spin up a peertube instance. If that became commonplace, it could be one way for peertube to become ubiquitous.
EDIT: This is related to my VPN I believe, but storefronts still aren’t going to be happy if they can’t rely on their storefronts working for everyone.
yo rainworld i used to have a friend that was a fan of that game
It’s a 10/10 for me! Amazing game but definitely not for everyone
aww, thanks!
-rain worldWhat happened?
I dont feel like i wanna say it on lemmy
I wasn’t curious about your friend until this comment lmao. Cheers friend.
Professional hosting for business use is not hard, and fairly common even. But these make up a tiny fraction of YouTube videos, and they mostly post there to get organic growth and be suggested to people already watching YouTube.
Sure but it’s really common to see embedded youtube videos on storefronts, and if storefronts en masse abandoned it that’s one more piece of the market that youtube has lost.
They can’t keep locking it down and not lose market share, is my point. They’re enshittifying so much, so fast, and eventually there will be a tipping point.
They can’t keep locking it down and not lose market share, is my point
They can very much afford to lose a tiny amount of marketshare in exchange for a massive increase in ad and subscription revenue, is my point.
“Massive increase” I think needs a source.
And they rely on the network effect to be the de facto standard video hoster. Every little bit of that network that they carve off while they’re enshittifying brings them closer to the critical point where people can afford to ditch them.
The logic that they can “afford” to lose marketshare is exactly what will make them keep losing it until people migrate en masse and they lose all of their marketshare.
“Massive increase” I think needs a source.
Don’t have one. Pure speculation. Much like yours, I assume? Unless you have a source to the contrary?
How often do you see professional videos on the trending page on YT?
Source for what? The network effect? I gave you a link, you can read.
And youtube is enshittifying.
These are both well-established effects. My sourcing is finished now. It beats your “pure speculation” unless you have something else you want to add.
Youtube is now big enough for not caring about the network effect.
- Start companies
- make a free product with network effect
- gain a lot of users
- now that you have your user base, user growth is not as relevant anymore and therefore network effect is not needed anymore
- enshitificate for more ad revenue, more tracking and direct subscriptions
- profit (finally after decades)
Capitalism is just fucked 🤷🏻🏴☠️
Seems it’s fixed now?
Could be, maybe it’s intermittent, but the more times they try to lock this shit down and it stops working for storefronts, the more unreliable it becomes.
What percentage of visits can they afford to have this error happen before they seek alternatives? If it were my business and I didn’t know how many customers were closing the store page because the video didn’t play and they lost interest, I would be immediately looking for an alternative.
EDIT: Still broken for me. I can fix it by turning off my VPN, but storefronts are going to want to sell to everyone, including the VPN users.
You can still watch YouTube without ads using grayjay.app including sponsor block.
Thanks to Louis Rossman
Or just use Firefox with ublock?
Sure, that works too, however with grayjay you can follow creaters across platforms. So in case someone’s account gets banned by YouTube due to whatever bullshit reason, you can continue following them on other platforms. Next to that you won’t get spammed with Shorts junk. If you want to download a video to watch it offline, you can actually watch it offline (you don’t require a connection like with YouTube to watch something offline)
But ur data gets raped if u don’t use a VPN + no account (but then u don’t get to see age restricted material)
Yo did someone hit you in the head with a golf club? Why are you talking like that?
They grew up before t9.
What’s t9?
T9 was a rapid entry system for sending texts using a number pad on a phone.
Instead of doing hello as 44 33 555 555 666 you could do 43556 and it’d predict ‘hello’.
Holy shit, someone that ACTUALLY knows what T9 was!
Most people think that T9 was the method of typing on the telephone keypad, but no its an improvement on that!
Predictive text was another name for it.
Ooookay… How’s that relevant here tho… I’m so confused
Isn’t it true tho? YouTube’s a privacy nightmare- they know everything about ur content preferences, ur political learnings, everything. Without a VPN + no account, say goodbye to any semblance of privacy.
grayjay doesnt have return youtube dislike
It has its own like and dislike system, so it’s not cluttered by yt bots.
The elites don’t want you to know but “[y]ou may be able to get Invidious working on residential IP addresses (like at home)”
Following their guide gives a local Invidious client, don’t forget to 1) copy their production compose file instead of using the one on git and 2) change “hmac_key”… from my experience setting up cron (
crontab -e) to restart the docker container once per day keeps the Invidious docker healthy
Edit: here are some alternatives for popular Google services. Not in anyway related to the above (smirk
- Google itself: SearXNG (try searx.be first), one of the easiest services to self-host
- Gmail/calendar: a lot of people seem to swear by one of Proton Mail, Tutanota or Mailbox.org. Self-hosting is possible but challenging
- Google Drive: You mean Nextcloud?
- Google maps: Organic Maps is actually getting pretty good now
- Google Chrome: at the very least there is Chromium… obviously there is Firefox and Firefox forks (such as Librewolf), as well as other smaller browsers
- Google Play: F-Droid hosts a lot of FOSS stuff, and there are alternative ways to access Play (such as Aurora Store)
- Android: a bit more difficult… but there is LineageOS, GrapheneOS, and similar stuff
If you do this, I would be fully prepared to lose access to all your Google services along with anyone else who may use Google services on the same IP. Gmail, Play store, Chrome, etc, etc can easily be wiped out with a ban from Google and this can seriously fuck people’s day up if they’ve used Gmail and have 2FA setup on any external account.
I guess I forgot to take that into consideration… I’m not worried about Google banning my IP since I essentially don’t use any Google services at all and my home IP is hidden behind a wireguard tunnel, but yes that is a valid concern
But I mean someone can just spin it up on their home network so… No way 192.168.0.1:3000 can get someone into trouble right
Like any other web services, Google can see the public ip your personal invidious instance is using to access youtube servers. The local
192.168.x.xip are for internal access.
Cory wrote about this in his essay, "Unpersoned". I’ve been using gmail as a spam catcher for all the sleazy sites you need to register with, but didn’t realize how I’ve made a trap for myself when, for example, my prescriptions need 2 factor authorization via my gmail. This is going to be a hard one to detangle.
At least until they start blacklisting IPs using Invidious.
yt-dlp still works.
A spark of hope in a dim world.
I’ve seen it go down in some cases on VPNs, so it could be a matter of time (or they’ll find a solution again and the back and forth will just continue).
My god, what if its on google’s chopping block next?
Donate to the EFF for fighting that fight in court already.
Right now we have no other solutions/fixes. You may be able to get Invidious working on residential IP addresses (like at home) but on datacenter IP addresses Invidious won’t work anymore.
This might explain why mine has been reliable even though it hasn’t been updated in months. I guess add me to the list of confirmations that it works on residential connections.
I wonder if some kind of mesh might work. Maybe like a secret Santa type deal. By that I mean everyone who connects, gets a randomised, anonymous partner or partners. Everyone in the swarm streams for each other.
For Android users, I highly recommend NewPipe as a YouTube client
Or Tubular, which is an up to date fork with Sponsorblock support as well
Self hosted option is a docker image. Probably not difficult to set up.
You can block YouTube ads simply by connecting to an Albanian VPN server.
Same thing with Syria, Ukraine, Russia …
Why does that work?
nobody wants to advertise in albania lmao
Ads on streaming media are against the law works for twitch, too
In that case, get some Invidious instances running on servers in Albania, problem solved.
That’s based as hell
🇦🇱
For those who are want something similar to invidious, you can try youtube-local (not my project, I am just a user). It is a minimal python youtube client, and functions similar to other frontends, but runs locally. You lose some amount of privacy (youtube still has a general idea of who is watching with IPs), but it is not very exact, and there is an option to use tor to get the content. You can also enable sponsorblock, or hide yt-shorts.
Start asking your favourite content creators to post on PeerTube.
And while we’re at it, stop calling them ‘content creators’
EDIT: to clarify, my stance on this is that ‘content creator’ devalues the human endeavour behind a piece of work (or content, if you will). Instead it’s just slop for the machine, and who cares what it is as long as it gets numbers, right?
Why? What else would we call them?
Entertainers. Show women/men.
Showman/woman refers to a pretty specific type of performer, I.E someone who is on stage typically.
Entertainer isn’t a label I’d necessarily apply to educational content, for example.
Then call them educators, or presenters… teachers, maybe, depending on the nature of their work
Yes it’s much better to use
“comedians/teachers/musicians/educators/entertianers/phonereviewers/sportscommenters/singers/journalists/programmers/documenters/analysts/lawyers/lockpickers/politicians/presenters/trolls”
… than…
“content creators”.
Call them what they truely are. Digital panhandlers
To answer the “why”, it’s because the word “content” is kinda meaningless. Instead of making films, documentaries, talk shows, reference guides, cartoons… it’s all just this generic “content” slop that’s just there to feed the machine
What a strange opinion.
It’s not that strange, I have a friend who literally said the same thing today in reference to one of his favourite channels shutting down. He preferred to call the stuff on this channel art, rather than content. I agree with the person above too, the term has always bugged me. It makes it sound so mass produced, like your job is to just produce meaningless “content” for people to mindlessly consume. And to be honest, that’s exactly what the mainstream YouTube culture is about.
I agree with this a lot. I really do not like the term “content”. It is like going to a recipe for some “slop”, like using a term that is just a catch all for everything tossed on a plate.
Art is great. Movies, music are also fine terms. And so is simply saying they made a video. Watering it all down to the term “content” is just so boring and mind numbing.
Not really. The term “content creator” is corporate speak. Google’s ad-based business model has a binary classification: content and ads. It’s not an inaccurate term, but using it implicitly endorses the corporation’s binary world view.
What is the alternative name for someone who creates content for a platform?
Well, we start by referring ta work not as “content”, but as what it actually is. Then work from there. For instance, one could ostensibly call Ahoy a filmmaker or a documentary maker.
… Which is a type of content.
There’s a lot of content that doesn’t fit neatly into a category though, because it was made by someone turning on a camera and making a video without worrying about any commercial concerns. So calling someone like that a creator is a catch all term for anyone making content for a platform.
Do we need a general term? Someone who uploads their videos to a video platform is probably a “video producer”.
So what should we say when discussing people who make video, audio, text media?
I see their point about “content”, where, on YouTube, for example, it devalues the videos as subordinate to YouTube as a platform, but I think as people use the word “content” it loses that connotation.
video → video producer
audio → musician, podcaster, … depending on the type of audio
text media → author
So what word should we use when describing all of those people in one group?
Time wasters.
And how are they going to make a living to keep producing videos?
I’d say ask them to join Nebula.
Remember when people posted on YouTube for fun? It’s only when it became a viable business that the platform turned to shit.
Ah yes, youtube now is just one big ad and sponsorship cesspool flooded with clickbait and misinformation and with highly privacy invasive protocol. Its a souless capitalisic corporate machine. I dont know why people would still use it. Just let youtube die.
Paying Nebula subscriber here 🙋♂️
I can’t stand hearing people whine about wanting everything for free and how DARE people try to make a living so they can eat in between making videos!!!
Nebula is cool and all, but at the end of the day, it’s still a commercial platform, and those do tend to enshittify and depend a lot on externalities.
As creators grow more dependent on Nebula, Sam and the team of original Nebula creators can wield more power and change the rules.
They already dictate the kind of content that is allowed - for example, Second Thought, one of the original creators behind Nebula, was asked to leave as he doesn’t agree to change public stance on Israeli-Palestinian conflict (he is pro-Palestine). This has suddenly left him without a source of revenue necessary for the production to expand, and has put him into debt.
Solution? Probably independent sponsorships that would go both on YouTube and PeerTube videos. Or a creator reward system like in Lbry/Odysee. Something that would allow to reward creators without going full commercial.
That depends. If they only make a living with YT ads, then it’s going to be hard.
I guess I forgot things like Patreon which could be a valid option. Although I’m neither a fan of subscribing to specific creators nor am I particularly fond of Patreon.
With Nebula my perception is that I pay a monthly fee and they can figure out who gets what depending on whose videos I watched. I don’t need to be particular in my action on who to support.
Nebula is a good option, but now you’ve created a paywall. Now only people who can afford it, can watch the content and what is to keep Nebula from upping the price of the subscription?
If ads is out of the question, then content creators need to use sponsors and patrons, if they want to make a living.
I just want the videos no creator makes money on. I expect thats about 50% at least. Let’s start there. Put them in the Library of Congress and YouTube will be free to enshittify themselves into oblivion without complaint.
Civvie 11 is a old head. How do I convince him?
or odysee ig but i cannot find a good peertube instance i can post in
What are your criteria for a good instance? I host one myself, so genuinely curious.
The age limit yeah I think the peertube instances on their site follow the gdpr
Yea, a minimum of 13 years old is pretty common. Also something I agree with, as I don’t think kids under 13 should be on social media.
talking about most of them have a minimum of 16 but 13 is fair honestly its everywhere but i am 14
It’s 13 years on mine, if interested: peertube.wtf
Yeah i already signed up but my videos require approval i registered before this reply
Sad to hear. Newpipe is still working fine (as of a couple minutes ago) if that helps. That’s through a residential IP. I will try yt-dlp from a data center IP when I get a chance. I hope they haven’t blocked that.
So if Google can ban our IP if caught using this, could you not use some type of dynamic IP mechanism every time they ban the IP?
Probably would be a good idea, I’m guessing this type of thing could be problematic for google if the IP bans started stacking up, probably also if they can’t just look up what the site is using and banning it manually, which let’s be fair and not give them too much credit, is exactly what they’ve been doing. They look up that some invidious or downloader site is hosted on some IP address and block it manually, or blocking its whole range. Something that doesn’t cause many headaches for others outside of those services but would cause a lot of problems if those sites were run with reverse-proxying to dynamic IPs which caused YouTube blocks for legitimate users, including in public places.



































