Little help - Script and struggling with

Running FileBot from the console, Groovy scripting, shell scripts, etc
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Little help - Script and struggling with

Post by uaeproz »

Hi all,

I'd like to thank first of all for the efforts you are spending on this. I have unraid server with a filebot docker. The filebot docker is awesome and works extremely great. I just want to have my database a little bet more perfect.

So currently what the filebot do is renaming the video files and downloading matching subtitle. My usage is only Plex and it is being recognized by plex

The thing that I wish to have which is that more sorting and reorganization. I have to issues that I couldn't resolve due to my little knowledge as follows:

For movies:
1- I want the to rename the folders to match the video file as well not just the video file and subtitle
2- I want to add the year, resolution and number of audio channel (eg. 5.1 or 2.0) in the video file name (accordingly the subtitle & containing folder).

For TV:
1- Currently renames video files and download matching subtitle but in so many TV shows I have folder for each video file under the season folder. (eg. Suits/Season 1/Suits.s01e01.title/Suits - S01E01 title) but what I want to move the video file and it's subtitles from the episode folder to Season 1 folder and delete the episode folder. (eg. Suits/Season 1/Suits - S01E01 title).
2- I also want to add the resolution and number of audio channel (eg. 5.1 or 2.0) in the video file name (accordingly the subtitle file name).

I have below the entire file script I copied from filebot.sh - I would appreciated if someone could edit below text so that I can copy/paste back:

Code: Select all

#!/bin/bash

# This script by default uses "Automated Media Center" (AMC). See the final filebot call below. For more docs on AMC,
# visit: http://www.filebot.net/forums/viewtopic.php?t=215

#-----------------------------------------------------------------------------------------------------------------------

# Specify the URLs of any scripts that you need. They will be downloaded into /config/scripts
SCRIPTS_TO_DOWNLOAD=(
# Example:
# https://raw.githubusercontent.com/filebot/scripts/devel/cleaner.groovy
)

#-----------------------------------------------------------------------------------------------------------------------

QUOTE_FIXER='replaceAll(/[\`\u00b4\u2018\u2019\u02bb]/, "'"'"'").replaceAll(/[\u201c\u201d]/, '"'"'""'"'"')'

# Customize the renaming format here. For info on formatting: https://www.filebot.net/naming.html

# Music/Eric Clapton/From the Cradle/05 - It Hurts Me Too.mp3
MUSIC_FORMAT="Music/{n.$QUOTE_FIXER}/{album.$QUOTE_FIXER}/{media.TrackPosition.pad(2)} - {t.$QUOTE_FIXER}"

# Movies/Fight Club.mkv
MOVIE_FORMAT="Movies/{n.$QUOTE_FIXER} {' CD'+pi} - {'.'+lang}"

# TV Shows/Game of Thrones/Season 05/Game of Thrones - S05E08 - Hardhome.mp4
# TV Shows/Game of Thrones/Special/Game of Thrones - S00E11 - A Day in the Life.mp4
SERIES_FORMAT="TV Shows/{n}/{episode.special ? 'Special' : 'Season '+s.pad(2)}/{n} - {episode.special ? 'S00E'+special.pad(2) : s00e00} - {t.${QUOTE_FIXER}.replaceAll(/[!?.]+$/).replacePart(', Part $1')}{'.'+lang}"

. /files/FileBot.conf

if [ "$SUBTITLE_LANG" == "" ];then
  SUBTITLE_OPTION=""
else
  SUBTITLE_OPTION="subtitles=$SUBTITLE_LANG"
fi

#-----------------------------------------------------------------------------------------------------------------------

# Used to detect old versions of this script
VERSION=3

# Download scripts and such.
. /files/pre-run.sh

# See http://www.filebot.net/forums/viewtopic.php?t=215 for details on amc
filebot -script fn:amc -no-xattr --output /output --log-file /files/amc.log --action rename --conflict auto \
  -non-strict --def ut_dir=/input ut_kind=multi music=y deleteAfterExtract=y clean=y \
  excludeList=/config/amc-exclude-list.txt $SUBTITLE_OPTION \
  movieFormat="$MOVIE_FORMAT" musicFormat="$MUSIC_FORMAT" seriesFormat="$SERIES_FORMAT"

I would really really really appreciate any help.

Many thanks,

Abdulla
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

I'm not familiar with that particular docker container. I can however help you with the filebot command-line tools and the amc script.


1.
You want a custom movie format like this:

Code: Select all

Movies/{ny} {[resolution, channels]}/{ny} {[resolution, channels]}{' CD'+pi}{subt}
2.
You want a custom series format like this:

Code: Select all

{n}/Season {s}/{n} - {s00e00} - {t} {[resolution, channels]}{subt}
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

what about the command for moving the sub and video file from under the episode folder to season folder and then deleting the episode folder?
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

What does this command means: $Quote_Fixer
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

1.
The {subt} binding will give you the extra .eng language suffix in the destination path for subtitle files.

2.
Use --action move --def clean=y if you want to remove left-behind clutter files and empty folders.



PS: I don't know what $Quote_Fixer means. I didn't write that. It's your bash script. ;)
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

Ok I will remove $Quote_Fixer command and see how it behaves. However, I want your opinion whether this command is correct or not specially the delete/move command placement:

Movies/{ny} {vf, channels}/{ny} {vf, channels} {' CD'+pi}{subt} - {'.'+lang} {ext}"

TV Shows/{n}/{episode.special ? 'Special' : 'Season '+s.pad(2)}/{n} - {episode.special ? 'S00E'+special.pad(2) : s00e00} - {t}.replaceAll(/[!?.]+$/).replacePart(', Part $1')}{'.'+lang} - {vf, channels} {subt} {ext} --action move --def clean=y


Regarding the {subt}, I have multiple languages in the subtitles (russian & english)
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

