Search found 13 matches

by Eelisland
November 17th, 2016, 7:01 am
Forum: Post-Processing Scripts
Topic: [LINUX] Unobfuscate a single rar file of a collection.
Replies: 5
Views: 4613

Re: [LINUX] Unobfuscate a single rar file of a collection.

for some specific language there's few poster and that allow to simply check the file whithout donwloading it.
by Eelisland
November 17th, 2016, 6:55 am
Forum: Post-Processing Scripts
Topic: [LINUX] Unobfuscate a single rar file of a collection.
Replies: 5
Views: 4613

Re: [LINUX] Unobfuscate a single rar file of a collection.

Yep, simply to look inside a rar whithout downloading the whole collection.
by Eelisland
November 16th, 2016, 2:34 pm
Forum: Post-Processing Scripts
Topic: [LINUX] Unobfuscate a single rar file of a collection.
Replies: 5
Views: 4613

[LINUX] Unobfuscate a single rar file of a collection.

- Description, how it work: Select one rar file of a collection, create a NZB and download it. File(s) inside the rar will be diplayed in SABNZBD web interface. Display also a direct link to NZBIndex and Binsearch NZB. (triple click on a link, then right click to open the page) Create a Google searc...
by Eelisland
July 3rd, 2016, 6:13 am
Forum: Post-Processing Scripts
Topic: [BASH] simple script to convert bluray BDMV M2TS file to MKV
Replies: 3
Views: 13024

Re: [BASH] simple script to convert bluray BDMV M2TS file to

Thanks for the script works well for me, I added on to it to support iso files since some rips are iso dumps and also to use the name of the $3 (job name of the nzb) as the filename. Couch potato does good work for most media filetypes but BDMV is a mess so this definitely helps. **editing the code...
by Eelisland
June 19th, 2015, 5:38 am
Forum: Feature Requests
Topic: html in "View script log" window
Replies: 3
Views: 3129

Re: html in "View script log" window

Hello Shypike,

Thank for your feedback.


jcfp,

Thanks for the tip, in my screenshot it's only bash echo, but i'll try in a few days with closing pre and ré opening at the end :)
by Eelisland
June 17th, 2015, 3:44 am
Forum: Feature Requests
Topic: html in "View script log" window
Replies: 3
Views: 3129

html in "View script log" window

Hello, Is it possible to add html support in the "View script log" window, i want to echo web page link and poster from The Movie DB ? It can look nice if we where able to echo also in the main window a little picture thumbnail from the file if found on an api site :) http://img11.hostingp...
by Eelisland
May 6th, 2014, 4:15 am
Forum: Post-Processing Scripts
Topic: Script request: remove movie and rename
Replies: 2
Views: 2626

Re: Script request: remove movie and rename

Hello,
i'm not using Windows personally but, you can take a look here, maybe it will do the trick.
hope that help
by Eelisland
April 24th, 2014, 1:36 pm
Forum: Post-Processing Scripts
Topic: Deleting oldest folder from HDD
Replies: 2
Views: 2209

Re: Deleting oldest folder from HDD

Hello TheCrach,
You forget to mention your Operating System.
by Eelisland
September 3rd, 2013, 8:45 am
Forum: Post-Processing Scripts
Topic: [BASH] simple script to convert bluray BDMV M2TS file to MKV
Replies: 3
Views: 13024

[BASH] simple script to convert bluray BDMV M2TS file to MKV

Hi, i'have addapted a script found on this forum to convert the biggest M2TS file found in /BDMV/STREAM/ folder of Blu-Ray in MKV, no compression, everything inclued: #!/bin/bash BDMV_FOLD=`find "$1" -name "BDMV" -print0` if [[ $BDMV_FOLD == *BDMV* ]]; then # cd to the ./BDMV/STR...
by Eelisland
September 3rd, 2013, 7:30 am
Forum: Post-Processing Scripts
Topic: [BASH][SOLVED] probleme running multiple script
Replies: 3
Views: 9807

Re: [BASH] probleme running multiple script

Hi Jcfp,

Thx for your feedback!

Code: Select all

# or source the other script(s) into the one run by sab - the space after the dot is not a typo
. /run/this/script
. /run/this/script2
the space after the dot is not a typo

Work perfectly. thread SOLVED ;)
by Eelisland
September 3rd, 2013, 2:26 am
Forum: Post-Processing Scripts
Topic: [BASH][SOLVED] probleme running multiple script
Replies: 3
Views: 9807

Re: [BASH] probleme running multiple script

I get exactly the same error when running the script alone from the console, scripts don't receive $1,$2,$3 from SABNZBD when called by a script and not SABNZBD properly, any idea ? :) bash-4.2$ cd /home/toto/.sabnzb-script bash-4.2$ ./multi_scripts ERROR: Can't open /clamscan.log in append mode (ch...
by Eelisland
September 2nd, 2013, 2:16 pm
Forum: Post-Processing Scripts
Topic: [BASH][SOLVED] probleme running multiple script
Replies: 3
Views: 9807

[BASH][SOLVED] probleme running multiple script

Hello, First of all, many thanks for SABnzbd, it brings newsgroup to the top ! :) I have two scripts and want to run the two script in the default folder ClamAV antivirus scan: #!/bin/sh BASENAME=`basename "$1"` LOGFILE="$1/clamscan.log" /usr/bin/clamscan -i -l "$LOGFILE&quo...