[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 1 Guest(s)
Post Reply 
Unrar unpack unzip torrents
09-22-2011, 10:45 PM
Post: #1
Unrar unpack unzip torrents
I have been looking for a couple days now, and can not find anything solid on this subject. After I download a torrent. It may be broken up into 20 different .rar files. I have to use my laptop to access the nmt and unrar it over the network. Talk about a pain. I don't care if it takes all day to do it, due to the speed of the nmt. Is there no app for the nmt can do this unrar, or unzip, or unpack, or what-ever-you-want to call it????
Find all posts by this user
Add Thank You Quote this message in a reply
09-25-2011, 06:17 PM
Post: #2
RE: Unrar unpack unzip torrents
I'm looking for an answer to the same question. Looks like you have to be a computer genius who understands what to run scripts means, how to create a script, and how to make it actually work. Let me know if you find anything.
Find all posts by this user
Add Thank You Quote this message in a reply
09-27-2011, 12:05 PM
Post: #3
RE: Unrar unpack unzip torrents
If you mean manual unraring via player's GUI, then 200 series players do support it. You simply need to select a RAR by pressing Enter in the file browser and choose unpack option in the menu that will appear. 200 series can also play files directly from RARs but this may be buggy.
Find all posts by this user
Add Thank You Quote this message in a reply
10-21-2011, 06:27 PM
Post: #4
RE: Unrar unpack unzip torrents
When i tries to do that, it will only unrar file nr. 1..... I normally telnet to the devise from my iPad and used the unrar e command...
Find all posts by this user
Add Thank You Quote this message in a reply
10-22-2011, 10:29 AM (This post was last modified: 10-22-2011 10:31 AM by DathRarhek.)
Post: #5
RE: Unrar unpack unzip torrents
There are several ways to do this completely automated. But it mainly depends on what your setup is for downloading torrents. Could you explain that?

And yes, in all cases it does require quite some fiddling with telnet, editors and scripts. Unfortunately it seems that majority of the community uses Usenet, and the automated ready to go scripts are much better for them.

But it's possible. For example I work with: RSS feed -> TorrentWatch-X -> Transmission 2.21 -> Modified unrar script -> Oversight. This does work, and completely automated downloads my movies and series.
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to DathRarhek for this post
04-05-2013, 06:52 PM
Post: #6
RE: Unrar unpack unzip torrents
(10-22-2011 10:29 AM)DathRarhek Wrote:  There are several ways to do this completely automated. But it mainly depends on what your setup is for downloading torrents. Could you explain that?

And yes, in all cases it does require quite some fiddling with telnet, editors and scripts. Unfortunately it seems that majority of the community uses Usenet, and the automated ready to go scripts are much better for them.

But it's possible. For example I work with: RSS feed -> TorrentWatch-X -> Transmission 2. 21 -> Modified unrar script -> Oversight. This does work, and completely automated downloads my movies and series.

Hey DathRarhek,

I got the setup you're describing here..
RSS feed with Torrentwatch-X

Can you help me with a modified script that unpacks and adds it to Oversight? Would be wonderful! Smile

Cheers
Find all posts by this user
Add Thank You Quote this message in a reply
04-08-2013, 10:55 AM
Post: #7
RE: Unrar unpack unzip torrents
(04-05-2013 06:52 PM)jannes Wrote:  I got the setup you're describing here..
RSS feed with Torrentwatch-X

Can you help me with a modified script that unpacks and adds it to Oversight? Would be wonderful! Smile

Cheers
I've posted that in this thread before. It is:
Code:
#!/bin/sh
# By DathRarhek

# The script for Transmission to unrar the newly downloaded files
# then scan them with Oversight

unrar_bin=/nmt/apps/bin/unrar

echo "############ " + `date` + " ############" >> /share/unrar.log

if [ -n "$TR_TORRENT_DIR" ] && [ -n "$TR_TORRENT_NAME" ] ; then
    name="$TR_TORRENT_NAME"
    dir="$TR_TORRENT_DIR"
fi

if [ -n "$1" ] ; then
    name=`basename "$1"`
    dir=`dirname "$1"`
fi

echo "Torrent name: $name" >> /share/unrar.log
echo "Torrent root dir: $dir" >> /share/unrar.log

if [ -z "$name" ] || [ -z "$dir" ] || [ ! -d "$dir/$name" ] ; then
    echo "Torrent data does not exit" >> /share/unrar.log
    exit 1;
fi

mkdir -p "/share/Complete/$name/"

IFS=$'\n'
for item in $(find "$dir/$name" -name "*.nfo" -o -name "*.rar" -o -name "*.mkv" -o -name "*.avi" -o -name "*.mp4"); do
    if [[ "$(echo "$item" | egrep -i "\.rar$" )" ]]; then
        echo "Found rar: $item" >> /share/unrar.log
        $unrar_bin x -y -o+ -p- -idq `echo "$item"` "/share/Complete/$name" >> /share/unrar.log 2>&1
    fi
    if [[ "$(echo "$item" | egrep -i "\.(mkv|avi|mp4)$" | grep -iv sample )" ]]; then
        echo "Found media: $item" >> /share/unrar.log
        cp "$item" "/share/Complete/$name/."
    fi
    if [[ "$(echo "$item" | egrep -i "\.nfo$" )" ]]; then
        echo "Found nfo: $item" >> /share/unrar.log
        cp "$item" "/share/Complete/$name/."
    fi
done
unset IFS

echo "Scanning with oversight" >> /share/unrar.log

# Scanning with Oversight
/share/Apps/oversight/bin/oversight.sh NEWSCAN RENAME "/share/Complete/$name/"

echo "Done at " + `date` >> /share/unrar.log
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Torrent expander/ unrar vus 9 809 04-26-2013 09:57 PM
Last Post: NaaN
  torrents die out minnemike 2 385 04-10-2013 07:37 PM
Last Post: minnemike
  CSI, usenet and torrents.... mrjaffa 1 519 04-01-2013 08:10 PM
Last Post: mrjaffa
Car Torrent unrar solution foximaxi 0 419 03-29-2013 12:46 PM
Last Post: foximaxi
  auto unrar script giovan39 0 505 02-15-2013 07:57 PM
Last Post: giovan39
  nzbget unrar script popcorn a400 giovan39 0 744 02-15-2013 08:17 AM
Last Post: giovan39
  Add multiple torrents at once ta2dude 3 1,562 01-30-2013 01:57 PM
Last Post: Setzer
  RSS feed auto download and start torrents votepsi 2 777 01-22-2013 05:47 AM
Last Post: ItsPopcornTime
  Torrents Not deleting from Web UI jibberboy2000 1 882 12-06-2012 01:13 PM
Last Post: ravivasnani
  Transmission 2.13 - Torrents dissapeared after upgrade darmada 0 791 09-27-2012 08:28 PM
Last Post: darmada

Forum Jump: