Here is an example, of the save_tv.ini
Copy and paste in file, you desire
############################################################# # # Example save_tv.ini file for Save.TV Download Automation # # Created by Uli & Sh0rty (2013) # ############################################################# ############################################################# # Do NOT edit, unless you know, what you are doing ############################################################# # Debug on (1) or off (0). Default is off (0) # Creates file save_tv.log in path ./ (quite unformatted output) # CLI-switch --debug Debug = 0 # Set UserAgent # Default is "Mozilla/5.0 (Macintosh U Intel Mac OS X 10.6 en-US rv:1.9.2) Gecko/20100115 Firefox/3.6" # No CLI-switch available UserAgent = Mozilla/5.0 (Macintosh U Intel Mac OS X 10.6 en-US rv:1.9.2) Gecko/20100115 Firefox/3.6 # Monitor progress of downloads # Increases processes and can produce HIGH load! # Default is off (0) # No CLI-switch available MonitorDownload = 0 # Define the used proxy server for all queries and downloads # Default is empty, NO proxy is used | Give proxy URL i.e. http://user:pass@127.0.0.1:8080 # CLI-switch -p --proxy Proxy = ############################################################# # Edit information below to fit your needs ############################################################# # Enter your Save.TV credentials # Script will not work, if these are blank # No CLI-switch available Username = ********** Password = ********** # Set your account type (Standard / XL) which differs in the filetype and AdFree feature # If this is set wrong, script will stop with errors and download nothing # Default is on (1) so script is configured for XL Accounts # CLI-switch --xl for XLAccount / --noxl for Standard Account XLAccount = 1 # Choose, how your files should be named on your local hard drive # Following variables are available: Sendungsname Episodenname Folgennumer ID Jahr4 Jahr2 Monat Tag Aufnahmebeginn # These can be defined in any order and with every separation you desire # Default is "Sendungsname - Episodenname - ID" and is used, if commented FILENAME # FILENAME = Sendungsname - Episodenname - Folgennummer - ID - Jahr4-Monat-Tag # Save files with the original naming from Save.TV # Only working if "FILENAME" is not set (commented out) # Default is off (0) # CLI-switch --fnamesavetv FILENAMESaveTV = 1 # Define the path, you want your downloads being saved to # Default is . | Give string with full path i.e. /home/user/mysavetvdowns/ # CLI-switch -d --dest DownloadPath = . # Define miminum disk-space in GB to be available, for download being started # If remaining disk-space is below this value, script stops with information # This check runs before every single download # Default is 5 | Give number i.e. 10 # CLI-switch -m --minfree Minfree = 5 # Option for "dry-run" with no downloads being executed # Use in case you think, not all content is downloaded to display everything and exit the script # Default is on (1), so script is configured to download # No CLI-switch available ExecuteDownload = 1 # Shows, that downloaded completely, will be deleted from your Save.TV Account # Use with caution, deleted objects, can not be downloaded again! # Default is off (0) # CLI-switch --delete, shows will be deleted | --nodelete, shows will NOT be deleted DeleteAfterDownload = 0 # Only shows matching Regex pattern will be processed in the script # Default is .* and means, all shows will be processed # CLI-switch -s --search TestRegex = .* # Shows matching Regex pattern will NOT be downloaded # Default is emtpy, NO show will be excluded | Give Regex pattern i.e. Family.* # CLI-switch -e --exclude ExcludeRegex = # Exclude shows from deletion, matching Regex pattern # Shows will be downloaded, but not deleted on Save.TV # Default is empty, ALL shows will be deleted if DeleteAfterDownload = 1 | Give Regex pattern i.e. Family.* # CLI-switch -sdel ExcludeDelete = # Download files with wget command # Using wget is RECOMMENDED, as $mech->get does not support resuming and wget is more patient with reconnects / timeouts # Default is on (1) # CLI-switch -w --wget WGET = 1 # Number of processes / downloads that will be started parallel # Best value depends on your connection and strength of your platform # Default is 3 which is considered good for home broadband connections and platforms as i.e. Raspberry PI / QNAP / VirtualMachine # CLI-switch -j --jobs MAX_PROCESSES = 3 # Define your Operating System # If nothing is defined, auto detection will be proceeded # Default is Linux | Options are Linux or Windows # CLI-switch --linux --windows # OS = Linux # Write summary file at end of script execution # Creates file save_tv_summary.txt in path ./ # Default is off (0) # CLI-switch --summary Summary = 0