RTorrent: move downloads to different directories depending on tracker

Hi!
I would like rTorrent to move completed downloads to different directories depending on the trackers in the torrent. An ideal setup for me would be something like this:
torrents/completed/tracker_x
torrents/completed/tracker_y
torrents/completed/tracker_z
torrents/completed/unknown_trackers
torrents/incomplete
torrents/torrent_files
torrents/session_data
Any hints/links/etc for me? I think i can make something work if rTorrent could pass the .torrent file path and downloading directory to a bash script

very lazily copied out my .rtorrentrc
32 schedule = watch_directory_1,10,10,"load_start=/home/share/media/torrents/foo/*.torrent,d.set_custom1=/home /share/media/video/foo"
33 schedule = watch_directory_2,10,10,"load_start=/home/share/media/torrents/bar/*.torrent,d.set_custom1=/home/s hare/media/video/bar"
39 on_finished = move_complete,"d.set_directory=$d.get_custom1= ;execute=mv,-u,$d.get_base_path=,$d.get_custom1="
there's also this, but i think it doesn't actually move the files; it makes symlinks.
http://code.google.com/p/pyroscope/wiki … Completion
Last edited by tladuke (2010-12-12 23:31:40)

Similar Messages

  • Can I move downloaded mountain lion to different machine?

    Weird internet connection at office (DNS server settings or some other gremlin that's beyond my expertise) won't let computers download Mountain Lion from App Store. Other apps are fine, could be a size issue not sure. Anyway, I downloaded to another machine using another internet connection (different location). Can I move that download to different machine? How?

    Yes as long as these are both your computers. Transfer target disk mode, USB flash drive, external HD, DVD, Dropbox, etc
    Are the computer close by and portable or at a distance??  This might dictate how you move your download.

  • After downloading two different movies the cover page artwork has vanished?

    After downloading two different movies the cover page artwork has vanished?

    This is indeed a sign of the code not being threadsafe.
    There is only one fact that you need to keep in mind: there will only one instance of a servlet class be created in the beginning of application's lifetime and it will be shared among all requests and sessions in the application's life. Knowing that fact, it should indeed be obvious enough that an instance variable will be shared among all requests/sessions as well. Solving this problem is also obvious enough: declare request and session scoped data threadlocal (inside the method block).

  • How to use two different packages which in  different directories?

    In my progrom, I'm using two differnet packages that in two different directories, but if I use classpath , the program can only be in one environment, so what can I do?

    or you set your classpath to the first common dir they have, and specify the packages from that dir on...
    or you just simply copy (you don't have to move it) the one package together with the other package...
    by the way you can add multiple paths to your classpath...
    between the paths you specify a ";"
    if i'm not mistaken...
    SeJo

  • IPod touch 3rd Gen won't finish app updates or movie download.

    App updates would get stuck and stop downloading, so after trying different things I have restored to factory 5.01 without restoring any apps or data. That didn't work. App downloads hang, App updates hang. Movie downloads then after processing and seemingly finished stops with with "Unable to download now could not be downloaded this time"
    I have tried external power and without, on, locked and always unlocked.  Nothing works. I have managed to get one app download in about 30 trys and zero movies.
    Please don't say something lame like "you can connect it to your itunes and download them there and synch"  What is the point of that?
    I do this exact same stuff on the same network, same account, same wifi, with two ipads, two iphone 4's, and a 4th gen touch.  This device has always had update isues especially more than 2 or 3 apps.
    Since all my other devices work, it seems this ipod touch may have had a problem since the get-go. But, it still could be something like the way it this exact device is handled on my account at Apple or something.
    What can I do?

    [How To] Solve Apps Waiting | iPad, iPhone, and iPod touch forums | iFans

  • Premiere Pro CC and Encoder CC ( 7.1.0 ) produce different outputs dependant on Queue or Export meth

    I have used a standard workflow for many months but recently something has changed. If I create a simple 720x576 sequence with video and then send this to Media encoder I get different results dependant on if I queue or export the sequence. If I export directly from the application then the resulting file is perfect ( MPEG2/QT ) , however if I queue the file and then export the resulting file contains small black vertical bands at either side of the image an the resulting image looks squashed.
    Testing the same workflow in CS6 does not have the issue.
    Has something changed with the latest 7.1.0 release ???
    Can anyone make a simple test and let me know ??
    If you simply queue to the Media encoder and view the window you can see the added bands ??
    I am using MAC OSX 10.7.5 as a platform
    Thanks

    Here you can download the trial they are all the first build (7.0)
    http://prodesigntools.com/adobe-cc-direct-download-links.html
    Updates can be found here:
    http://www.adobe.com/support/downloads/product.jsp?product=98&platform =Windows
    http://www.adobe.com/support/downloads/product.jsp?product=98&platform =Macintosh
    Take from http://forums.adobe.com/thread/1357792?tstart=0
    Also, take care to track down Adobe Media Encoder 7.0 — the installers above don't downgrade AME, and you'll have issues queing projects if you're sending it from Premiere 7.0 to AME 7.2.

  • .java files located in different directories - trouble compiling

    My attempts at getting my main .class file (../master/BicycleMaster.class) to automatically recognize that it's supporting .class file (../master/child/BicycleChild.class) located one directory below keep failing and the .java files won't compile.
    If I move both .java files to the same location (in the ../master directory) then they compile and run just fine, but it's when I want to separate them into the two different directories that I have a problem compiling them. They won't compile because the references in BicycleMaster.jave to BicycleChild.java can't be resolved.
    I was hoping - if you have time - that you might be able to show me by example in the code below? In the file ../master/BicycleMaster.java I added 'package master;' as the first line of the code. It was my impression that this would tell the compiler to look in the sub-directories for any additional .java files. This didn't work either.
    HERE ARE THE DETAILS:
    Directory of K:\COMMON\ITS\STEVEB\java\master
    03/04/2008 04:25 PM <DIR> .
    03/04/2008 04:25 PM <DIR> ..
    03/04/2008 04:24 PM 612 BicycleMaster.java
    03/04/2008 03:54 PM <DIR> child
    1 File(s) 612 bytes
    K:\COMMON\ITS\STEVEB\java\master>type BicycleMaster.java
    package master;
    class BicycleMaster {
        public static void main(String[] args) {
            //Create 2 different bicycle objects
            BicycleChild bike1 = new BicycleChild();
            BicycleChild bike2 = new BicycleChild();
            //Invoke methods on the objects
            bike1.changeCadence(50);
            bike1.speedUp(10);
            bike1.changeGear(2);
            bike1.printStates();
            bike2.changeCadence(50);
            bike2.speedUp(10);
            bike2.changeGear(2);
            bike2.changeCadence(40);
            bike2.speedUp(10);
            bike2.changeGear(3);
            bike2.printStates();
    }Directory of K:\COMMON\ITS\STEVEB\java\master\child
    03/04/2008 03:54 PM <DIR> .
    03/04/2008 03:54 PM <DIR> ..
    03/04/2008 03:54 PM 524 BicycleChild.java
    1 File(s) 524 bytes
    K:\COMMON\ITS\STEVEB\java\master\child>type BicycleChild.java
    class BicycleChild {
        int cadence = 0;
        int speed = 0;
        int gear = 1;
        void changeCadence(int NewValue) {
            cadence = NewValue;
        void changeGear(int NewValue) {
            gear = NewValue;
        void speedUp(int increment) {
            speed = speed + increment;
        void applyBrakes(int decrement) {
            speed = speed - decrement;
        void printStates() {
            System.out.println("Your cadence: "+cadence+", Your speed: "+speed+", Your gear: "+gear);
    }HERE ARE THE ERRORS:
    First I compile the ../master/child/BicycleChild.java file and it compiles fine. This I attempt to compile ../master/BicycleMaster.java and I get the following errors:
    K:\COMMON\ITS\STEVEB\java\master>javac BicycleMaster.java
    BicycleMaster.java:5: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike1 = new BicycleChild();
    ^
    BicycleMaster.java:5: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike1 = new BicycleChild();
    ^
    BicycleMaster.java:6: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike2 = new BicycleChild();
    ^
    BicycleMaster.java:6: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike2 = new BicycleChild();
    ^
    4 errors

    Thanks so much for responding. Progress was definetly made as the compiler now works longer before erroring out. Sadly it's still erroring out for a reason I'm not understanding. Please let me know if you can see where I'm going wrong.
    Here's how it played out for me:
    K:\COMMON\ITS\STEVEB\java>echo %classpath%
    .;k:\common\its\steveb\java\;C:\Program Files\Java\jre1.6.0_04\lib\ext\QTJava.zip
    K:\COMMON\ITS\STEVEB\java\master\child>javac BicycleChild.java
    K:\COMMON\ITS\STEVEB\java\master\child>cd ..
    K:\COMMON\ITS\STEVEB\java\master>javac BicycleMaster.java
    BicycleMaster.java:5: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike1 = new BicycleChild();
    ^
    BicycleMaster.java:5: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike1 = new BicycleChild();
    ^
    BicycleMaster.java:6: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike2 = new BicycleChild();
    ^
    BicycleMaster.java:6: cannot find symbol
    symbol : class BicycleChild
    location: class master.BicycleMaster
    BicycleChild bike2 = new BicycleChild();
    ^
    4 errors
    Here are the two programs revised as you suggested:
    K:\COMMON\ITS\STEVEB\java\master\child>type BicycleChild.java
    package master.child;
    class BicycleChild {
        int cadence = 0;
        int speed = 0;
        int gear = 1;
        void changeCadence(int NewValue) {
            cadence = NewValue;
        void changeGear(int NewValue) {
            gear = NewValue;
        void speedUp(int increment) {
            speed = speed + increment;
        void applyBrakes(int decrement) {
            speed = speed - decrement;
        void printStates() {
            System.out.println("Your cadence: "+cadence+", Your speed: "+speed+", Your gear: "+gear);
    }K:\COMMON\ITS\STEVEB\java\master>type BicycleMaster.java
    package master;
    class BicycleMaster {
        public static void main(String[] args) {
            //Create 2 different bicycle objects
            BicycleChild bike1 = new BicycleChild();
            BicycleChild bike2 = new BicycleChild();
            //Invoke methods on the objects
            bike1.changeCadence(50);
            bike1.speedUp(10);
            bike1.changeGear(2);
            bike1.printStates();
            bike2.changeCadence(50);
            bike2.speedUp(10);
            bike2.changeGear(2);
            bike2.changeCadence(40);
            bike2.speedUp(10);
            bike2.changeGear(3);
            bike2.printStates();
    }

  • Mm:can we assign movement type to different g/l acc.

    dear gurus.
    please help me out.
    can we assign movement type to different g/l acc.
    if yes how?
    thanks
    piyush singh

    Its depends , if the valuation class, plant is different, yes you can define diff G/L acc, but if all criteria in the same, then you can copy the mov,type and then define your own account modification then assign the diff G/L acc in OBYC.
    Please also check this link:
    Movement Type 261 - Different G/L account to get debited for same Movement

  • Very SLOW movie downloads from iTunes Store

    I posted this in a different thread, but saw it was already answered. Thought I would post a new thread.
    Downloaded and installed 9.0.1. Still having EXTREMELY SLOW download speeds on any movie downloads. I am downloading "Troy" and at this time it will take 18,000 hours to download. Something definitely is not right.
    Songs download at their normal speeds. Movies take literally forever.
    So 9.0.1 did not correct the problem.

    I usually test around 5 as well, but sure enough I noticed a HUGE slowdown in my internet speed after an evening of downloading rentals last week. The slow speed (less than 1.5!) continued on after that and it took a tech support call to my ISP to get it "fixed".
    My guess - Qwest is "throttling" video-intensive internet use. Torrent or not.
    I believe Qwest automatically throttles any encrypted downloads but I don't know if AppleTV downloads are encrypted?
    My speed is back up around 5 again, and I will keep a close eye on it next time I rent.

  • Force 1080p Movie Downloads from iTunes Store

    Hi everyone, my first post here.
    I know that you can change preferences for HD movies between 720 and 1080p in iTunes settings, and mine is set to 1080p. When I am about to download a movie I can see on the movie page that it says "Available in 720p and 1080p, downloading 1080p", and then it displays the size in GB of the 1080p file.
    HOWEVER, my concern is that when attempting to download a movie in 1080p with a device with a sub-1080p resolution (which includes every macbook except the Retina I believe) iTunes will automatically decide for you that the movie is larger than your screen and so it will download the 720p version. I have verified this by checking the resolution of the finished download, and also the size of the movie is ~1-2 GB (depends on the movie) smaller than the labeled 1080p size on iTunes store.
    I borrowed a 1080p monitor and tried again, and I was able to get a full 1080 download. I am positive that my settings are right, and that the movie in question is available in both resolutions. (I have tested this with many movies actually).
    So, yes it's true that my MBA screen resolution cannot handle 1080p movies, but my iPad can and so can my Apple TV so I don't think this arbitraty restriction is warranted. Anyone know of a way around this? I will not be buying movies from the iTunes store anymore if they are forced to 720p instead of 1080p resolution because of my Macbook Air. You pay the same amount of money for either resolution but one is significantly better and I am not able to download it (not trying to discuss whether 1080 is actually better than 720, with my TV setup it is).
    Worth mentioning: The above issues have been with RENTED movies only, I have not tried downloading a full length movie because I'm not about to spend $15 instead of $4 just to have this issue again. 
    Try this yourselves!!! Many of you have probably had this same problem for ages but not even realized it. This should make you angry! Would also be interested if the problem persists for purchased movies, if anyone has tested this.

    Same issue. I've been buying TV shows and movies on iTunes for a long time and copying them to my iPhone to watch on my TV. A few days ago, I tried to move a rented movie to my iPhone the same way I always did, click the "move" button next to the movie under the movies tab for the iPhone in iTunes when iPhone was connected and then click "apply". It would do a quick sync without copying anything.
    I thought I had a bum file, so I e-mailed Apple support and they reset the purchase so that I could redownload, which I'm doing now.
    But my recently downloaded episodes of Lost will also not copy to my iPhone. AND they will not even play on my iMac. When I try to play them, it shows only a grey screen with a progress bar. TV shows and movies purchased and downloaded weeks or months ago still play fine.
    No changes have been made to my system. After the rented movie didn't play and copy, I did a update check and downloaded and installed the latest versions of iTunes and the iPhone firmware. That didn't fix it. I have the newest versions of the Quicktime and iTunes. The computer is authorized for these purchases. The iPhone is authorized.
    I've looked at similar threads and have not found a solution. I'm stumped. If anyone has a solution let me know.

  • The Amazing Spider Man 2 Movie Download Place good quality

    Right-The Amazing Spider Man 2 Movie Download-Place (good quality)
    The Amazing Spider Man 2 Movie Download Online 3D Screening, Watch The Amazing Spider Man 2 Online Full Streaming Free And Download The Amazing Spider Man 2 Movie.
    http://www.stumbleupon.com/lists/920414287894431888/
    http://www.plupload.com/punbb/viewtopic.php?pid=19485
    http://beta.slashdot.org/submission/3533799/right-the-amazing-spider-man-2-movie-download-place-good-quality
    Watch The Amazing Spider Man 2 Online 3D Screenings Present
    Watch The Amazing Spider Man 2 Online 3D Screenings Present for all of you. it’s a chance to watch The Amazing Spider Man 2 online full movie with your friends.

    Dolby Laboratories is potables the silver screen world with its new Dolby Atmos technology, the simply object-based cinema sound platform available in these times. Dolby Atmos unleashes the capability of sound in storytelling by outfitting sound experts
    the prominent exception to easily designation or feat medicine sounds anywhere in the movie theatre, not just where there happen to be speakers. The counting is what moviegoers venture avowed as the most engrossing and lifelike cinema sound experience ever.
    Introduced in April 2012, Dolby Atmos has been embraced by all the greatest Hollywood studios, six Doctrine Award® winning directors, and 12 Academy Award® winning sound mixers, among others. More than 450 Dolby Atmos screens have been installed or committed
    to in 40 countries with more than 150 exhibitors. More than 100 films from 10 selection countries—representing a adequate range of genres from order thrillers and spry fa to spirits and horror—have been or are scheduled to be released with Dolby Atmos sound
    since the first film debuted in June 2012.
    Dolby Atmos has customary detailed skill rewards from both the Hollywood Post Alliance and the Cinema Audio Federation. As the inventors of the only object-based audio scheme old in the cinema today, Dolby is efficacious in all respects with the Society of
    Manner Picture and Compel Engineers in driving adoption of standards for object-based audio.

  • HT1577 Is there a way I can make my movies download faster in itunes?

    Have closed all other applications and genius is off. Everything else downloads really fast but the movies are killing me - up to about 3 hours and counting. Then it's slow to put on my ipod. Have tried HD and SD, no difference whatsoever. Help!
    I have previously downloaded a movie and put it on my ipod within about 30 mins but for the past month or two itunes movie downloads are REALLY slow. I've read other forums that say similar but no one has got a solution yet. I thought I'd put it out there again - does anyone know what it is?
    I am using a brand new imac with tonnes of memory, broadband internet is obv the likely cause but EVERYTHING else is fast, only itunes movies are slow. Is there a setting that's been changed, perhaps in one of the software updates?
    I'm a new mac user so go easy on the tech advise please, I'm still in windows mode...
    Cheers

    Hi emburg,
    I'm sorry to hear you are having issues with the speed of your movie downloads. 
    It would be helpful to know what your download speed currently is.
    The link below will provide a few troubleshooting steps that you can try improve the download speed:
    iTunes: How to resume interrupted iTunes Store downloads
    ...You can also try the following steps to troubleshoot the download issue.
    Restart your computer or device.
    Check for updates for your Mac or PC and install any software updates. Also, check for and install updates for any security software you may have (anti-virus, anti-malware, firewall, and so on).
    If using Wi-Fi for Internet access, try using a different Wi-Fi network when downloading. If you are connecting to a home network, try restarting your Wi-Fi router. Also, check for and install any firmware updates for your Wi-Fi router. (Refer the manufacturer's website for your router to get information on updating its firmware).
    If you are on a computer, try using an ethernet cable for wired Internet access instead of using Wi-Fi.
    Resuming downloads from a computer
    Open iTunes.
    Choose Store > Check for Available Downloads.
    Enter your account name and password.
    Click the "Check Downloads" button.
    Click the Resume or Resume All button, or the resume arrow  to resume the download.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Can any one tell me how can I move to a different folder pictures, that I've cloned, without them staying aggregated? They all come together to the other folder and I don't want that- thanks

    Can any one tell me how can I move to a different folder pictures, that I've cloned, without them staying aggregated? They all come together to the other folder and I don't want that… thanks

    There's more to it than that.
    Folders in Aperture do not hold Images.  They hold Projects and Albums.  You cannot put an Image in a Folder without putting it in a Project or an Album inside that Folder.
    The relationship between Projects and Images is special:  every Image must in a Project, and can be in only one Project.
    Images can be in as many Albums you want.  Putting an Image in an Album does not move it from the Project that holds it.
    You can make as many Versions from a Master as you want.
    What you want to do may appear simple to you, but it still much adhere to how Aperture works.  I still can't tell exactly what you are trying to do (specifically: Images don't live in Folders; moving an Image from a Folder is non-sensical).
    It can be very confusing (and frustrating) to get going with Aperture -- but it does work, and can be enormously helpful.  If you haven't, take a look at the video tutorials on Apple's Aperture support site.
    I feel as though I haven't helped you much -- but we need to be using the same names for interface items in order to get anything done -- and my sense is that you still haven't learned the names of the parts.

  • Why is the contents of Safari's downloads folder different than the actual folder?

    Why is the contents of Safari's downloads folder different than the actual folder that resides in my users folder?

    Problem is if I delete that .plist I'll delete those downloads.  I'm still able to launch those downloads from that location so that tells that file is probably not corrupted. I need to be able to located that folder and transfer the downloads from it before I do anything like this.  So that begs the question, where is that folder located?  When I do a folder search I'm taken to a Downloads folder, but it's not the one that is showing up from within Safari as it's contents are too different. 

  • I have like five GB's of ghost data (data the device claims is not there but it is still taking up space) on my I pad 2 from a failed movie download attempt. How do I fix that with out resting my iPad? I have only 1GB left of storage

    I have like five GB's of ghost data (data the device claims is not there but it is still taking up space) on my I pad 2 from a failed movie download attempt. How do I fix that with out resting my iPad? I have only 1GB left of storage
    The movie had gotten to the point that I could watch it all the way through but it still said processing and got stuck at that point and when I turned off the wifi to try to restart it, it deleted its-self but did not free up any of the storage It was taking up
    Restarting my iPad does not help
    Some thing similar also happened to my old laptop when trying to download the iOS 5 update to my laptop when it came out. It kept getting disconnected and every time it would try to start over and act like what had already been downloaded was not there though it was still taking up the storage space.
    And it continued repeating until it took up all of my storage space. The data file would not show up anywhere so I had to restore my laptop to the factory settings and that worked for awhile but I eventually had to get a new laptop.

    Did you try to set it up as new device, as explained in this article?
    How to erase your iOS device and then set it up as a new device or restore it from backups
    If this does not work, use iTunes to set it back to factory settings, which would also install the latest software:
    Use iTunes to restore your iOS device to factory settings - Apple Support

Maybe you are looking for

  • Photoshop CC 2014.2 release note ?

    Hi everyone ! I've updated Photoshop CC 2014 this morning to latest release, via Creative Cloud application, and It seems impossible to find the release notes for this new version. On the tooltip, there was a link to http://www.adobe.com/go/photoshop

  • Acrobat 8 - switch hw and os from win xp to win 8.1 - installation says 'invalid serial number' - although I am very sure, it is :o)

    Hi folks, I am switching from my former pc (win XP) to a new one (Win 8.1). As I wanted to move my acrobat 8 installation to the new computer, I did the following right now: - I deactivated the license (from within acrobat 8) on the old computer - I

  • ERROR : No item category exists (Table T184L LB VERP  )

    There is a error log "No item category exists (Table T184L LB VERP  ) " when i try to create outbound delivery to subcontractor vendor via TCode ME2O. I already add item category LB VERP via TCode 0184, but it still error. Could anyone help me please

  • Why are the photos so big - 1M?

    The photos are too big for the quality of the camera/lens, around 1M. 100K pictures would be just as good, don't need bigger size because they don't look any better. The proof is if you put them on the computer, then back on the phone via iTunes, it

  • Problem with displaying picture.

    I use PS-CC and LR5.on a HP i7 computer and windows 7.Camera D-800, pictures in raw. I usually import pictures in nef  in LR5,. After  some corrections, I export my pictures to DNG format. I sometimes do a little bit of work in camera raw then go int