Search found 4 matches

by racso
January 8th, 2011, 2:49 pm
Forum: Third-party Addons
Topic: CouchPotato - Automatic Movie Downloader via NZB & Torrents!
Replies: 1305
Views: 3042783

Re: CouchPotato - Automatic Movie Downloader via NZB & Torrents!

Hi DrTran84,

Thanks! just what I was looking for. realty helped me. Gonna do this over night as it will probably take a while ;)


gr, Oscar
by racso
January 8th, 2011, 11:03 am
Forum: Third-party Addons
Topic: CouchPotato - Automatic Movie Downloader via NZB & Torrents!
Replies: 1305
Views: 3042783

Re: CouchPotato - Automatic Movie Downloader via NZB & Torrents!

Hi,

Is there anyone who knows how to (re) get Metadata from (previous) downloaded movies? A script or way to scan the movie directory? Or maybe a extra button on the "Downloaded" movie section? (Feature request)

Thanks in advance!
by racso
January 7th, 2011, 2:02 pm
Forum: Third-party Addons
Topic: CouchPotato - Automatic Movie Downloader via NZB & Torrents!
Replies: 1305
Views: 3042783

Re: NZB Movie Manager - Automatic Movie Downloader

rascalli wrote: I did that, but somehow it is not renaming or replacing it .... any idea ?
Same problem. Using OSX 10.6.5

Download folder:/Volumes/Data HD/Downloads/complete/Movies
Movie destination: /Volumes/External HD/Media/Movies


UPDATE: Sorry, Restart fixed it...
by racso
January 7th, 2011, 7:19 am
Forum: Post-Processing Scripts
Topic: simple script to move files after processing
Replies: 39
Views: 68888

Re: simple script to move files after processing

I currently use this script on a OSX Mac. #!/bin/bash if [ "$5" = "movies" ]; then   mv -fv "$1" "/Volumes/External HD/Media/Movies" elif [ "$5" = "tv" ]; then   mv -fv "$1" "/Volumes/External HD/Media/TV" fi Note that y...