Apr 30, 2024, 04:56 am
(This post was last modified: Apr 30, 2024, 07:38 am by MaruTheAlmighty. Edited 4 times in total.)
.torrent files contain information on how to find a single torrent, but I'm wondering if there would be any interest in writing a form of "torrent collection" file?
What the file would do is include a series of links to multiple torrents (such as links to individual tv show episode torrents) which would be an alternative to providing season packs - as instead of having to upload a torrent containing multiple files you can upload individual torrents to each file and provide a collection list that links to each individual torrent. So if a file turns out to be corrupted or obsolete, instead of having to upload a v2 collection you would just need to upload the corrected file then a new collection list that links to the new file. Or you could provide a collection list that links to a collection torrent but skips the bad files and downloads replacements instead. Bonus if the list could identify the contents of each torrent and flag what to download and what to skep, and can rename the downloaded files and move them into different folders within a root collection folder.
Is that something that could be interesting?
So like a minimum file could just contain magnet links and a label for each link, and an advanced one could identify which files to skip downloading and rename and move files
File examples:
What the file would do is include a series of links to multiple torrents (such as links to individual tv show episode torrents) which would be an alternative to providing season packs - as instead of having to upload a torrent containing multiple files you can upload individual torrents to each file and provide a collection list that links to each individual torrent. So if a file turns out to be corrupted or obsolete, instead of having to upload a v2 collection you would just need to upload the corrected file then a new collection list that links to the new file. Or you could provide a collection list that links to a collection torrent but skips the bad files and downloads replacements instead. Bonus if the list could identify the contents of each torrent and flag what to download and what to skep, and can rename the downloaded files and move them into different folders within a root collection folder.
Is that something that could be interesting?
So like a minimum file could just contain magnet links and a label for each link, and an advanced one could identify which files to skip downloading and rename and move files
File examples:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<torrentlist>
<title lang="en">Breaking Bad Season 24</title>
<torrent>
<title lang="en">Breaking Bad Season 24 720p.BRrip.HDTV.OmegaRips</title>
<magnet>magnet:?xt=urn:btih:5628...announce</magnet>
<file action="skip">
<filename>Breaking.Bad.S24E32.720p.BRrip.HDTV.RWN.mkv</filename>
</file>
</torrent>
<torrent>
<title lang="en">Breaking Bad S24E32 720p HDTV [SuperRip]</title>
<magnet>magnet:?xt=urn:btih:2542...announce</magnet>
<file action="rename">
<filename>Breaking Bad 24x32 720p HDTV [SuperRip].mkv</filename>
<newname>Breaking.Bad.S24E32.720p.BRrip.HDTV.SuperRip.mkv</newname>
</file>
</torrent>
</torrentlist>
Code:
<?xml version="1.0" encoding="UTF-8"?>
<torrentlist>
<title lang="en">Breaking Bad Season 23</title>
<torrent>
<title lang="en">Breaking Bad S24E01 720p HDTV [SuperRip]</title>
<magnet>magnet:?xt=urn:btih:3342...announce</magnet>
</torrent>
<torrent>
<title lang="en">Breaking Bad S24E02 720p HDTV [SuperRip]</title>
<magnet>magnet:?xt=urn:btih:1432...announce</magnet>
</torrent>
<torrent>
<title lang="en">Breaking Bad S24E03 720p HDTV [SuperRip]</title>
<magnet>magnet:?xt=urn:btih:2345...announce</magnet>
</torrent>
<torrent>
<title lang="en">Breaking Bad S24E04 720p HDTV [SuperRip]</title>
<magnet>magnet:?xt=urn:btih:5223...announce</magnet>
</torrent>
</torrentlist>