mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 22:31:09 +00:00
parent
b0132da030
commit
8a48874b42
2 changed files with 76 additions and 0 deletions
|
@ -30,6 +30,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
||||||
* BTDB
|
* BTDB
|
||||||
* cpasbien
|
* cpasbien
|
||||||
* ETTV
|
* ETTV
|
||||||
|
* EliteTorrent.biz
|
||||||
* ExtraTorrent.ag
|
* ExtraTorrent.ag
|
||||||
* ExtraTorrentClone
|
* ExtraTorrentClone
|
||||||
* EZTV
|
* EZTV
|
||||||
|
|
75
src/Jackett.Common/Definitions/elitetorrent-biz.yml
Normal file
75
src/Jackett.Common/Definitions/elitetorrent-biz.yml
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
---
|
||||||
|
site: elitetorrent-biz
|
||||||
|
name: EliteTorrent.biz
|
||||||
|
description: "EliteTorrent.biz is a Public torrent site for TV, movies and documentaries"
|
||||||
|
language: es-es
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://www.elitetorrent.biz/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categories:
|
||||||
|
"series": TV
|
||||||
|
"peliculas": Movies
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
|
||||||
|
settings: []
|
||||||
|
|
||||||
|
download:
|
||||||
|
selector: a[href^="magnet:?"]
|
||||||
|
attribute: href
|
||||||
|
|
||||||
|
search:
|
||||||
|
path: index.php
|
||||||
|
keywordsfilters:
|
||||||
|
# most ES/ITA TV torrents are in XXxYY format, so we search without S/E prefixes and filter later
|
||||||
|
- name: re_replace
|
||||||
|
args: ["S0?(\\d{1,2})", " $1 "]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["E(\\d{2,3})", " $1 "]
|
||||||
|
inputs:
|
||||||
|
s: "{{ .Keywords }}"
|
||||||
|
$raw: "&x=0&y=0"
|
||||||
|
rows:
|
||||||
|
selector: "#principal .miniboxs-ficha li"
|
||||||
|
fields:
|
||||||
|
title:
|
||||||
|
selector: .meta a
|
||||||
|
# normalize to SXXEYY format
|
||||||
|
filters:
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(\\d{2})×(\\d{2})", "S$1E$2"]
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(\\d{1})×(\\d{2})", "S0$1E$2"]
|
||||||
|
details:
|
||||||
|
selector: .meta a
|
||||||
|
attribute: href
|
||||||
|
download:
|
||||||
|
selector: .meta a
|
||||||
|
attribute: href
|
||||||
|
category:
|
||||||
|
selector: .meta a
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: split
|
||||||
|
args: ["/", 3]
|
||||||
|
size:
|
||||||
|
selector: .voto1
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["s", ""]
|
||||||
|
date:
|
||||||
|
text: now
|
||||||
|
seeders:
|
||||||
|
text: "1"
|
||||||
|
leechers:
|
||||||
|
text: "1"
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: "0"
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: "1"
|
Loading…
Reference in a new issue