This content has been marked as final.
Show 1 reply
-
1. Re: need informations about permission file
seblbuk Oct 1, 2012 1:26 AM (in response to oeann)Have you tried the mask of 022? - You probably need to update the folder permissions so they cascade down (check out the special mods on http://en.wikipedia.org/wiki/Chmod#Special_modes). Can you have the user the ffmpeg process runs as, in the same group as the fms account? Also you only need 755 on a file to execute it as the group/all, or on a folder to browse it, so on the files 664 should be fine to read the file, but to save one back you need to make sure the directory permissions are correct.
If i were you I would (and have done on my fms setup for a similar transcoding reason):
- Make sure the users are in the same group
- Update the mask to 007
- Update the folders / files to the correct permissions
- find <root video folder> -type d -exec chmod 2770 {} \;
- find <root video folder> -type f -name '*.mp4' -exec chown <account> {} \;

