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
Search found 4 matches
- January 8th, 2011, 2:49 pm
- Forum: Third-party Addons
- Topic: CouchPotato - Automatic Movie Downloader via NZB & Torrents!
- Replies: 1305
- Views: 4385579
- January 8th, 2011, 11:03 am
- Forum: Third-party Addons
- Topic: CouchPotato - Automatic Movie Downloader via NZB & Torrents!
- Replies: 1305
- Views: 4385579
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!
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!
- January 7th, 2011, 2:02 pm
- Forum: Third-party Addons
- Topic: CouchPotato - Automatic Movie Downloader via NZB & Torrents!
- Replies: 1305
- Views: 4385579
Re: NZB Movie Manager - Automatic Movie Downloader
Same problem. Using OSX 10.6.5rascalli wrote: I did that, but somehow it is not renaming or replacing it .... any idea ?
Download folder:/Volumes/Data HD/Downloads/complete/Movies
Movie destination: /Volumes/External HD/Media/Movies
UPDATE: Sorry, Restart fixed it...
- January 7th, 2011, 7:19 am
- Forum: Post-Processing Scripts
- Topic: simple script to move files after processing
- Replies: 39
- Views: 72930
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...