Here's how to set up the Fully Automated Media Center script with Transmission.
1. Create transmission-postprocess shell script
Open Terminal:
Type cd desktop (this will create the file on your desktop, if you want to leave it in your home file skip this step)
Type nano transmission-postprocess
This will bring up nano, a text editor, then copy & paste:
Code: Select all
#!/bin/bash
filebot -script fn:amc --output "path/to/folder" --log-file amc.log --action copy --conflict override -non-strict --def artwork=y "ut_dir=$TR_TORRENT_DIR/$TR_TORRENT_NAME" "ut_kind=multi" "ut_title=$TR_TORRENT_NAME"
Set where processed files should be organized to:
Control + XFully Automated Media Center wrote:2. Change --output to where you want to copy/organize your files. Input is provided by µTorrent variables.
Enter Yes to save file
Hit enter to save file as named
This will create a file on your desktop that looks like this:
In terminal type chmod +rx transmission-postprocess and hit enter, it will look like nothing happened
but it will change the file on your desktop to:
2. Setup Transmission to call our shell script on download complete
Now open transmission preferences and set it to call your newly created script at download complete
3. Done