@creo.ev wrote:
Hello,
I will describe the torrent tracker system that I use for downloading movies:
The tracker is public and quickly updated, has an xml feed in which 25 latest releases htp://example.org/rss.php?cat=1
Each feed entry has the following format:<item> <title>FreshMovie (2016) BDRip 1080p from GroupName | iTunes (FreshMovie.2016.BDRip.1080p.GroupName.mkv.torrent)</title> <description>Movies</description> <pubDate>Tue, 2 Apr 2017 10:57:59 +0300</pubDate> <link>http://example.org/download.php?rss=559634</link> </item>
I prefer releases of 1080p from a certain group (GroupName), I use this config now:
schedules:
- tasks: movies
interval:
minutes: 10
tasks:
movies:
template:
- transmissionrpc
- notification
inputs:
- rss: 'http://example.org/rss.php?cat=1'
quality: 1080p bluray
regexp:
accept:
- 'GroupName.+(itunes|license)'
tmdb_lookup: yes
set:
content_filename: "{{ tmdb_original_name }} ({{ tmdb_year }})"
path: '/home/htpc/Movies'
This group has the first release with the sound of iTunes, and in a few weeks there is a version with an excellent sound from BlyRay disc. The old release with the sound of iTunes is changing the title and torrent, but it's still accessible by the old link (htp://example.org/download.php?rss=559634) the release is again in the xml feed.<item> <title>Brimstone (2016) BDRip 1080p from GroupName | License (Brimstone.2016.BDRip.1080p.GroupName.mkv.torrent)</title> <description>Movies</description> <pubDate>Tue, 4 Apr 2017 10:57:59 +0300</pubDate> <link>htp://example.org/download.php?rss=559634</link> </item>
But it does not download anymore, since there was already a download version with the sound of iTunes.
Help configure this schema:
1. Download the release with iTunes sound
2. When the release comes with a sound from the BluRay disc, download and replace the version with the sound of iTunes (without duplication)
Posts: 2
Participants: 2