piracy

Magazyn ze zdalnego serwera może być niekompletny. Zobacz więcej na oryginalnej instancji.

bzxt, w Has YouTube Blocked Your Adblocker Yet??

I have been having this problem 2 days ago, but I have started using NoScript in combination with UBlock Origin yesterday and i didn’t see any ads after that.

junusdenised420, w How to transfer a save file between pirated game versions.

Besides what the other commenter said you can probably download just the update from dodi and update your current install

butter, w Live sports for Chromecast with Google TV

If you’re looking for a round about solution, you can use whatever IPTV provider and link it to your Jellyfin.

This only makes any sense if you’re already using Jellyfin, of course

backhdlp, w How to code an extractor streaming platform?
@backhdlp@lemmy.blahaj.zone avatar

Try to learn from the source code of similar projects.

Nemila,

Like what project?

redditReallySucks,
@redditReallySucks@lemmy.dbzer0.com avatar

Maybe movie-web

dM9sxNPexK3bwZS, (edited )

YT-DLP has a list of extractors for lots of different sites. You could see if there are similar sites and see how their extractors work.

github.com/yt-dlp/yt-dlp/tree/master/…/extractor

Or Animescraper has extractors for them, but it was last updated 6 years ago.

github.com/jQwotos/animeDownloaders/tree/master

github.com/jQwotos/anime_scrapers/…/scrapers

gjghkk, w Multiplayer with DLC unlocker

i did use dlc unlockers to play a multiplayer game, and nothing ever happened, and i uninstalled after i get bored with it. But it might not work on Stellaris.

Krizsan0596,

I read on the csRin forums that CreamAPI works with Stellaris, that’s why I’m thinking of using it.

Xianshi, w 2023 Paid VPN Relationship and Corporate VPN Ownership Map

Torrenting is one thing but I wouldn’t be trusting a VPN to protect from anything to attract the heat of the law or government.

demystify, w What's the deal with Steamunlocked.net?

I remember it being blacklisted in Reddit’s r/piracy megathread, supposedly they used IGG’s cracks or something. I, however, never had any problems with them.

Tread with caution. Use steamrip.com or other safe sources if you can, and if you have to use this site, at least be wary, read comments and scan the fuck out of everything.

squaresinger,

Thanks for the warning. What’s IGG?

Platform27,

IGG is a cracking group with a mixed reputation. Early on they distributed malware, which continues to give them a negative reputation. Though, I haven’t heard of anything bad about them, in some time… some repackers also use their cracks, with no issues. I think they were the first that cracked the latest Armoured Core, for example.

HerculeanTardigrade,

Since when was IGG a cracking group? They're just uploaders. TENOKE is the one who cracked Armored Core. Repackers use SCENE/P2P cracks like RUNE, TENOKE, EMPRESS, SKIDROW, etc.

IGG is not a cracker. I personally don't trust them. I don't understand why they include unimportant files in their uploads.

  • Free Premium Accounts at OfficialMrB.com.txt (0.8 KB)
  • IGG-GAMES.COM.url (0.2 KB)
  • PCGAMESTORRENTS.COM.url (0.2 KB)
  • README.txt (0.3 KB)
  • _INSTALL TUTORIAL.txt (1.7 KB)

What is the point of including these files? They're irrelevant.

https://old.reddit.com/r/PiratedGames/comments/ulsttu/proof_that_i_g_g_games_is_unsafe/i7xbf32/

With or without malware, I ain't risking downloading my games from their uploads.

MazonnaCara89,
@MazonnaCara89@lemmy.ml avatar

IGG is bad because some of their repacks had their drm inside dll files, there were Ads built into the game at runtime, were found Cryptominers and startup malware included in their games and many other things.

smpl, w How to code an extractor streaming platform?
@smpl@discuss.tchncs.de avatar

I build a lot of tools like that and the first thing I do is to go to the developer tool in my browser and observe the network traffic. When you find the resource you’re after you scroll back and see what requests resulted in that URL. Going from those requests you figure out in the original static HTML document and resource, which parameters are used for the construction of the URL, that might require reversing some javascript, but that’s rare. After that you’ll have a pretty good idea how you obtain the video resource from the original URL. Beware of cookie set by the requests, they might be needed to access the next requests. For building my tools I use Perl or sometimes just Bash or a GreaseMonkey userscript to fetch and parse the urls and construct the desired output.

Honse, (edited ) w Has YouTube Blocked Your Adblocker Yet??

I’m going to start a discussion in the comments here about methods to bypass the message. I will add suggestions here, so leave comments if you find a method!

