Lorem ipsum

  • 0 Posts
  • 23 Comments
Joined 2 years ago
cake
Cake day: October 6th, 2023

help-circle









  • 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!

    Some background

    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.








  • You have not provided a single link.

    I’m am no expert on flatpak and just did some basic searching.
    From reading the command reference it seems GPG-Verification is enabled for each remote and can’t be disabled/enabled for each install. I can just find some issues where gpg verification fails

    Error: GPG verification enabled, but no signatures found (use gpg-verify=false in remote config to disable)
    error: Failed to install bundle fr.handbrake.ghb: GPG verification enabled, but no signatures found (use gpg-verify=false in remote config to disable)
    

    Documentation seems to be more user oriented and not developer oriented maybe someone more knowledgeble can go in the source code and tell us how it actually works.




  • 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