Search found 3 matches

by Delerium
July 16th, 2016, 3:09 pm
Forum: Post-Processing Scripts
Topic: [Synology] Post processing rename.par/rename.with.this.par
Replies: 1
Views: 8738

[Synology] Post processing rename.par/rename.with.this.par

I wanted a script for post processing a Rename.par or rename.with.this.par to the par processor. The script checks if there is a PAR file (any name will go) in the extraction folder, if there is it will get the biggest file in the folder and assume this is the movie. The parfile and the moviefile wi...
by Delerium
July 15th, 2016, 11:47 am
Forum: Bug Reports
Topic: rename.par2 not been processed
Replies: 20
Views: 14755

Re: rename.par2 not been processed

I have resolved this with the following script: #! /bin/bash cd "$1" pwd ls -al parfile=$(find . -regex ".*\.\(par2\)" -printf "%f\n") moviefile=$(ls -1S | head -n 1) if [ ! -z "$parfile" ]; then echo "" echo "Found par file for rename: $parfile...
by Delerium
May 18th, 2016, 2:39 pm
Forum: Bug Reports
Topic: rename.par2 not been processed
Replies: 20
Views: 14755

Re: rename.par2 not been processed

As in the example above: par2 r rename.par2 S02E17.1399 this works but it needs the proper file/foldernames I'm trying to figure out how to do this since my Linux knowledge is very low and need a lot of help from Google. Currently i'm working on this: -Find par2 file in extracted folder > assign as ...