Methods to bypass Youtube Anti-Adblock:

  • The easiest method is simply to comply and turn off your adblock extension.My Method- My method, and the one that will likely work universally is as follows:

Install Extension Enhancer for YouTube™

Go to the extensions settings and ensure that under the Ads Management section, “Block Ads” is turned OFF

https://lemmy.dbzer0.com/pictrs/image/16230dc5-ade1-4c6a-b6f8-f0104a4b080d.png

Now find the Custom Script box at the very bottom and enter the following script. I did not write this code, it comes from egaudette on GitHub


<span style="color:#323232;">(function() {
</span><span style="color:#323232;">    'use strict';
</span><span style="color:#323232;">    var clickInterval = setInterval(skipAds, 5);
</span><span style="color:#323232;">    var ytpAdModule;
</span><span style="color:#323232;">    var miniAdd;
</span><span style="color:#323232;">    var skipButton;
</span><span style="color:#323232;">    var currentVideo;
</span><span style="color:#323232;">
</span><span style="color:#323232;">    function skipAds() {
</span><span style="color:#323232;">        ytpAdModule = document.querySelector('.ytp-ad-module');
</span><span style="color:#323232;">        skipButton = document.querySelector('button[class*="ad-skip"]');
</span><span style="color:#323232;">        miniAdd = document.querySelector('.ytp-ad-overlay-container');
</span><span style="color:#323232;">
</span><span style="color:#323232;">        if (ytpAdModule !== null &amp;&amp; ytpAdModule.innerHTML !== '') {
</span><span style="color:#323232;">            ytpAdModule.style.display = 'none';
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">
</span><span style="color:#323232;">        if (skipButton !== null) {
</span><span style="color:#323232;">            skipButton.click();
</span><span style="color:#323232;">            return;
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">
</span><span style="color:#323232;">        currentVideo = document.querySelector('video[class*="main-video"]')
</span><span style="color:#323232;">        if (currentVideo !== null &amp;&amp; currentVideo.duration &lt;= 5) {
</span><span style="color:#323232;">            currentVideo.muted = true;
</span><span style="color:#323232;">            currentVideo.play();
</span><span style="color:#323232;">            currentVideo.currentTime = currentVideo.duration;
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">})();
</span>

Lastly, ensure the “Automatically execute the script when YouTube is loaded in a tab” box is checked, and press Save

https://lemmy.dbzer0.com/pictrs/image/10b997a8-0a72-4616-8155-0cdfc59d7b59.png


I’ll add more methods as they are discovered!

Neato,
@Neato@kbin.social avatar

Why would this work when others get blocked? Is it a novel way to block YT ads that's not popular? Because I think YT isn't looking for specific extensions but looking for certain kinds of behavior.

Honse,

This method lets ads load for half a second but then get skipped instantly. i have not personally found a way to 100% block ads once ive gotten their block page.

nilloc,

I use greasemonkey to do a similar trick with the skip and dismiss buttons. But added random delays up to 2 seconds in an attempt to mimic a human clicking the button.

Also instead of an interval running, you can use MutationObserver and a callback to only run the code when the DOM changes and adds the button.

tombuben, w Has YouTube Blocked Your Adblocker Yet??

I pay for premium.

I spend like 20x time on YouTube compared to other premium streaming services, knowing the money at least partially goes to the creators and that it’s usually a much larger source of revenue than the midroll ads (and the fact I spend like 40% of my watch time on an iPad) makes it pretty worth it to me. Other than that I use uBlock on medium/high, but if there was an extention that could skip the sponsor segments inside the videos themselves I’d use it in a heartbeat.

Chef_Boyardee,

It’s a no-brainer. You get a music service at the same price as everyone else. They just add on ad-free YouTube. I don’t get why so many people hate the idea of it.

blaine,

I've had Google Play Music (and YouTube Premium as a freebie) since it launched at $7.99 per month. Folks like me who were grandfathered in at that price just got an increase to $13.99, which forced me to cancel. I can't afford restaurants or takeout anymore with inflation as bad as it is, and I guess I can't afford YouTube either.

snowbell,
@snowbell@beehaw.org avatar

I don’t like YouTube Music

Flynn_Mandrake,
@Flynn_Mandrake@lemmy.dbzer0.com avatar
DaGeek247,
@DaGeek247@kbin.social avatar

if there was an extention that could skip the sponsor segments inside the videos themselves I’d use it in a heartbeat.

sponsorblock does that. it's crowd sourced, so it doesn't always work with the small channel newest videos, but it's very good at what it does considering.

Thorny_Thicket,

It’s quite amazing how well sponsorblock works really. I spend a shit ton of time on youtube and I almost never have to mark those sections of the video myself because someone else did it already.

nudnyekscentryk,
@nudnyekscentryk@szmer.info avatar

someone previously marked all breaks inbetween numbers in this 3h video as intermissions. though now I see they’ve been removed and there’s merely one highlight in there

bamboo,

If you have access to a VPN you can also buy premium for a much smaller price in another region. I bought a year for 16 USD via India.

WtfEvenIsExistence,

Wait till they start assigning pricing based on your payment info’s location.

Lobo6780,

I buy it in turkey

ninpnin,

if there was an extention that could skip the sponsor segments inside the videos themselves I’d use it in a heartbeat.

arrow key

nudnyekscentryk,
@nudnyekscentryk@szmer.info avatar

SponsorBlocks does that but it either requires non-webkit Firefox or Revanced, which means you can’t get it any way on iOS

veroxii, w Stremio + Torrentio + Real-Debrid is perfect for those folks who want a simple setup

I have a pretty advanced setup. Big dual xeon server with 40TB of drives. Dockerized everything running radarr, medusa, deluge, jackett, vpn etc. I’m a pixel snob and love the 4k remuxes with lossless Dolby sound for my Atmos speaker setup.

BUT I read about stremio toreentio and RD a few times here in this community and thought I’d install it on my NVIDIA shield.

And we use it ALL THE TIME!

It’s just so easy even for someone with my hugely automated setup.

It’s perfect for anything you’re probably only going to watch once.

The Sopranos, The Wire, Better call Saul… Yeah download it cause I rewatch it often.

Fboy Island or whatever guilty pleasure reality tv garbage… Stremio it is.

1917 or The Godfather. Download highest quality. Legally Blonde for movie night with my daughter … stremio.

It’s a great little app and setup.

Lennard,

I’m curious why someone who is able to afford 40TB of drive space is interested in piracy. Is it more about archiving and ownership than saving a buck?

Stuka,

I’m not the guy above, but I dont see how they’re comparable really. One is god knows how many monthly subscriptions for the rest of time, or the up front cost of storage.

Lennard,

There’s (almost) always the option to buy media on blueray or similar.

AbeilleVegane,
@AbeilleVegane@beehaw.org avatar

I’ll speak for myself here – I watch on average a movie per day. Even if the Blu-Rays were $10, it would still cost me $3650/yr.

nevernevermore, w 2023 Paid VPN Relationship and Corporate VPN Ownership Map

This is an awesome visualisation, but the subtitle is the best part

aka "THE WHO'S FUCKING WHO"

infinipurple,

This cracked me up also aha

cyrano, w 2023 Paid VPN Relationship and Corporate VPN Ownership Map
@cyrano@lemmy.dbzer0.com avatar
Infiltrated_ad8271,
@Infiltrated_ad8271@kbin.social avatar

Relevant:

Map Legend

Red - Corporate Relationship & Ownership
Orange - Paid Relationship or Paid Affiliates (Dashes)
Blue - Cooperation or Partnership (These companies may share staff, resources, networks, or facilities with one another).
Purple - Corporate Media Relationship & Ownership
Brown - Legal Dispute
Hover over nodes to highlight relationships
Use right-click to focus on select areas

Appoxo, w Is there anything for GettyImages, maps, etc.?
@Appoxo@lemmy.dbzer0.com avatar

Reverse Image search.

Scrollone,

It’s been quite limited by Google recently, because Gettyimages and similar services got angry.

TinEye and Yandex reverse image search work a bit better.

Sharpiemarker, w Multiplayer with DLC unlocker

Steam is about the only platform I wouldn’t mess with. I’ve spent way too much money on my library for Steam to ban my account.

wolfshadowheart,
@wolfshadowheart@kbin.social avatar

I think they only do overwatch and VAC bans at first, no?

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • rowery
  • test1
  • Spoleczenstwo
  • lieratura
  • muzyka
  • piracy@lemmy.dbzer0.com
  • sport
  • Blogi
  • Technologia
  • Pozytywnie
  • nauka
  • FromSilesiaToPolesia
  • fediversum
  • motoryzacja
  • niusy
  • slask
  • informasi
  • Gaming
  • esport
  • Psychologia
  • tech
  • giereczkowo
  • ERP
  • krakow
  • antywykop
  • Cyfryzacja
  • zebynieucieklo
  • kino
  • warnersteve
  • Wszystkie magazyny