UNPKG

multipass-torrent

Version:

Collects torrents from various sources (dump, RSS, HTML pages) and associates the video files within with IMDB ID

64 lines (53 loc) 2.55 kB
module.exports = { "logLevel": 1, "trackers": ["udp://tracker.leechers-paradise.org:6969/announce", "udp://tracker.coppersurfer.tk:6969/announce"], "trackerTimeout": 3000, "fetchMetaTimeout": 25000, // Different frm trackers - we have to update seed/leech for each torrents for all trackers, but this is for when we do retriever / fetchTorrent "fetchTorrentTrackers": ["udp://tracker.leechers-paradise.org:6969/announce", "udp://tracker.coppersurfer.tk:6969/announce"], "retrieverSources": [ { url: "http://torcache.net/torrent/%s.torrent" }, { url: "http://torrage.com/torrent/%s.torrent" }, //{ url: "http://yts.to/torrent/download/%s.torrent" } ], "processingConcurrency": 6, "minSeedToIndex": 4, "minSeedImportant": 200, // if it's important, we'll try to get the meta from the DHT / peers even when caches fail // If the torrent hasn't been updated for that time and not seeded, delete it "nonSeededTTL": 25*24*60*60*1000, // How often we update popularity "popularityTTL": 6*60*60*1000, "matchFiles": /.mp4$|.avi$|.mkv$/i, "excludeFiles": /^RARBG|^Sample|Cam Rip/i, "excludeTorrents": null, "excludeNonAscii": true, "cinemeta": "http://cinemeta.strem.io/stremioget", "stremioAddon": 7000, "stremioSecret": "8417fe936f0374fbd16a699668e8f3c4aa405d9f", "stremioCentral": "http://api9.strem.io", // Tagging system; all tags must be lowercase "tags": { "screener": ["screener", "dvdscr", "dvdscreener", "bdscr", "scr"], "cam": ["cam", "hdcam", "camrip", "hqcam"], "telesync": ["ts", "hdts", "telesync", "pdvd"], "workprint": ["workprint", "wp"], "r5": ["tc", "telecine", "r5"], // r5 + telecine "web": ["webdl", "web", "webrip"], "dvd": ["dvdrip"], "hdtv": ["dsr", "dsrip", "dthrip", "dvbrip", "hdtv", "pdtv", "tvrip", "hdtvrip", "hdrip"], "vod": ["vodrip", "vodr"], "br": ["bdrip", "brrip", "bluray", "bdr", "bd5", "bd9"], "dts": ["dts"], "hd": ["1080p"], "720p": ["720p"], "1080p": ["1080p"], "ac3": ["ac3"], "nonenglish": ["french", "italian", "spanish", "ru", "russian", "swesub", "dublado"], "badripper": ["italian", "sparks","evo", "hc", "korsub", "douglasvip", "murd3r", "nkr"], "yify": ["yts","yify"], //"yts": ["yts","yify"], // reserve for directly indexing from yts "cd1": ["cd1"], "cd2": ["cd2"], "cd3": ["cd3"], "splitted": ["cd1","cd2","cd3","cd4","part1","part2","part3", "pt1", "pt2", "pt3"], }, "blacklisted": { "screener": 1, "cam": 1, "telesync": 1, "workprint": 1, "r5": 1, "splitted": 1, "badripper": 1, "nonenglish": 1 } };