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)
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...