

That sometimes works, but you might need to add some arguments like here --add-header "Referer: https://vidmoly.to/"
Lorem ipsum
That sometimes works, but you might need to add some arguments like here --add-header "Referer: https://vidmoly.to/"
Yeah, just stumbled across that.
Video DownloadHelper a blast from the past. Haven’t used that for more than a decade (I discovered youtube-dl and never looked back).
I didn’t look further in my testing, only promted me for a license when a wanted to download only audio, which seemed kinda scummy since there isn’t even a pure audio source on the website as far as I can tell.
According to the waterfox documentation you should just be able to install the extension from addons.mozilla.
If you want to use this addon on this website you still need the CoApp installed separately.
I just tried it and this does work but you need to install their CoApp, which seems to basically just an ffmpeg wrapper.
Okay, this was harder than anticipated. Maybe someone can find an easier solution:
Go to the video you want to download, open the DevTools in your browser (F12 in Firefox), go to Network (you might need to reload the page), play the video. In the search bar under Network type in .m3u8
. You’ll get a file likely named master.m3u8
. Right-click on it ‘Copy value’ than ‘Copy url’. Paste this in the following yt-dlp command:
yt-dlp \
--add-header "Referer: https://vidmoly.to/" \
"https://paste-url-here.to/master.m3u8"
This should download the video.
If you want the subtitles, search for .vtt
instead (you might need to select the desired subtitles in the player first). You can directly open the subtile file and download it.
I really hope someone can give you an easier solution.
Don’t hesitate to ask further questions!
The the website is not supported and the generic downloader from yt-dlp doesn’t work, hence the need for the m3u8
playlist. Their primary video host seems to be vidmoly, which I found that under the Request Headers.
BTW vidmoly as a standalone website is also not supported in yt-dlp with the hilarious reason:
This site looks like it is primarily used for piracy and therefore cannot be supported.
Lemm.ee is European.
sunaurus (the owner) is from Estonia
And the instance is currently hosted in Finnland.
From my screenshots folder (Psycho-Pass Episode 2).
cobalt.tools supports lots of sites (YouTube, Reddit etc.).
It‘s like an anemic version of yt-dlp in the browser.
Yeah, that is the video.
Here is it freed from TikTok.
cobalt.tools supports TikTok downloads among other sites.
Both c/conservative on Lemm.ee and Lemmy.world are currently unmoderated (no community moderators).
The one community moderator on .ee got banned for some Nazi shit.
Now in both communities there is lots of love for trans people🏳️⚧️
Where did you get the impression that Lemm.ee is (more) right-leaning?
Lemm.ee does not really have a leaning (in the fediverse).
Lemm.ee has awesome uptime, hands of moderation, up to date Lemmy, and doesn’t defedarate (we live in the glorious age of Lemmy 19 and not in the dark ages anymore; the user can block stuff).
Here are the different methods of uploading to libgen. The forum (you need to make a throwaway account) is online at the moment.
If you don’t want to do that, just wait a bit for libgen to come online again.
SLUM: The Shadow Library Uptime Monitor
For an uptime overview.
You mentioned dread of long stretches of grass. Buy Repels!
Seriously, that skips 90% of the useless animations.
If you find yourself underleveled, just use X-Items, those are busted.
For the Elite Four use the legendary Pokémon Rayquaza, it’s overleveled in Emerald at level 70. If you don’t want to use legendaries, you can use Linoone to sweep the the whole Elite Four.
This comic is indeed by oppressive silence comics by Ethan Vincent.
He seems to have disappeared from the internet in mid-2018.
This comic titled draw seems to have been his second to last published comic.
Archived link to his website.
xcancel link to his twitter.
On ultra.cc Plex usage doesnt count towards the upload quota.
Don’t forget:
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
This seems like a bit of a scam:
On your external drives you can prevent the creation of .DS_Store
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
If you really want to continuously delete DS_Store
from both your internal and external hard drives you can set up a cronjob:
15 1 * * * root find / -name '.DS_Store' -type f -delete
You can add .DS Store
in your global gitignore at ~/config/git/ignore
Why is there a *
in front of DS_Store
?
Seems like fastly made a small mistake find . -name '.DS_Store' -type f -print -delete
would just match the exact file and is faster.
yt-dlp (the most up-to-date version of youtube-dl) has hundreds of supported websites. The generic downloader can download from unsupported websites most of the time and if that doesn’t work you just paste in the m3u8 file as seen in my answer.