Search found 9 matches
- November 29th, 2010, 3:58 pm
- Forum: General Help
- Topic: Include original nzb name as a folder in TV sorting.
- Replies: 7
- Views: 4036
Re: Include original nzb name as a folder in TV sorting.
Nice, thank you
- November 20th, 2010, 12:53 pm
- Forum: General Help
- Topic: Include original nzb name as a folder in TV sorting.
- Replies: 7
- Views: 4036
Re: Include original nzb name as a folder in TV sorting.
I'm not sure if this is helping anyone, but I wanted this as well. For me it was easier to patch the tvsorter to work the way I want: *** tvsort.py 2010-11-20 18:30:17.000000000 +0100 --- ../tar/SABnzbd-0.5.6/sabnzbd/tvsort.py 2010-11-20 18:14:52.000000000 +0100 *************** *** 301,306 **** --- ...
- December 3rd, 2009, 12:45 pm
- Forum: Beta Releases
- Topic: 0.5.0Beta1 Nzbmatrix settings during initial setup
- Replies: 1
- Views: 1470
0.5.0Beta1 Nzbmatrix settings during initial setup
On Windows Vista, the nzbmatrix settings are not saved to the .ini when setting it in the initial setup guide.
Thanks for a great app
Edit: this should perhaps be moved to the Beta forum.
Thanks for a great app
Edit: this should perhaps be moved to the Beta forum.
- April 12th, 2009, 11:27 am
- Forum: Feature Requests
- Topic: User script parameter request - Full path of TV file
- Replies: 10
- Views: 9702
Re: User script parameter request - Full path of TV file
On linux, the method perm_script() chmod's all files in the destination folder, marking all the files already in the destination folder as changed. This makes it impossible for me to distinguish newly downloaded episodes/files from other episodes in the same folder. To solve this I changed the postp...
- April 10th, 2009, 8:09 am
- Forum: Feature Requests
- Topic: User script parameter request - Full path of TV file
- Replies: 10
- Views: 9702
Re: User script parameter request - Full path of TV file
This can be done in a postscript already though, for instance with this "post processing script" on a Linux machine. #!/bin/bash find "$1" -cmin -1 -name *.avi | grep -iv sample this finds all avi-files changed/created/moved less than 1 minute ago, except file names containing 's...
- April 10th, 2009, 7:13 am
- Forum: Post-Processing Scripts
- Topic: Windows shutdown script
- Replies: 4
- Views: 6534
Re: Windows shutdown script
Create a .txt file with this command:
shutdown -s -f -c "Download finished"
rename it to .bat and place it in the postscript folder.
shutdown -s -f -c "Download finished"
rename it to .bat and place it in the postscript folder.
- April 9th, 2009, 5:44 pm
- Forum: Post-Processing Scripts
- Topic: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater
- Replies: 133
- Views: 167058
- April 8th, 2009, 8:30 pm
- Forum: Post-Processing Scripts
- Topic: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater
- Replies: 133
- Views: 167058
Re: [Linux, MacOSX, Windows] Media Processing + XBMC Updater
I am also working on the imdb movie.nfo creation, it hasn't worked quite right to this point so I am trying to come up with some new methods for accurately searching imdb when the downloads have extra garbage in the directory titles (the.dark.knight.720p.bluray.newrelease.blah.blah.blah.2008) Tret,...
- March 12th, 2009, 9:49 pm
- Forum: Post-Processing Scripts
- Topic: [Linux] moving avi-files
- Replies: 1
- Views: 2814
[Linux] moving avi-files
Moves all avi-files, except filenames containing "sample" #!/bin/bash cd "$1" FILES=`ls *.avi | grep -iv sample` echo "moving avi files..." echo $FILES a=0; F_ARRAY=( $FILES ) for file in $FILES do mv ${F_ARRAY[$a]} ~/downloads/extracted/ (( a += 1 )) do...