Please use the formats I gave you.

If the formats I gave you don't yield the destination paths you want, please the copy & paste the corresponding logs.
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

Code: Select all

ErrorWarningSystemArrayLogin


Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Tai.Chi.Zero.2012.LiMiTED.MULTi.1080p.BluRay.x264 - ROUGH/Tai Chi Zero (2012) [1920x816, 5.1] .ara.srt]
[RENAME] Rename [/input/Tai.Chi.Zero.2012.LiMiTED.MULTi.1080p.BluRay.x264 - ROUGH/Tai Chi Zero (2012) [1920x816, 5.1] .ara.srt] to [/output/Movies/Tai Chi Zero (2012) [1920x816, 5.1]/Tai Chi Zero (2012) [1920x816, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Take.Down.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT/Take Down (2016) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/Take.Down.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT/Take Down (2016) [1920x1080, 5.1] .ara.srt] to [/output/Movies/Take Down (2016) [1920x1080, 5.1]/Take Down (2016) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Taken II/Taken (2008) [1920x808, 5.1] .ara.srt]
[RENAME] Rename [/input/Taken II/Taken (2008) [1920x808, 5.1] .ara.srt] to [/output/Movies/Taken (2008) [1920x808, 5.1]/Taken (2008) [1920x808, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Taken.3.2014.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/Taken 3 (2015) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/Taken.3.2014.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/Taken 3 (2015) [1920x1080, 5.1] .ara.srt] to [/output/Movies/Taken 3 (2015) [1920x1080, 5.1]/Taken 3 (2015) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Takers.2010.1080p.CEE.BluRay.AVC.DTS-HD.MA.5.1-FGT/Takers (2010) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/Takers.2010.1080p.CEE.BluRay.AVC.DTS-HD.MA.5.1-FGT/Takers (2010) [1920x1080, 5.1] .ara.srt] to [/output/Movies/Takers (2010) [1920x1080, 5.1]/Takers (2010) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Tale.of.Tales.2015.1080p.BluRay.X264-AMIABLE[rarbg]/Tale of Tales (2015) [1920x816, 5.1] .ara.srt]
[RENAME] Rename [/input/Tale.of.Tales.2015.1080p.BluRay.X264-AMIABLE[rarbg]/Tale of Tales (2015) [1920x816, 5.1] .ara.srt] to [/output/Movies/Tale of Tales (2015) [1920x816, 5.1]/Tale of Tales (2015) [1920x816, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Tangerine.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/Tangerine (2015) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/Tangerine.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/Tangerine (2015) [1920x1080, 5.1] .ara.srt] to [/output/Movies/Tangerine (2015) [1920x1080, 5.1]/Tangerine (2015) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Ted.2.2015.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/Ted 2 (2015) [1920x1080, 5.1] .slo.srt]
[RENAME] Rename [/input/Ted.2.2015.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/Ted 2 (2015) [1920x1080, 5.1] .slo.srt] to [/output/Movies/Ted 2 (2015) [1920x1080, 5.1]/Ted 2 (2015) [1920x1080, 5.1] .slo.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Teenage.Mutant.Ninja.Turtles.2014.Bluray.1080p.TrueHD-7.1.Atmos.DD-5.1.x264-Grym/Teenage Mutant Ninja Turtles (2014) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/Teenage.Mutant.Ninja.Turtles.2014.Bluray.1080p.TrueHD-7.1.Atmos.DD-5.1.x264-Grym/Teenage Mutant Ninja Turtles (2014) [1920x1080, 7.1] .ara.srt] to [/output/Movies/Teenage Mutant Ninja Turtles (2014) [1920x1080, 7.1]/Teenage Mutant Ninja Turtles (2014) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Teenage.Mutant.Ninja.Turtles.Out.of.the.Shadows.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/Teenage Mutant Ninja Turtles Out of the Shadows (2016) [1920x1080, 7.1] .ara.srt]
Stripping invalid characters from new path: Movies/Teenage Mutant Ninja Turtles: Out of the Shadows (2016) [1920x1080, 7.1]/Teenage Mutant Ninja Turtles: Out of the Shadows (2016) [1920x1080, 7.1] .ara
[RENAME] Rename [/input/Teenage.Mutant.Ninja.Turtles.Out.of.the.Shadows.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/Teenage Mutant Ninja Turtles Out of the Shadows (2016) [1920x1080, 7.1] .ara.srt] to [/output/Movies/Teenage Mutant Ninja Turtles Out of the Shadows (2016) [1920x1080, 7.1]/Teenage Mutant Ninja Turtles Out of the Shadows (2016) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Terminator.Genisys.2015.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/Terminator Genisys (2015) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/Terminator.Genisys.2015.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/Terminator Genisys (2015) [1920x1080, 7.1] .ara.srt] to [/output/Movies/Terminator Genisys (2015) [1920x1080, 7.1]/Terminator Genisys (2015) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Terminator.Salvation.1080p.BluRay.x264-METiS/Terminator Salvation (2009) [1920x800, 5.1] .ara.srt]
[RENAME] Rename [/input/Terminator.Salvation.1080p.BluRay.x264-METiS/Terminator Salvation (2009) [1920x800, 5.1] .ara.srt] to [/output/Movies/Terminator Salvation (2009) [1920x800, 5.1]/Terminator Salvation (2009) [1920x800, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/Thank.You.for.Smoking.2005.1080p.WEBRip.DD5.1.x264-FGT/Thank You for Smoking (2005) [1920x800, 6.0] .ara.srt]
[RENAME] Rename [/input/Thank.You.for.Smoking.2005.1080p.WEBRip.DD5.1.x264-FGT/Thank You for Smoking (2005) [1920x800, 6.0] .ara.srt] to [/output/Movies/Thank You for Smoking (2005) [1920x800, 6.0]/Thank You for Smoking (2005) [1920x800, 6.0] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Green Mile/The Green Mile (1999) [1920x1080, 5.1] .ara.srt]
Stripping invalid characters from new path: Movies/The Green Mile (1999) /The Green Mile (1999) .ara
[RENAME] Rename [/input/The Green Mile/The Green Mile (1999) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Green Mile (1999)/The Green Mile (1999) .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Insider/The Insider (1999) [1920x808, 5.1] .ara.srt]
[RENAME] Rename [/input/The Insider/The Insider (1999) [1920x808, 5.1] .ara.srt] to [/output/Movies/The Insider (1999) [1920x808, 5.1]/The Insider (1999) [1920x808, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Killing Fields/The Killing Fields (1984) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The Killing Fields/The Killing Fields (1984) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Killing Fields (1984) [1920x1080, 5.1]/The Killing Fields (1984) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Killing of a Chinese Bookie/The Killing of a Chinese Bookie (1976) [1920x1040, 1.0] .ara.srt]
[RENAME] Rename [/input/The Killing of a Chinese Bookie/The Killing of a Chinese Bookie (1976) [1920x1040, 1.0] .ara.srt] to [/output/Movies/The Killing of a Chinese Bookie (1976) [1920x1040, 1.0]/The Killing of a Chinese Bookie (1976) [1920x1040, 1.0] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Life Aquatic With Steve Zissou/The Life Aquatic with Steve Zissou (2004) [1280x544, 5.1] .ara.srt]
[RENAME] Rename [/input/The Life Aquatic With Steve Zissou/The Life Aquatic with Steve Zissou (2004) [1280x544, 5.1] .ara.srt] to [/output/Movies/The Life Aquatic with Steve Zissou (2004) [1280x544, 5.1]/The Life Aquatic with Steve Zissou (2004) [1280x544, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Mummy Returns/The Mummy Returns (2001) [1920x816, 5.1] .ara.srt]
[RENAME] Rename [/input/The Mummy Returns/The Mummy Returns (2001) [1920x816, 5.1] .ara.srt] to [/output/Movies/The Mummy Returns (2001) [1920x816, 5.1]/The Mummy Returns (2001) [1920x816, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Mummy Tomb of the Dragon Emperor/The Mummy Tomb of the Dragon Emperor (2008) [1920x800, 5.1] .ara.srt]
Stripping invalid characters from new path: Movies/The Mummy: Tomb of the Dragon Emperor (2008) [1920x800, 5.1]/The Mummy: Tomb of the Dragon Emperor (2008) [1920x800, 5.1] .ara
[RENAME] Rename [/input/The Mummy Tomb of the Dragon Emperor/The Mummy Tomb of the Dragon Emperor (2008) [1920x800, 5.1] .ara.srt] to [/output/Movies/The Mummy Tomb of the Dragon Emperor (2008) [1920x800, 5.1]/The Mummy Tomb of the Dragon Emperor (2008) [1920x800, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Mummy/The Mummy (1999) [1920x814, 5.1] .ara.srt]
[RENAME] Rename [/input/The Mummy/The Mummy (1999) [1920x814, 5.1] .ara.srt] to [/output/Movies/The Mummy (1999) [1920x814, 5.1]/The Mummy (1999) [1920x814, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Perks of Being a Wallflower/The Perks of Being a Wallflower (2012) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The Perks of Being a Wallflower/The Perks of Being a Wallflower (2012) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Perks of Being a Wallflower (2012) [1920x1080, 5.1]/The Perks of Being a Wallflower (2012) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Pianist/The Pianist (2002) [1920x1040, 5.1] .bul.srt]
[RENAME] Rename [/input/The Pianist/The Pianist (2002) [1920x1040, 5.1] .bul.srt] to [/output/Movies/The Pianist (2002) [1920x1040, 5.1]/The Pianist (2002) [1920x1040, 5.1] .bul.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Straight Story/The Straight Story (1999) [1920x832, 5.1] .ara.srt]
[RENAME] Rename [/input/The Straight Story/The Straight Story (1999) [1920x832, 5.1] .ara.srt] to [/output/Movies/The Straight Story (1999) [1920x832, 5.1]/The Straight Story (1999) [1920x832, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The Verdict/The Verdict (1982) [1920x1040, 5.1] .ara.srt]
[RENAME] Rename [/input/The Verdict/The Verdict (1982) [1920x1040, 5.1] .ara.srt] to [/output/Movies/The Verdict (1982) [1920x1040, 5.1]/The Verdict (1982) [1920x1040, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.40.Year.Old.Virgin.2005.UNRATED.1080p.BluRay.x264.DTS-FGT/The 40 Year Old Virgin (2005) [1920x1040, 5.1] .ara.srt]

Rename [/input/The.40.Year.Old.Virgin.2005.UNRATED.1080p.BluRay.x264.DTS-FGT/The 40 Year Old Virgin (2005) [1920x1040, 5.1] .ara.srt] to [/output/Movies/The 40 Year Old Virgin (2005) [1920x1040, 5.1]/The 40 Year Old Virgin (2005) [1920x1040, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.A-Team.2010.Extended.Cut.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-WARHD/The A-Team (2010) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.A-Team.2010.Extended.Cut.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-WARHD/The A-Team (2010) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The A-Team (2010) [1920x1080, 5.1]/The A-Team (2010) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Best.Man.Holiday.2.2013.D.BDRip.1080p.NNM-CLUB/The Best Man Holiday (2013) [1920x800, 2.0] .ara.srt]
[RENAME] Rename [/input/The.Best.Man.Holiday.2.2013.D.BDRip.1080p.NNM-CLUB/The Best Man Holiday (2013) [1920x800, 2.0] .ara.srt] to [/output/Movies/The Best Man Holiday (2013) [1920x800, 2.0]/The Best Man Holiday (2013) [1920x800, 2.0] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Bourne.Identity.2002.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-WAR/The Bourne Identity (2002) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Bourne.Identity.2002.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-WAR/The Bourne Identity (2002) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Bourne Identity (2002) [1920x1080, 5.1]/The Bourne Identity (2002) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Bourne.Legacy.2012.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-WAR/The Bourne Legacy (2012) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Bourne.Legacy.2012.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-WAR/The Bourne Legacy (2012) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Bourne Legacy (2012) [1920x1080, 5.1]/The Bourne Legacy (2012) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Bourne.Supremacy.2004.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-WAR/The Bourne Supremacy (2004) [1920x1080, 5.1] .ara.srt]

Rename [/input/The.Bourne.Supremacy.2004.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-WAR/The Bourne Supremacy (2004) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Bourne Supremacy (2004) [1920x1080, 5.1]/The Bourne Supremacy (2004) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Bourne.Ultimatum.2007.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-WAR/The Bourne Ultimatum (2007) [1920x1080, 5.1] .ara.srt]

Rename [/input/The.Bourne.Ultimatum.2007.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-WAR/The Bourne Ultimatum (2007) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Bourne Ultimatum (2007) [1920x1080, 5.1]/The Bourne Ultimatum (2007) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Boxtrolls.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Boxtrolls (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Boxtrolls.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Boxtrolls (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Boxtrolls (2014) [1920x1080, 5.1]/The Boxtrolls (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Boy.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Boy (2016) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Boy.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Boy (2016) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Boy (2016) [1920x1080, 5.1]/The Boy (2016) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Change-Up.2011.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Change-Up (2011) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Change-Up.2011.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Change-Up (2011) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Change-Up (2011) [1920x1080, 5.1]/The Change-Up (2011) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Chronicles.of.Riddick/The Chronicles of Riddick (2004) [1920x800, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Chronicles.of.Riddick/The Chronicles of Riddick (2004) [1920x800, 5.1] .ara.srt] to [/output/Movies/The Chronicles of Riddick (2004) [1920x800, 5.1]/The Chronicles of Riddick (2004) [1920x800, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Cobbler.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Cobbler (2014) [1920x1080, 5.1] .ara.srt]
Auto-detect movie from context: [/input/The.Cobbler.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Cobbler (2014) [1920x1080, 5.1] .vie.ssa]
[RENAME] Rename [/input/The.Cobbler.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Cobbler (2014) [1920x1080, 5.1] .vie.ssa] to [/output/Movies/The Cobbler (2014) [1920x1080, 5.1]/The Cobbler (2014) [1920x1080, 5.1] .vie.ssa]
[RENAME] Rename [/input/The.Cobbler.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Cobbler (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Cobbler (2014) [1920x1080, 5.1]/The Cobbler (2014) [1920x1080, 5.1] .ara.srt]
Processed 2 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Conjuring.2.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/The Conjuring 2 (2016) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/The.Conjuring.2.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/The Conjuring 2 (2016) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Conjuring 2 (2016) [1920x1080, 7.1]/The Conjuring 2 (2016) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Contract.2006.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Contract (2006) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Contract.2006.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Contract (2006) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Contract (2006) [1920x1080, 5.1]/The Contract (2006) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Da.Vinci.Code.2006.EXTENDED.1080p.CEE.BluRay.AVC.TrueHD.5.1-FGT/The Da Vinci Code (2006) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Da.Vinci.Code.2006.EXTENDED.1080p.CEE.BluRay.AVC.TrueHD.5.1-FGT/The Da Vinci Code (2006) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Da Vinci Code (2006) [1920x1080, 5.1]/The Da Vinci Code (2006) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Dark.Knight.Rises.2012.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-WARHD/The Dark Knight Rises (2012) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Dark.Knight.Rises.2012.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-WARHD/The Dark Knight Rises (2012) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Dark Knight Rises (2012) [1920x1080, 5.1]/The Dark Knight Rises (2012) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Dead.Lands.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Dead Lands (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Dead.Lands.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Dead Lands (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Dead Lands (2014) [1920x1080, 5.1]/The Dead Lands (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Descendants.2011.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Descendants (2011) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Descendants.2011.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Descendants (2011) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Descendants (2011) [1920x1080, 5.1]/The Descendants (2011) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Double.2011.1080p.MKV.x264.AC3.DTS.Eng.NL.Subs/The Double (2011) [1920x824, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Double.2011.1080p.MKV.x264.AC3.DTS.Eng.NL.Subs/The Double (2011) [1920x824, 5.1] .ara.srt] to [/output/Movies/The Double (2011) [1920x824, 5.1]/The Double (2011) [1920x824, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Duel.2016.1080p.BluRay.x264.DTS-HD.MA.5.1-FGT/The Duel (2016) [1920x808, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Duel.2016.1080p.BluRay.x264.DTS-HD.MA.5.1-FGT/The Duel (2016) [1920x808, 5.1] .ara.srt] to [/output/Movies/The Duel (2016) [1920x808, 5.1]/The Duel (2016) [1920x808, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Entitled.2011.1080p.BluRay.x264.DTS-FGT/The Entitled (2011) [1920x800, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Entitled.2011.1080p.BluRay.x264.DTS-FGT/The Entitled (2011) [1920x800, 5.1] .ara.srt] to [/output/Movies/The Entitled (2011) [1920x800, 5.1]/The Entitled (2011) [1920x800, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Equalizer.2014.1080p.BluRay.x264.DTS-HD.MA.7.1-RARBG/The Equalizer (2014) [1920x808, 7.1] .ara.ass]
[RENAME] Rename [/input/The.Equalizer.2014.1080p.BluRay.x264.DTS-HD.MA.7.1-RARBG/The Equalizer (2014) [1920x808, 7.1] .ara.ass] to [/output/Movies/The Equalizer (2014) [1920x808, 7.1]/The Equalizer (2014) [1920x808, 7.1] .ara.ass]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Expatriate.2012.1080p.BluRay.x264.DTS-FGT/Erased (2012) [1920x814, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Expatriate.2012.1080p.BluRay.x264.DTS-FGT/Erased (2012) [1920x814, 5.1] .ara.srt] to [/output/Movies/Erased (2012) [1920x814, 5.1]/Erased (2012) [1920x814, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Eye.2008.1080p.BluRay.AVC.DTS-HR.5.1-FGT/The Eye (2008) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Eye.2008.1080p.BluRay.AVC.DTS-HR.5.1-FGT/The Eye (2008) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Eye (2008) [1920x1080, 5.1]/The Eye (2008) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Fast.and.Furious.2001.Bluray.1080p.DTS-HD.x264-Grym.(@BTNET)/The Fast and the Furious (2001) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Fast.and.Furious.2001.Bluray.1080p.DTS-HD.x264-Grym.(@BTNET)/The Fast and the Furious (2001) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Fast and the Furious (2001) [1920x1080, 5.1]/The Fast and the Furious (2001) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Fast.and.Furious.Tokyo.Drift.2006.Bluray.1080p.DTS-HD.x264-Grym.(@BTNET)/The Fast and the Furious Tokyo Drift (2006) [1920x1080, 5.1] .ara.srt]
Stripping invalid characters from new path: Movies/The Fast and the Furious: Tokyo Drift (2006) [1920x1080, 5.1]/The Fast and the Furious: Tokyo Drift (2006) [1920x1080, 5.1] .ara
[RENAME] Rename [/input/The.Fast.and.Furious.Tokyo.Drift.2006.Bluray.1080p.DTS-HD.x264-Grym.(@BTNET)/The Fast and the Furious Tokyo Drift (2006) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Fast and the Furious Tokyo Drift (2006) [1920x1080, 5.1]/The Fast and the Furious Tokyo Drift (2006) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.1.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.srt]
Auto-detect movie from context: [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.1.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.ssa]
Auto-detect movie from context: [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.2.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.srt]
Auto-detect movie from context: [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.2.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.ssa]
Stripping invalid characters from new path: Movies/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara
Stripping invalid characters from new path: Movies/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara
Stripping invalid characters from new path: Movies/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara
Stripping invalid characters from new path: Movies/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings: The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara
[RENAME] Rename [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.1.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.ssa] to [/output/Movies/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.ssa]
[RENAME] Rename [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.2.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.ssa] to [/output/Movies/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.ssa]
[RENAME] Rename [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.1.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.srt] to [/output/Movies/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.srt]
[RENAME] Rename [/input/The.Fellowship.of.the.Ring.2001.Extended.Editions.Part.2.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.6.1-HDRemuX/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.srt] to [/output/Movies/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1]/The Lord of the Rings The Fellowship of the Ring (2001) [1920x1080, 6.1] .ara.srt]
Processed 4 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Fifth.Element.1997.NEW.REMASTERED.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/The Fifth Element (1997) [1920x1080, 7.1] .ara.srt]
Auto-detect movie from context: [/input/The.Fifth.Element.1997.NEW.REMASTERED.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/The Fifth Element (1997) [1920x1080, 7.1] .ara.sub]
[RENAME] Rename [/input/The.Fifth.Element.1997.NEW.REMASTERED.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/The Fifth Element (1997) [1920x1080, 7.1] .ara.sub] to [/output/Movies/The Fifth Element (1997) [1920x1080, 7.1]/The Fifth Element (1997) [1920x1080, 7.1] .ara.sub]
[RENAME] Rename [/input/The.Fifth.Element.1997.NEW.REMASTERED.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/The Fifth Element (1997) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Fifth Element (1997) [1920x1080, 7.1]/The Fifth Element (1997) [1920x1080, 7.1] .ara.srt]
Processed 2 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Final.Girls.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Final Girls (2015) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Final.Girls.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Final Girls (2015) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Final Girls (2015) [1920x1080, 5.1]/The Final Girls (2015) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Finest.Hours.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG/The Finest Hours (2016) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/The.Finest.Hours.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG/The Finest Hours (2016) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Finest Hours (2016) [1920x1080, 7.1]/The Finest Hours (2016) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Forbidden.Kingdom.1080p.BluRay.x264-HD1080/The Forbidden Kingdom (2008) [1920x800, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Forbidden.Kingdom.1080p.BluRay.x264-HD1080/The Forbidden Kingdom (2008) [1920x800, 5.1] .ara.srt] to [/output/Movies/The Forbidden Kingdom (2008) [1920x800, 5.1]/The Forbidden Kingdom (2008) [1920x800, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Forger.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Forger (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Forger.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Forger (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Forger (2014) [1920x1080, 5.1]/The Forger (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Gambler.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Gambler (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Gambler.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Gambler (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Gambler (2014) [1920x1080, 5.1]/The Gambler (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Gift.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Gift (2015) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Gift.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Gift (2015) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Gift (2015) [1920x1080, 5.1]/The Gift (2015) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Girl.Next.Door.2004.UNRATED.1080p.EUR.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Girl Next Door (2004) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Girl.Next.Door.2004.UNRATED.1080p.EUR.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Girl Next Door (2004) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Girl Next Door (2004) [1920x1080, 5.1]/The Girl Next Door (2004) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Giver.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Giver (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Giver.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Giver (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Giver (2014) [1920x1080, 5.1]/The Giver (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Good.Shepherd.2006.1080p.BluRay.VC-1.DTS-HD.MA.5.1-FGT/The Good Shepherd (2006) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Good.Shepherd.2006.1080p.BluRay.VC-1.DTS-HD.MA.5.1-FGT/The Good Shepherd (2006) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Good Shepherd (2006) [1920x1080, 5.1]/The Good Shepherd (2006) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Grey.2011.Open.Matte.1080p.BluRay.x264.DTS-FGT/The Grey (2011) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Grey.2011.Open.Matte.1080p.BluRay.x264.DTS-FGT/The Grey (2011) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Grey (2011) [1920x1080, 5.1]/The Grey (2011) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Guard.2011.1080p.MKV.X264.AC3.DTS.Eng.NL.Subs/The Guard (2011) [1920x816, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Guard.2011.1080p.MKV.X264.AC3.DTS.Eng.NL.Subs/The Guard (2011) [1920x816, 5.1] .ara.srt] to [/output/Movies/The Guard (2011) [1920x816, 5.1]/The Guard (2011) [1920x816, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Hobbit.The.Battle.of.the.Five.Armies.2014.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG/The Hobbit The Battle of the Five Armies (2014) [1920x1080, 7.1] .ara.srt]
Stripping invalid characters from new path: Movies/The Hobbit: The Battle of the Five Armies (2014) [1920x1080, 7.1]/The Hobbit: The Battle of the Five Armies (2014) [1920x1080, 7.1] .ara
[RENAME] Rename [/input/The.Hobbit.The.Battle.of.the.Five.Armies.2014.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG/The Hobbit The Battle of the Five Armies (2014) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Hobbit The Battle of the Five Armies (2014) [1920x1080, 7.1]/The Hobbit The Battle of the Five Armies (2014) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Hobbit.The.Desolation.of.Smaug.2013.EXTENDED.1080p.BluRay.AVC.DTS-HD.MA.7.1-RARBG/The Hobbit The Desolation of Smaug (2013) [1920x1080, 7.1] .ara.srt]
Stripping invalid characters from new path: Movies/The Hobbit: The Desolation of Smaug (2013) [1920x1080, 7.1]/The Hobbit: The Desolation of Smaug (2013) [1920x1080, 7.1] .ara
[RENAME] Rename [/input/The.Hobbit.The.Desolation.of.Smaug.2013.EXTENDED.1080p.BluRay.AVC.DTS-HD.MA.7.1-RARBG/The Hobbit The Desolation of Smaug (2013) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Hobbit The Desolation of Smaug (2013) [1920x1080, 7.1]/The Hobbit The Desolation of Smaug (2013) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Hollow.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT/The Hollow (2016) [1920x1080, 5.1] .eng.srt]
[RENAME] Rename [/input/The.Hollow.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT/The Hollow (2016) [1920x1080, 5.1] .eng.srt] to [/output/Movies/The Hollow (2016) [1920x1080, 5.1]/The Hollow (2016) [1920x1080, 5.1] .eng.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Hunger.Games.Mockingjay.Part.1.2014.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/The Hunger Games Mockingjay - Part 1 (2014) [1920x1080, 7.1] .ara.srt]
Stripping invalid characters from new path: Movies/The Hunger Games: Mockingjay - Part 1 (2014) [1920x1080, 7.1]/The Hunger Games: Mockingjay - Part 1 (2014) [1920x1080, 7.1] .ara
[RENAME] Rename [/input/The.Hunger.Games.Mockingjay.Part.1.2014.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG/The Hunger Games Mockingjay - Part 1 (2014) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Hunger Games Mockingjay - Part 1 (2014) [1920x1080, 7.1]/The Hunger Games Mockingjay - Part 1 (2014) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Illusionist.2006.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Illusionist (2006) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Illusionist.2006.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Illusionist (2006) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Illusionist (2006) [1920x1080, 5.1]/The Illusionist (2006) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Imitation.Game.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Imitation Game (2014) [1920x1080, 5.1] .ara.srt]
Auto-detect movie from context: [/input/The.Imitation.Game.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Imitation Game (2014) [1920x1080, 5.1] .ara.ssa]
[RENAME] Rename [/input/The.Imitation.Game.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Imitation Game (2014) [1920x1080, 5.1] .ara.ssa] to [/output/Movies/The Imitation Game (2014) [1920x1080, 5.1]/The Imitation Game (2014) [1920x1080, 5.1] .ara.ssa]
[RENAME] Rename [/input/The.Imitation.Game.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Imitation Game (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Imitation Game (2014) [1920x1080, 5.1]/The Imitation Game (2014) [1920x1080, 5.1] .ara.srt]
Processed 2 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Intern.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Intern (2015) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Intern.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Intern (2015) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Intern (2015) [1920x1080, 5.1]/The Intern (2015) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.International.2009.1080p.BluRay.AVC.TrueHD.5.1-FGT/The International (2009) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.International.2009.1080p.BluRay.AVC.TrueHD.5.1-FGT/The International (2009) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The International (2009) [1920x1080, 5.1]/The International (2009) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Italian.Job.2003.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Italian Job (2003) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Italian.Job.2003.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Italian Job (2003) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Italian Job (2003) [1920x1080, 5.1]/The Italian Job (2003) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Karate.Kid.2010.REMASTERED.1080p.CEE.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Karate Kid (2010) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Karate.Kid.2010.REMASTERED.1080p.CEE.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Karate Kid (2010) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Karate Kid (2010) [1920x1080, 5.1]/The Karate Kid (2010) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Last.Stand.2013.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Last Stand (2013) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/The.Last.Stand.2013.1080p.BluRay.AVC.DTS-HD.MA.5.1-FGT/The Last Stand (2013) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Last Stand (2013) [1920x1080, 7.1]/The Last Stand (2013) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Last.Witch.Hunter.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG/The Last Witch Hunter (2015) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/The.Last.Witch.Hunter.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG/The Last Witch Hunter (2015) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Last Witch Hunter (2015) [1920x1080, 7.1]/The Last Witch Hunter (2015) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Legend.of.Tarzan.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/The Legend of Tarzan (2016) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/The.Legend.of.Tarzan.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/The Legend of Tarzan (2016) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Legend of Tarzan (2016) [1920x1080, 7.1]/The Legend of Tarzan (2016) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Lego.Movie.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Lego Movie (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Lego.Movie.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Lego Movie (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Lego Movie (2014) [1920x1080, 5.1]/The Lego Movie (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Lion.King.1994.1080p.BluRay.x264-THUGLiNE/The Lion King (1994) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Lion.King.1994.1080p.BluRay.x264-THUGLiNE/The Lion King (1994) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Lion King (1994) [1920x1080, 5.1]/The Lion King (1994) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Little.Prince.2015.1080p.BluRay.REMUX.AVC.TrueHD.7.1-RARBG/The Little Prince (2015) [1920x1080, 7.1] .ara.srt]
[RENAME] Rename [/input/The.Little.Prince.2015.1080p.BluRay.REMUX.AVC.TrueHD.7.1-RARBG/The Little Prince (2015) [1920x1080, 7.1] .ara.srt] to [/output/Movies/The Little Prince (2015) [1920x1080, 7.1]/The Little Prince (2015) [1920x1080, 7.1] .ara.srt]
Processed 1 files
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/input/The.Loft.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Loft (2014) [1920x1080, 5.1] .ara.srt]
[RENAME] Rename [/input/The.Loft.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG/The Loft (2014) [1920x1080, 5.1] .ara.srt] to [/output/Movies/The Loft (2014) [1920x1080, 5.1]/The Loft (2014) [1920x1080, 5.1] .ara.srt]
Processed 1 files
Done ヾ(@⌒ー⌒@)ノ
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

I have posted the log for movies folder. The video and subtitle files are renamed just perfect. However, the folders names are not all of them renamed. How can I correct this?

I have followed your instruction with the commend. I will paste here:

"Movies/{ny.$QUOTE_FIXER} {[resolution, channels]}/{ny.$QUOTE_FIXER} {[resolution, channels]} {' CD'+pi} {subt}"

Just FYI, the $QUOTE_FIXER is defined as follows:

QUOTE_FIXER='replaceAll(/[\`\u00b4\u2018\u2019\u02bb]/, "'"'"'").replaceAll(/[\u201c\u201d]/, '"'"'""'"'"')'
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

uaeproz wrote:the folders names are not all of them renamed
Where in the logs you posted do you see this problem?


Folder name looks good to me:

Code: Select all

Movies/Tai Chi Zero (2012) [1920x816, 5.1]/Tai Chi Zero (2012) [1920x816, 5.1] .ara.srt
The extra space before ".ara.srt" is caused by the extra space in front of {subt} in your format.
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

Not in the log but when I browse the drive there are many many folders are unchanged. However, video and sub files are renamed.
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

1.
"Rename" and "Move" is the same operation so you can't have one without the other. If you refer to deleting left behind empty folders, then the clean option is responsible for that and you will find corresponding log entries at the end of the log for each run.

2.
Please run filebot -script fn:sysinfo and post the output.
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

How can I run this in the docker?
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

For docker specific help, you'll need to turn to the authors of the docker. I can only help you with normal filebot usage.


EDIT:


--action rename has been a hidden/unsupported option that forces FileBot to rename files in place regardless of format. Not sure why the docker maintainer would do that. You want --action move which is default. Also, --action rename has been completely removed some time ago, so you're using an outdated version.

uaeproz wrote:How can I run this in the docker?
Not sure why you are stuck with docker, but it seems that all your FileBot issues are really docker issues caused by some half-baked container that is not meant for anyone but the original author, and somehow ended up being used by people that don't know what they're doing.

:idea: What's the point of using docker if it makes things more complicated, forces you to use an old version and generally makes things unusable?
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

I removed the docker and I ran the script you gave. Here is the output:

FileBot 4.7.7 (r4678)
JNA Native: java.lang.UnsatisfiedLinkError: Native library (com/sun/jna/linux-x86-64/libjnidispatch.so) not found in resource path ([file:/usr/local/Filebot/FileBot.jar])
MediaInfo: net.filebot.mediainfo.MediaInfoException: Unable to load amd64 (64-bit) native library libmediainfo.so: Could not initialize class com.sun.jna.Native
Apache Commons VFS: [zip, rar]
Chromaprint: java.io.IOException: Cannot run program "/usr/local/Filebot/fpcalcfpcalc": error=2, No such file or directory
Extended Attributes: java.lang.RuntimeException: java.lang.RuntimeException: java.nio.file.FileSystemException: /usr/local/Filebot/config/usr/local/Filebot/data/.xattr: Error writing extended attribute 'net.filebot.metadata': Operation not supported
Script Bundle: 2017-01-05 (r470)
Groovy: 2.4.7
JRE: Java(TM) SE Runtime Environment 1.8.0_25
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 8 Core / 6 GB Max Memory / 37 MB Used Memory
OS: Linux (amd64)
Package: PORTABLE
Data: /usr/local/Filebot/config/usr/local/Filebot/data
uname: Linux Tower 4.4.30-unRAID #2 SMP PREEMPT Sat Nov 5 12:09:05 PDT 2016 x86_64 Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz GenuineIntel GNU/Linux
Done ヾ(@⌒ー⌒@)ノ
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

You're missing all the native libraries:
https://github.com/filebot/filebot/tree ... inux-amd64
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

I just added the files

Code: Select all

FileBot 4.7.7 (r4678)
JNA Native: java.lang.UnsatisfiedLinkError: Can't obtain static method fromNative(Method, Object) from class com.sun.jna.Native
MediaInfo: net.filebot.mediainfo.MediaInfoException: Unable to load amd64 (64-bit) native library libmediainfo.so: Could not initialize class com.sun.jna.Native
Apache Commons VFS: [zip, rar]
Chromaprint: java.io.IOException: Cannot run program "/usr/local/Filebot/fpcalcfpcalc": error=2, No such file or directory
Extended Attributes: java.lang.RuntimeException: java.lang.RuntimeException: java.nio.file.FileSystemException: /usr/local/Filebot/config/usr/local/Filebot/data/.xattr: Error writing extended attribute 'net.filebot.metadata': Operation not supported
Script Bundle: 2017-01-05 (r470)
Groovy: 2.4.7
JRE: Java(TM) SE Runtime Environment 1.8.0_25
JVM: 64-bit Java HotSpot(TM) 64-Bit Server VM
CPU/MEM: 8 Core / 6 GB Max Memory / 34 MB Used Memory
OS: Linux (amd64)
Package: PORTABLE
Data: /usr/local/Filebot/config/usr/local/Filebot/data
uname: Linux Tower 4.4.30-unRAID #2 SMP PREEMPT Sat Nov 5 12:09:05 PDT 2016 x86_64 Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz GenuineIntel GNU/Linux
Done ヾ(@⌒ー⌒@)ノ
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

I see. The native libraries in the repository are for the latest revision.

Try the portable package from here:
https://sourceforge.net/projects/filebo ... _4.7.8_B1/
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

Where should I add those files to?
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

1. Download the latest portable package:

Code: Select all

wget "https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz"

Code: Select all

tar xf *.tar.xz
2. Download native code for your platform:

Code: Select all

svn checkout https://github.com/filebot/filebot/trunk/lib/native/linux-amd64 .
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

I'm getting these responses

filebot tar xf *.tar.xz
-bash: filebot: command not found
root@Tower:/boot/config/plugins# svn checkout https://github.com/filebot/filebot/trun ... inux-amd64 .
-bash: svn: command not found
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

Code: Select all

root@Tower:/boot/config/plugins# wget "https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz"
--2017-02-01 11:55:49--  https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz
Resolving sourceforge.net (sourceforge.net)... 216.34.181.60
Connecting to sourceforge.net (sourceforge.net)|216.34.181.60|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz/ [following]
--2017-02-01 11:55:50--  https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz/
Connecting to sourceforge.net (sourceforge.net)|216.34.181.60|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz/download [following]
--2017-02-01 11:55:51--  https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz/download
Connecting to sourceforge.net (sourceforge.net)|216.34.181.60|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://downloads.sourceforge.net/project/filebot/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz?r=&ts=1485935753&use_mirror=excellmedia [following]
--2017-02-01 11:55:53--  https://downloads.sourceforge.net/project/filebot/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz?r=&ts=1485935753&use_mirror=excellmedia
Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.34.181.59
Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.34.181.59|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://excellmedia.dl.sourceforge.net/project/filebot/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz [following]
--2017-02-01 11:55:54--  https://excellmedia.dl.sourceforge.net/project/filebot/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz
Resolving excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)... 202.153.32.19
Connecting to excellmedia.dl.sourceforge.net (excellmedia.dl.sourceforge.net)|202.153.32.19|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 18299804 (17M) [application/octet-stream]
Saving to: ‘FileBot_4.7.8-portable.tar.xz’

FileBot_4.7.8-porta 100%[===================>]  17.45M  2.57MB/s    in 6.6s

2017-02-01 11:56:01 (2.63 MB/s) - ‘FileBot_4.7.8-portable.tar.xz’ saved [18299804/18299804]
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

1. Sorry, but you need to figure these things out yourself, or at least learn how to copy and paste without adding random stuff to the command. ;)

Untar a tar archive:

Code: Select all

tar xf *.tar.xz
Why would you use "filebot" to untar a tar archive? Think for yourself!

Code: Select all

filebot tar xf *.tar.xz

2. If you don't have svn then you either need to install svn or download the native libraries yourself.
:idea: Please read the FAQ and How to Request Help.
uaeproz
Donor
Posts: 51
Joined: 19 Jan 2017, 08:50

Re: Little help - Script and struggling with

Post by uaeproz »

Ok, this is what I did. I removed the filebot docker and plugins. I downloaded the file *xz and extracted it where it extracted Portable Launcher. Now, how can I install the plugin from the exe file? it should be PLG file in order to install it as plugins.

I'm very new to this and I would appreciate your help.

Thanks
User avatar
rednoah
The Source
Posts: 23133
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Little help - Script and struggling with

Post by rednoah »

Here's a script for you. Just copy the whole thing into your terminal and hit ENTER. Should work out of the box. If not, please paste the console output.

1.

Code: Select all

cd /path/to/install/filebot/folder
2.

Code: Select all

#!/bin/sh -xu

# Download latest portable package
wget "https://sourceforge.net/projects/filebot/files/filebot/HEAD/FileBot_4.7.8_B1/FileBot_4.7.8-portable.tar.xz"

# Extract *.tar.xz archive
tar xvf *.tar.xz

# Download native libraries
wget "https://github.com/filebot/filebot/raw/master/lib/native/linux-amd64/fpcalc"
wget "https://github.com/filebot/filebot/raw/master/lib/native/linux-amd64/lib7-Zip-JBinding.so"
wget "https://github.com/filebot/filebot/raw/master/lib/native/linux-amd64/libjnidispatch.so"
wget "https://github.com/filebot/filebot/raw/master/lib/native/linux-amd64/libmediainfo.so"
wget "https://github.com/filebot/filebot/raw/master/lib/native/linux-amd64/libzen.so"

# Verify filebot.sh works
$PWD/filebot.sh -script fn:sysinfo

# Link into default $PATH
sudo ln -sf $PWD/filebot.sh /usr/local/bin/filebot

# Verify filebot command works
filebot -version && echo "DONE"
:idea: Please read the FAQ and How to Request Help.
Post Reply