Advertisement
m3th1dz

SABnzbd.sh

Sep 7th, 2014
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # SABnzbd Post Processing Script - www.Filebot.net "AMC" Script
  4.  
  5. FILE_PATH=$1
  6. FILE_NAME=$3
  7.  
  8. filebot -script \
  9.    fn:amc \
  10.    --output "/path/to/your/media" \
  11.    --log-file amc.log \
  12.    --action move \
  13.    --conflict override -non-strict \
  14.    --def music=n \
  15.    --def xbmc=127.0.0.1 \
  16.    --def plex=127.0.0.1 \
  17.    --def pushover= \
  18.    --def artwork=y \
  19.    --def subtitles=en \
  20.    --def clean=y \
  21.    --def "exts=jpg|nfo|srv|srr|nzb|sfv|idx|sub|txt|part01|part02|par1|par2" \
  22.    --def "terms=sample|trailer|etc" \
  23.    --def "ut_dir=$FILE_PATH" \
  24.    --def "ut_kind=multi" \
  25.    --def "ut_title=$FILE_NAME"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement