AMC Problem (Fully Automated Media Center Script)

Running FileBot from the console, Groovy scripting, shell scripts, etc
User avatar
rednoah
The Source
Posts: 23939
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: AMC Problem (Fully Automated Media Center Script)

Post by rednoah »

MusicBrainz doesn't have a matching AcoustID audio-finger print for this track in it's database. Please tag and submit audio-fingerprints for these tracks using MusicBrainz Picard.
http://musicbrainz.org/doc/MusicBrainz_Picard
:idea: Please read the FAQ and How to Request Help.
irule
Posts: 38
Joined: 05 Mar 2013, 20:13

Re: AMC Problem (Fully Automated Media Center Script)

Post by irule »

Rednoah my media folder is a shared folder, so this way my aTV can play everything... BUT, since this last version, all media sent there through filebot script ISNT assuming the sharing configurations and i cant access the files through my appleTV.. I have to go manually to all files and select "everyone" in sharing options so this way my atv can access the files...

How can i change that? I want all the files in my media folder to assume the configurations of the folder...
User avatar
rednoah
The Source
Posts: 23939
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: AMC Problem (Fully Automated Media Center Script)

Post by rednoah »

FileBot will keep the original file untouched, including file attributes like owner and permissions.

You can add

Code: Select all

--def "exec=chmod -R +rw '{file}'"
to have amc adjust the permissions afterwards.

EDIT: I'm still not sure which behavior should be default, keep or lose attributes on copy, but I've disabled it for now with r2072.
:idea: Please read the FAQ and How to Request Help.
irule
Posts: 38
Joined: 05 Mar 2013, 20:13

Re: AMC Problem (Fully Automated Media Center Script)

Post by irule »

thank you.

that code is enough or i need to download r2072 too?



atm i have hundreds of files with wrong sharing options :((( is there any batch script or something that helps me change all this files permissions to "EVERYONE" "FULL CONTROL" at once?
User avatar
rednoah
The Source
Posts: 23939
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: AMC Problem (Fully Automated Media Center Script)

Post by rednoah »

If you use r2072 you probably don't need to call chmod.

About Changing permissions recursively for all files. Try to google that. ;)

Erm, you're new to Unix right? Cause to above code should be enough of a hint to use chmod...

Code: Select all

chmod -R +rw /path/to/media
:idea: Please read the FAQ and How to Request Help.
irule
Posts: 38
Joined: 05 Mar 2013, 20:13

Re: AMC Problem (Fully Automated Media Center Script)

Post by irule »

yea, im a newbie.. :)


I tested r2072 and now ITS EVERYTHING OK :D :D :D Thank you
Post Reply