Godzilla Minus One becomes the most pirated movie in the world - Dexerto
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearTE
    technomage1
    5mo ago 100%

    I'm to the point that I won't tolerate your service if you can't give me a better experience than my jellyfin+*arr server. Why pay for 5 subscriptions to show you ads and low quality content when I can do it myself much better and for free?

    1
  • qBiittorrent not running unrar after download
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearTE
    technomage1
    1y ago 100%

    Ok after a bit of testing and research, I came up with this script that seems to be working
    #!usr/bin/bash

    # Define the directory where you want to start searching for rar files
    start_directory="/root/of/torrent/download/folder/"

    # Locate all rar files in subdirectories
    find "$start_directory" -type f -name "*.rar" | while read rar_file; do
    # Extract the rar file into the same directory, skip if it already exists
    unrar x -o- "$rar_file" "$(dirname "$rar_file")"
    echo "Extracted $rar_file to $(dirname "$rar_file")"
    done

    I chown'ed it to the qBittorrent user and gave it execute permissions. In qBittorrent I added the following to "Run external program on torrent finished"
    bash /path/to/script.sh

    1
  • Ahoy fellow pirates! I don't know if this is the best place to ask, but I'm having issues getting qBittorrent to automatically unrar files so that Sonarr\Radarr can import. I'm running qbittorrent-nox with the *arr stack natively on Ubuntu 22.04 LTS I have the following in "Run external program on torrent finished" `/usr/bin/unrar x -o- -r "%F"/*.rar "%F"/` But nothing happens when a torrent completes. When I check the qBittorrent logs, there is one line with: `` Running external program. Torrent: "Name of Torrent". Command: `/usr/bin/unrar x -o- -r "/path/to/torrent/directory"/*.rar "/path/to/torrent/directory"/` `` If copy and paste the above code into a terminal as the qbittorrent user, it extracts the rar files as expected. Is there anything I can check to get qBittorrent to unrar files automatically?

    3
    1