torrents 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +5 -0
- data/.rspec +5 -0
- data/Gemfile +4 -0
- data/README.md +188 -0
- data/Rakefile +2 -0
- data/lib/torrents.rb +140 -0
- data/lib/torrents/container.rb +246 -0
- data/lib/torrents/trackers/the_pirate_bay.rb +51 -0
- data/lib/torrents/trackers/torrentleech.rb +51 -0
- data/lib/torrents/trackers/tti.rb +51 -0
- data/spec/data/the_pirate_bay/details.html +553 -0
- data/spec/data/the_pirate_bay/movies.html +649 -0
- data/spec/data/the_pirate_bay/recent.html +649 -0
- data/spec/data/the_pirate_bay/search.html +650 -0
- data/spec/data/torrentleech/details.html +218 -0
- data/spec/data/torrentleech/movies.html +2104 -0
- data/spec/data/torrentleech/recent.html +2128 -0
- data/spec/data/torrentleech/search.html +2054 -0
- data/spec/data/tti/details.html +335 -0
- data/spec/data/tti/movies.html +450 -0
- data/spec/data/tti/recent.html +450 -0
- data/spec/data/tti/search.html +451 -0
- data/spec/shared_spec.rb +111 -0
- data/spec/spec_helper.rb +9 -0
- data/spec/torrent_spec.rb +186 -0
- data/spec/torrents_spec.rb +231 -0
- data/spec/trackers/the_pirate_bay_spec.rb +58 -0
- data/spec/trackers/torrentleech_spec.rb +67 -0
- data/spec/trackers/tti_spec.rb +68 -0
- data/torrents.gemspec +31 -0
- metadata +180 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
module Trackers
|
2
|
+
class ThePirateBay
|
3
|
+
def details(tr)
|
4
|
+
"http://thepiratebay.org" + tr.at_css('.detLink').attr('href')
|
5
|
+
end
|
6
|
+
|
7
|
+
def torrent(tr)
|
8
|
+
tr.to_s.match(/(http:\/\/.+\.torrent)/).to_a[1]
|
9
|
+
end
|
10
|
+
|
11
|
+
def title(tr)
|
12
|
+
tr.at_css('.detLink').content
|
13
|
+
end
|
14
|
+
|
15
|
+
def seeders(details)
|
16
|
+
details.to_s.match(/.+<dd>(\d+)<\/dd>/).to_a[1]
|
17
|
+
end
|
18
|
+
|
19
|
+
def torrents(site)
|
20
|
+
site.css('#searchResult tr')
|
21
|
+
end
|
22
|
+
|
23
|
+
def search_url
|
24
|
+
"http://thepiratebay.org/search/<SEARCH>/<PAGE>/99/0"
|
25
|
+
end
|
26
|
+
|
27
|
+
def recent_url
|
28
|
+
"http://thepiratebay.org/recent/<PAGE>"
|
29
|
+
end
|
30
|
+
|
31
|
+
def start_page_index
|
32
|
+
0
|
33
|
+
end
|
34
|
+
|
35
|
+
def category_url(type)
|
36
|
+
{:movies => "http://thepiratebay.org/browse/201/<PAGE>/3"}[type]
|
37
|
+
end
|
38
|
+
|
39
|
+
def id(details)
|
40
|
+
details.to_s.match(/\/(\d+)\//).to_a[1]
|
41
|
+
end
|
42
|
+
|
43
|
+
def details_title(details)
|
44
|
+
details.at_css('#title').content
|
45
|
+
end
|
46
|
+
|
47
|
+
def details_torrent(details)
|
48
|
+
self.torrent(details) # The same parsing algorithm as the torrent method
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module Trackers
|
2
|
+
class Torrentleech
|
3
|
+
def details(tr)
|
4
|
+
"http://torrentleech.org" + tr.at_css(".title a").attr("href")
|
5
|
+
end
|
6
|
+
|
7
|
+
def torrent(tr)
|
8
|
+
"http://torrentleech.org" + tr.at_css("td.quickdownload a").attr("href")
|
9
|
+
end
|
10
|
+
|
11
|
+
def title(tr)
|
12
|
+
tr.at_css(".title a").content
|
13
|
+
end
|
14
|
+
|
15
|
+
def seeders(details)
|
16
|
+
details.to_s.match(/\((\d+) Seeders and \d+ leechers\)/).to_a[1]
|
17
|
+
end
|
18
|
+
|
19
|
+
def torrents(site)
|
20
|
+
site.css("#torrenttable tr")
|
21
|
+
end
|
22
|
+
|
23
|
+
def search_url
|
24
|
+
"http://www.torrentleech.org/torrents/browse/index/query/<SEARCH>/page/<PAGE>"
|
25
|
+
end
|
26
|
+
|
27
|
+
def recent_url
|
28
|
+
"http://www.torrentleech.org/torrents/browse/index/page/<PAGE>"
|
29
|
+
end
|
30
|
+
|
31
|
+
def start_page_index
|
32
|
+
1
|
33
|
+
end
|
34
|
+
|
35
|
+
def category_url(type)
|
36
|
+
{:movies => "http://www.torrentleech.org/torrents/browse/index/categories/1,8,9,10,11,12,13,14,15,29/page/<PAGE>"}[type]
|
37
|
+
end
|
38
|
+
|
39
|
+
def id(details)
|
40
|
+
details.match(/\/(\d+)$/).to_a[1]
|
41
|
+
end
|
42
|
+
|
43
|
+
def details_title(details)
|
44
|
+
details.at_css("#torrentTable:nth-child(2) .odd:nth-child(1) td:nth-child(2)").content
|
45
|
+
end
|
46
|
+
|
47
|
+
def details_torrent(details)
|
48
|
+
"http://torrentleech.org" + details.css("form[method='get']").last.attr("action")
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module Trackers
|
2
|
+
class Tti
|
3
|
+
def details(tr)
|
4
|
+
"http://tti.nu" + tr.to_s.match(/(details\.php\?id=\d+)/i).to_a[1]
|
5
|
+
end
|
6
|
+
|
7
|
+
def torrent(tr)
|
8
|
+
"http://tti.nu" + tr.at_css('.direct_download a').attr('href')
|
9
|
+
end
|
10
|
+
|
11
|
+
def title(tr)
|
12
|
+
tr.at_css('td:nth-child(2) b').content.gsub(/\.\.\.$/, "")
|
13
|
+
end
|
14
|
+
|
15
|
+
def seeders(details)
|
16
|
+
details.to_s.match(/(\d+) seeder\(s\)\,/).to_a[1]
|
17
|
+
end
|
18
|
+
|
19
|
+
def torrents(site)
|
20
|
+
site.css('table[border="0"] tr')
|
21
|
+
end
|
22
|
+
|
23
|
+
def search_url
|
24
|
+
"http://tti.nu/browse.php?search=<SEARCH>&page=<PAGE>&incldead=0"
|
25
|
+
end
|
26
|
+
|
27
|
+
def recent_url
|
28
|
+
"http://tti.nu/browse.php?page=<PAGE>&incldead=0"
|
29
|
+
end
|
30
|
+
|
31
|
+
def start_page_index
|
32
|
+
0
|
33
|
+
end
|
34
|
+
|
35
|
+
def category_url(type)
|
36
|
+
{:movies => "http://tti.nu/browse.php?c47=1&c65=1&c59=1&c48=1&page=<PAGE>&incldead=0"}[type]
|
37
|
+
end
|
38
|
+
|
39
|
+
def id(details)
|
40
|
+
details.match(/id=(\d+)/).to_a[1]
|
41
|
+
end
|
42
|
+
|
43
|
+
def details_title(details)
|
44
|
+
details.at_css("h1").content
|
45
|
+
end
|
46
|
+
|
47
|
+
def details_torrent(details)
|
48
|
+
"http://tti.nu/" + details.css("tr a").reject { |link| ! link.attr("href").to_s.match(/\.torrent/) }.first.attr("href")
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,553 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" >
|
4
|
+
<head>
|
5
|
+
<title>The.Green.Hornet.2010.TS.XViD-T0XiC-iNK (download torrent) - TPB</title>
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
7
|
+
<link rel="search" type="application/opensearchdescription+xml" href="http://static.thepiratebay.org/opensearch.xml" title="Search The Pirate Bay" />
|
8
|
+
<link rel="stylesheet" type="text/css" href="http://static.thepiratebay.org/css/pirate6.css"/>
|
9
|
+
<style type="text/css">
|
10
|
+
.searchBox{
|
11
|
+
margin: 6px;
|
12
|
+
width: 300px;
|
13
|
+
vertical-align: middle;
|
14
|
+
padding: 2px;
|
15
|
+
background-image:url('http://static.thepiratebay.org/img/icon-https.gif');
|
16
|
+
background-repeat:no-repeat;
|
17
|
+
background-position: right;
|
18
|
+
}
|
19
|
+
|
20
|
+
.detLink {
|
21
|
+
font-size: 1.2em;
|
22
|
+
font-weight: 400;
|
23
|
+
}
|
24
|
+
.detDesc {
|
25
|
+
color: #4e5456;
|
26
|
+
}
|
27
|
+
.detDesc a:hover {
|
28
|
+
color: #000099;
|
29
|
+
text-decoration: underline;
|
30
|
+
}
|
31
|
+
.sortby {
|
32
|
+
text-align: left;
|
33
|
+
float: left;
|
34
|
+
}
|
35
|
+
.detName {
|
36
|
+
padding-top: 3px;
|
37
|
+
padding-bottom: 2px;
|
38
|
+
}
|
39
|
+
.viewswitch {
|
40
|
+
font-style: normal;
|
41
|
+
float: right;
|
42
|
+
text-align: right;
|
43
|
+
font-weight: normal;
|
44
|
+
}
|
45
|
+
</style>
|
46
|
+
<script src="http://static.thepiratebay.org/js/tpb.js" type="text/javascript"></script>
|
47
|
+
<script src="http://static.thepiratebay.org/js/prototype.js" type="text/javascript"></script>
|
48
|
+
<script src="http://static.thepiratebay.org/js/scriptaculous.js" type="text/javascript"></script>
|
49
|
+
<script src="http://static.thepiratebay.org/js/details.js" type="text/javascript"></script>
|
50
|
+
<link rel="stylesheet" type="text/css" href="http://static.thepiratebay.org/css/details.css"/>
|
51
|
+
|
52
|
+
<!-- popunder -->
|
53
|
+
<script language="javascript" type="text/javascript">if (top.location != self.location) {top.location.replace(self.location);}</script>
|
54
|
+
</head>
|
55
|
+
|
56
|
+
<body>
|
57
|
+
<div id="header">
|
58
|
+
|
59
|
+
<div class="ad">
|
60
|
+
<!-- ad top468 -->
|
61
|
+
<iframe src="http://letsdoit.themusicbay.net/top468.html" height="60" width="468" scrolling="no" frameborder="0" marginheight="0" marginwidth="0"></iframe>
|
62
|
+
</div>
|
63
|
+
<form method="get" id="q" action="/s/">
|
64
|
+
<a href="/" class="img"><img src="http://static.thepiratebay.org/img/tpblogo_sm_ny.gif" id="TPBlogo" alt="The Pirate Bay" /></a>
|
65
|
+
<b><a href="/" title="Sök torrenter">Sök torrenter</a></b> |
|
66
|
+
<a href="/browse" title="Bläddra bland torrenter">Bläddra bland torrenter</a> |
|
67
|
+
<a href="/recent" title="Senaste torrent">Nya torrenter</a> |
|
68
|
+
<a href="/tv" title="TV">TV</a> |
|
69
|
+
<a href="/music" title="Musik">Musik</a> |
|
70
|
+
<a href="/top" title="Topp 100">Topp 100</a>
|
71
|
+
<br /><input type="search" class="inputbox" title="Piratsök" name="q" placeholder="Search here..." value="" /><input value="Piratsök" type="submit" class="submitbutton" /><br /> <label for="audio" title="Ljud"><input id="audio" name="audio" onclick="javascript:rmAll();" type="checkbox"/>Ljud</label>
|
72
|
+
<label for="video" title="Video"><input id="video" name="video" onclick="javascript:rmAll();" type="checkbox"/>Video</label>
|
73
|
+
<label for="apps" title="Program"><input id="apps" name="apps" onclick="javascript:rmAll();" type="checkbox"/>Program</label>
|
74
|
+
<label for="games" title="Spel"><input id="games" name="games" onclick="javascript:rmAll();" type="checkbox"/>Spel</label>
|
75
|
+
<label for="other" title="Annat"><input id="other" name="other" onclick="javascript:rmAll();" type="checkbox"/>Annat</label>
|
76
|
+
|
77
|
+
<select id="category" name="category" onchange="javascript:setAll();">
|
78
|
+
<option value="0">All</option>
|
79
|
+
<optgroup label="Ljud">
|
80
|
+
<option value="101">Musik</option>
|
81
|
+
<option value="102">Ljudböcker</option>
|
82
|
+
<option value="103">Ljudklipp</option>
|
83
|
+
<option value="104">FLAC</option>
|
84
|
+
<option value="199">Annat</option>
|
85
|
+
</optgroup>
|
86
|
+
<optgroup label="Video">
|
87
|
+
<option value="201">Filmer</option>
|
88
|
+
<option value="202">Filmer DVDR</option>
|
89
|
+
<option value="203">Musikvideor</option>
|
90
|
+
<option value="204">Filmklipp</option>
|
91
|
+
<option value="205">TV</option>
|
92
|
+
<option value="206">Handhållen</option>
|
93
|
+
<option value="207">Högupplöst - Film</option>
|
94
|
+
<option value="208">Högupplöst - TV</option>
|
95
|
+
<option value="299">Annat</option>
|
96
|
+
</optgroup>
|
97
|
+
<optgroup label="Program">
|
98
|
+
<option value="301">Windows</option>
|
99
|
+
<option value="302">Mac</option>
|
100
|
+
<option value="303">UNIX</option>
|
101
|
+
<option value="304">Handhållen</option>
|
102
|
+
<option value="399">Andra OS</option>
|
103
|
+
</optgroup>
|
104
|
+
<optgroup label="Spel">
|
105
|
+
<option value="401">PC</option>
|
106
|
+
<option value="402">Mac</option>
|
107
|
+
<option value="403">PS2</option>
|
108
|
+
<option value="404">XBOX360</option>
|
109
|
+
<option value="405">Wii</option>
|
110
|
+
<option value="406">Handhållen</option>
|
111
|
+
<option value="499">Annat</option>
|
112
|
+
</optgroup>
|
113
|
+
<optgroup label="Porr">
|
114
|
+
<option value="501">Filmer</option>
|
115
|
+
<option value="502">Filmer DVDR</option>
|
116
|
+
<option value="503">Bilder</option>
|
117
|
+
<option value="504">Spel</option>
|
118
|
+
<option value="505">Högupplöst - Film</option>
|
119
|
+
<option value="506">Filmklipp</option>
|
120
|
+
<option value="599">Annat</option>
|
121
|
+
</optgroup>
|
122
|
+
<optgroup label="Annat">
|
123
|
+
<option value="601">E-böcker</option>
|
124
|
+
<option value="602">Serier</option>
|
125
|
+
<option value="603">Bilder</option>
|
126
|
+
<option value="604">Omslag</option>
|
127
|
+
<option value="699">Annat</option>
|
128
|
+
</optgroup>
|
129
|
+
</select>
|
130
|
+
|
131
|
+
<input type="hidden" name="page" value="0" />
|
132
|
+
<input type="hidden" name="orderby" value="99" />
|
133
|
+
</form>
|
134
|
+
</div><!-- // div:header -->
|
135
|
+
|
136
|
+
<h2><span>Detaljer för denna torrent</span> </h2>
|
137
|
+
<div id="content">
|
138
|
+
<!-- right sky banner -->
|
139
|
+
<div id="sky-right">
|
140
|
+
<iframe src="http://letsdoit.themusicbay.net/right.html" height=600 width=160 scrolling="no" frameborder=0 marginheight=0 marginwidth=0></iframe>
|
141
|
+
</div>
|
142
|
+
<div id="main-content">
|
143
|
+
<div>
|
144
|
+
<div id="detailsouterframe">
|
145
|
+
|
146
|
+
<div id="detailsframe">
|
147
|
+
<div id="title">
|
148
|
+
The.Green.Hornet.2010.TS.XViD-T0XiC-iNK </div>
|
149
|
+
|
150
|
+
<div id="details">
|
151
|
+
<dl class="col1">
|
152
|
+
<dt>Typ:</dt>
|
153
|
+
<dd><a href="/browse/201" title="Mer från denna kategori">Video > Filmer</a></dd>
|
154
|
+
|
155
|
+
<dt>Filer:</dt>
|
156
|
+
<dd><a href="/torrent/6108060/" title="Filer" onclick="
|
157
|
+
if (filelist < 1) {
|
158
|
+
new Ajax.Updater('filelistContainer', '/ajax_details_filelist.php', {method: 'get', parameters: 'id=6108060'});
|
159
|
+
filelist=1;
|
160
|
+
}; toggleFilelist(); return false;">4</a></dd>
|
161
|
+
|
162
|
+
<dt>Storlek:</dt>
|
163
|
+
<dd>1.38 GiB (1479901024 Bytes)</dd>
|
164
|
+
|
165
|
+
<dt>Info:</dt>
|
166
|
+
<dd><a href="http://www.imdb.com/title/tt0990407/" target="_blank" title="IMDB" rel="nofollow">IMDB</a></dd>
|
167
|
+
|
168
|
+
|
169
|
+
</dl>
|
170
|
+
<dl class="col2">
|
171
|
+
<dt>Kvalitet:</dt>
|
172
|
+
<dd id="rating" class="">
|
173
|
+
+34 / -9 (+25) </dd>
|
174
|
+
|
175
|
+
<dt>Uppladdad:</dt>
|
176
|
+
<dd>2011-01-17 04:51:47 GMT</dd>
|
177
|
+
|
178
|
+
<dt>Av:</dt>
|
179
|
+
<dd>
|
180
|
+
<a href="/user/.BONE./" title="Bläddra .BONE.">.BONE.</a> <img src="http://static.thepiratebay.org/img/vip.gif" alt="VIP" title="VIP" style="width:11px;" border=0 /></dd>
|
181
|
+
<dt>Distributörer:</dt>
|
182
|
+
<dd>9383</dd>
|
183
|
+
|
184
|
+
<dt>Reciprokörer:</dt>
|
185
|
+
<dd>4208</dd>
|
186
|
+
|
187
|
+
<dt>Kommentarer</dt>
|
188
|
+
<dd><span id="NumComments">214</span>
|
189
|
+
|
190
|
+
</dd>
|
191
|
+
</dl>
|
192
|
+
|
193
|
+
<div id="CommentDiv" style="display:none;">
|
194
|
+
<form method="post" id="commentsform" name="commentsform" onsubmit="new Ajax.Updater('NumComments', '/ajax_post_comment.php', {evalScripts:true, asynchronous:true, parameters:Form.serialize(this)}); return false;" action="/ajax_post_comment.php">
|
195
|
+
<p class="info">
|
196
|
+
<textarea name="add_comment" id="add_comment" rows="8" cols="50"></textarea><br/>
|
197
|
+
<input type="hidden" name="id" value="6108060"/>
|
198
|
+
<input type="submit" value="Skicka" /><input type="button" value="Göm" onclick="document.getElementById('CommentDiv').style.display = 'none'" />
|
199
|
+
</p>
|
200
|
+
</form>
|
201
|
+
</div>
|
202
|
+
<br/>
|
203
|
+
<br/>
|
204
|
+
|
205
|
+
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="tpbdotorg">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
|
206
|
+
|
207
|
+
<a href="http://download.premium.netdna-cdn.com/cdnsmartdownload.html" target="_new" rel="nofollow" style="border-bottom: none;"><img border="0" src="http://static.thepiratebay.org/img/bar.gif" alt="Toolbar" /></a>
|
208
|
+
<br /><br /> <div class="download">
|
209
|
+
<a href="http://torrents.thepiratebay.org/6108060/The.Green.Hornet.2010.TS.XViD-T0XiC-iNK.6108060.TPB.torrent" title="Ladda ner denna torrent">Ladda ner denna torrent</a> (<a style='background-image: url("http://static.thepiratebay.org/img/icons/icon-magnet.gif");' href="magnet:?xt=urn:btih:e5c93f23d386fe006b207ef6602acb129c65f53d&dn=The.Green.Hornet.2010.TS.XViD-T0XiC-iNK&tr=http%3A%2F%2Ftracker.publicbt.com%2Fannounce">magnet link</a>) </div>
|
210
|
+
<div class="nfo">
|
211
|
+
<pre>::::::::::::::Enjoy:Another:Release:From:T0XiC::::::::::::::
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
File:: The.Green.Hornet.2010.TS.XViD-T0XiC-iNK
|
216
|
+
|
217
|
+
Video Source:: ....Team Serenity. Killin it, thx
|
218
|
+
|
219
|
+
Audio Source:: ....own, thx matey
|
220
|
+
|
221
|
+
Language::English
|
222
|
+
|
223
|
+
IMDB::http://www.imdb.com/title/tt0990407/
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
Following the death of his father, Britt Reid, heir to his father's large company,
|
228
|
+
|
229
|
+
teams up with his late dad's assistant Kato to become a masked crime fighting team.
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
Specs::
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
General
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
Format : AVI
|
242
|
+
|
243
|
+
Format/Info : Audio Video Interleave
|
244
|
+
|
245
|
+
File size : 1.37 GiB
|
246
|
+
|
247
|
+
Duration : 1h 51mn
|
248
|
+
|
249
|
+
Overall bit rate : 1 761 Kbps
|
250
|
+
|
251
|
+
Writing application : VirtualDubMod 1.5.10.2 (build 2540/release)
|
252
|
+
|
253
|
+
Writing library : VirtualDubMod build 2540/release
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
Video
|
258
|
+
|
259
|
+
ID : 0
|
260
|
+
|
261
|
+
Format : MPEG-4 Visual
|
262
|
+
|
263
|
+
Format profile : Advanced Simple@L5
|
264
|
+
|
265
|
+
Format settings, BVOP : Yes
|
266
|
+
|
267
|
+
Format settings, QPel : No
|
268
|
+
|
269
|
+
Format settings, GMC : No warppoints
|
270
|
+
|
271
|
+
Format settings, Matrix : Default (H.263)
|
272
|
+
|
273
|
+
Muxing mode : Packed bitstream
|
274
|
+
|
275
|
+
Codec ID : XVID
|
276
|
+
|
277
|
+
Codec ID/Hint : XviD
|
278
|
+
|
279
|
+
Duration : 1h 51mn
|
280
|
+
|
281
|
+
Bit rate : 1 495 Kbps
|
282
|
+
|
283
|
+
Width : 720 pixels
|
284
|
+
|
285
|
+
Height : 306 pixels
|
286
|
+
|
287
|
+
Display aspect ratio : 2.35:1
|
288
|
+
|
289
|
+
Frame rate : 25.000 fps
|
290
|
+
|
291
|
+
Color space : YUV
|
292
|
+
|
293
|
+
Chroma subsampling : 4:2:0
|
294
|
+
|
295
|
+
Bit depth : 8 bits
|
296
|
+
|
297
|
+
Scan type : Progressive
|
298
|
+
|
299
|
+
Bits/(Pixel*Frame) : 0.271
|
300
|
+
|
301
|
+
Stream size : 1.16 GiB (85%)
|
302
|
+
|
303
|
+
Writing library : XviD 1.2.1 (UTC 2008-12-04)
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
Audio
|
308
|
+
|
309
|
+
ID : 1
|
310
|
+
|
311
|
+
Format : MPEG Audio
|
312
|
+
|
313
|
+
Format version : Version 1
|
314
|
+
|
315
|
+
Format profile : Layer 3
|
316
|
+
|
317
|
+
Codec ID : 55
|
318
|
+
|
319
|
+
Codec ID/Hint : MP3
|
320
|
+
|
321
|
+
Duration : 1h 51mn
|
322
|
+
|
323
|
+
Bit rate mode : Constant
|
324
|
+
|
325
|
+
Bit rate : 256 Kbps
|
326
|
+
|
327
|
+
Channel(s) : 2 channels
|
328
|
+
|
329
|
+
Sampling rate : 44.1 KHz
|
330
|
+
|
331
|
+
Stream size : 204 MiB (15%)
|
332
|
+
|
333
|
+
Alignment : Split accross interleaves
|
334
|
+
|
335
|
+
Interleave, duration : 40 ms (1.00 video frame)
|
336
|
+
|
337
|
+
Interleave, preload duration : 500 ms
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
NOTES:: T0XiC-iNK brings you the first TS of Green Hornet. As always, Enjoy
|
346
|
+
|
347
|
+
|
348
|
+
|
349
|
+
|
350
|
+
|
351
|
+
::Why Complain? Whats Free Is Free::
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
::iNK is currently a free agent looking for work, if you would like iNK's touch, give me a email at: ...digital.ink@live.com or MSN add me.
|
356
|
+
|
357
|
+
|
358
|
+
|
359
|
+
::We are always looking for friends with unreleased DVD's, Screeners, R5's, Audio, Cams, Silvers,
|
360
|
+
|
361
|
+
...and any other good sources you may have to offer - contact us: t0xicreleases@hushmail.com
|
362
|
+
|
363
|
+
|
364
|
+
|
365
|
+
:::::::::::::::::::::::::::::::::::: Respect To :::::::::::::::::::::::::::::::::::::
|
366
|
+
|
367
|
+
::IMAGiNE,FLAWL3SS,Hive-CM8,DiGiTALiNK,Tranz,Vik,OneTwo,Joey,bob,& our friends on utn and PA::
|
368
|
+
|
369
|
+
"and to all of you who support us, Thank-You"
|
370
|
+
<a href="
|
371
|
+
http://www.leetleech.org/images/11170434250914396118.png" rel="nofollow">
|
372
|
+
http://www.leetleech.org/images/11170434250914396118.png</a>
|
373
|
+
<a href="
|
374
|
+
http://www.leetleech.org/images/44487124570969309356.png" rel="nofollow">
|
375
|
+
http://www.leetleech.org/images/44487124570969309356.png</a>
|
376
|
+
<a href="
|
377
|
+
http://www.leetleech.org/images/99354420697494456576.png" rel="nofollow">
|
378
|
+
http://www.leetleech.org/images/99354420697494456576.png</a>
|
379
|
+
<a href="
|
380
|
+
http://www.leetleech.org/images/99382491262570104768.png" rel="nofollow">
|
381
|
+
http://www.leetleech.org/images/99382491262570104768.png</a>
|
382
|
+
<a href="
|
383
|
+
http://www.leetleech.org/images/91852884005219798430.png" rel="nofollow">
|
384
|
+
http://www.leetleech.org/images/91852884005219798430.png</a> </pre>
|
385
|
+
</div>
|
386
|
+
<div id="artistDetails" style="display:none;">
|
387
|
+
</div>
|
388
|
+
<script type="text/javascript"></script> <br/>
|
389
|
+
<div class="download">
|
390
|
+
<a href="http://torrents.thepiratebay.org/6108060/The.Green.Hornet.2010.TS.XViD-T0XiC-iNK.6108060.TPB.torrent" title="Ladda ner denna torrent">Ladda ner denna torrent</a> (<a style='background-image: url("http://static.thepiratebay.org/img/icons/icon-magnet.gif");' href="magnet:?xt=urn:btih:e5c93f23d386fe006b207ef6602acb129c65f53d&dn=The.Green.Hornet.2010.TS.XViD-T0XiC-iNK&tr=http%3A%2F%2Ftracker.publicbt.com%2Fannounce">magnet link</a>) </div>
|
391
|
+
<div class="spons-link"><!-- text ad -->
|
392
|
+
</div> <div id="filelistContainer" style="display:none;">
|
393
|
+
<a name="show"></a>
|
394
|
+
</div>
|
395
|
+
<div id="commentsheader" class="comments">
|
396
|
+
<h4>Kommentarer</h4>
|
397
|
+
</div>
|
398
|
+
<div id="comments">
|
399
|
+
<div id="comment-1"><p class="byline">
|
400
|
+
<a href="/user/kKotton/" title="Bläddra kKotton">kKotton</a> - 2011-02-02 04:04 CET:
|
401
|
+
</p><div class="comment">
|
402
|
+
Props to you man, almost like a DVD rip
|
403
|
+
</div>
|
404
|
+
</div><div id="comment-2"><p class="byline">
|
405
|
+
<a href="/user/bran456/" title="Bläddra bran456">bran456</a> - 2011-02-03 08:07 CET:
|
406
|
+
</p><div class="comment">
|
407
|
+
A: 7<br />
|
408
|
+
V: 6<br />
|
409
|
+
M: 6<br />
|
410
|
+
<br />
|
411
|
+
Ok for a TS but don't bother downloading. Movie was disappointing.
|
412
|
+
</div>
|
413
|
+
</div><div id="comment-3"><p class="byline">
|
414
|
+
<a href="/user/fafnir18/" title="Bläddra fafnir18">fafnir18</a> - 2011-02-07 14:37 CET:
|
415
|
+
</p><div class="comment">
|
416
|
+
the movie was good, but its not what i was expecting, considering i used to watch the GrnHrnt tv shows back when bruce lee was kato,
|
417
|
+
</div>
|
418
|
+
</div><div id="comment-4"><p class="byline">
|
419
|
+
<a href="/user/1heC00lGuy/" title="Bläddra 1heC00lGuy">1heC00lGuy</a> - 2011-02-09 10:29 CET:
|
420
|
+
</p><div class="comment">
|
421
|
+
Seth rogan looking stupid as ever
|
422
|
+
</div>
|
423
|
+
</div><div id="comment-5"><p class="byline">
|
424
|
+
<a href="/user/nondaras/" title="Bläddra nondaras">nondaras</a> - 2011-02-11 11:19 CET:
|
425
|
+
</p><div class="comment">
|
426
|
+
thanks
|
427
|
+
</div>
|
428
|
+
</div><div id="comment-6"><p class="byline">
|
429
|
+
<a href="/user/DaFantom/" title="Bläddra DaFantom">DaFantom</a> - 2011-02-11 21:35 CET:
|
430
|
+
</p><div class="comment">
|
431
|
+
Holy MOTHERTRUCKER!<br />
|
432
|
+
I was at 5.4 MB/s<br />
|
433
|
+
ALL THE MOTHERTRUCKING TIME!<br />
|
434
|
+
Thanks for GREAT seeding and torrent!
|
435
|
+
</div>
|
436
|
+
</div><div id="comment-7"><p class="byline">
|
437
|
+
<a href="/user/ust2/" title="Bläddra ust2">ust2</a> - 2011-02-12 01:39 CET:
|
438
|
+
</p><div class="comment">
|
439
|
+
V:7<br />
|
440
|
+
A:7<br />
|
441
|
+
<br />
|
442
|
+
It is what it's supposed to be, nothing more or less, and the quality doesn't really even detract anything from the movie itself.<br />
|
443
|
+
<br />
|
444
|
+
Great upload, thx.
|
445
|
+
</div>
|
446
|
+
</div><div id="comment-8"><p class="byline">
|
447
|
+
<a href="/user/cosmic68/" title="Bläddra cosmic68">cosmic68</a> - 2011-02-12 14:22 CET:
|
448
|
+
</p><div class="comment">
|
449
|
+
FYI for UK users, my ISP 'Entanet" blocked me today for downloading this. I had to call them and 'agree' to remove from my hard drive, before they would fire me up again. So not a disaster, but it's obviously being monitored for some poor saps like me.<br />
|
450
|
+
Regards.
|
451
|
+
</div>
|
452
|
+
</div><div id="comment-9"><p class="byline">
|
453
|
+
<a href="/user/hyperaktiv/" title="Bläddra hyperaktiv">hyperaktiv</a> - 2011-02-12 21:25 CET:
|
454
|
+
</p><div class="comment">
|
455
|
+
Anyone who got the english subtitles?<br />
|
456
|
+
I'm deaf, so... figure out. ;)<br />
|
457
|
+
I'd be very thankfull.<br />
|
458
|
+
<br />
|
459
|
+
Peace & love and thanx to .BONE. for the upload.
|
460
|
+
</div>
|
461
|
+
</div><div id="comment-10"><p class="byline">
|
462
|
+
<a href="/user/hyperaktiv/" title="Bläddra hyperaktiv">hyperaktiv</a> - 2011-02-12 21:27 CET:
|
463
|
+
</p><div class="comment">
|
464
|
+
Anyone who got the english subtitles?<br />
|
465
|
+
I'm deaf, so... figure out. ;)<br />
|
466
|
+
I'd be very thankfull.<br />
|
467
|
+
<br />
|
468
|
+
Peace & love and thanx to .BONE. for the upload.
|
469
|
+
</div>
|
470
|
+
</div><div id="comment-11"><p class="byline">
|
471
|
+
<a href="/user/Khavos/" title="Bläddra Khavos">Khavos</a> - 2011-02-13 14:53 CET:
|
472
|
+
</p><div class="comment">
|
473
|
+
Great movie! totally awesome, loved it!<br />
|
474
|
+
A:7<br />
|
475
|
+
V:7<br />
|
476
|
+
M:9<br />
|
477
|
+
Even though it's a TS, it definitely does not make it not worth seeing. DL it... NOW! :D
|
478
|
+
</div>
|
479
|
+
</div><div id="comment-12"><p class="byline">
|
480
|
+
<a href="/user/jtec94/" title="Bläddra jtec94">jtec94</a> - 2011-02-14 04:06 CET:
|
481
|
+
</p><div class="comment">
|
482
|
+
great download. thanks
|
483
|
+
</div>
|
484
|
+
</div><div id="comment-13"><p class="byline">
|
485
|
+
<a href="/user/Aramirloth/" title="Bläddra Aramirloth">Aramirloth</a> - 2011-02-15 01:07 CET:
|
486
|
+
</p><div class="comment">
|
487
|
+
A:7<br />
|
488
|
+
V:7<br />
|
489
|
+
M:3<br />
|
490
|
+
<br />
|
491
|
+
Lousy acting, lousy script. I didn't find this one worth the time it took to see it.<br />
|
492
|
+
Audio and video quality was ok.<br />
|
493
|
+
|
494
|
+
</div>
|
495
|
+
</div><div id="comment-14"><p class="byline">
|
496
|
+
<a href="/user/sirclife123/" title="Bläddra sirclife123">sirclife123</a> - 2011-02-15 02:30 CET:
|
497
|
+
</p><div class="comment">
|
498
|
+
you.tube.com/watch?v=WfSPFtq2Nd4<br />
|
499
|
+
check dis shit out<br />
|
500
|
+
make sure to take out the pierod in the middle of youtube
|
501
|
+
</div>
|
502
|
+
</div><div class="browse-coms noborder"><a href="#" onClick="comPage(8,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 8"><img src="http://static.thepiratebay.org/img/prev.gif" alt="Förra" /></a> <a href="#" onClick="comPage(1,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 1">1</a> <a href="#" onClick="comPage(2,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 2">2</a> <a href="#" onClick="comPage(3,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 3">3</a> <a href="#" onClick="comPage(4,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 4">4</a> <a href="#" onClick="comPage(5,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 5">5</a> <a href="#" onClick="comPage(6,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 6">6</a> <a href="#" onClick="comPage(7,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 7">7</a> <a href="#" onClick="comPage(8,9,'99c2ff7154d3ba64f2bdd62350aea529', '6108060'); return false;" title="Sida 8">8</a> <strong>9</strong></div></div></div></div>
|
503
|
+
</div>
|
504
|
+
</div>
|
505
|
+
</div>
|
506
|
+
<!-- left sky -->
|
507
|
+
<div class="ads" id="sky-banner">
|
508
|
+
<iframe src="http://letsdoit.themusicbay.net/left.html" height=600 width=120 scrolling="no" frameborder=0 marginheight=0 marginwidth=0></iframe>
|
509
|
+
</div>
|
510
|
+
</div>
|
511
|
+
|
512
|
+
<div id="foot" style="text-align:center;margin-top:1em;">
|
513
|
+
<!-- ad foot -->
|
514
|
+
<iframe src="http://letsdoit.themusicbay.net/bottom728.html" height="90" width="728" scrolling="no" frameborder="0" marginheight="0" marginwidth="0"></iframe>
|
515
|
+
<p>
|
516
|
+
<a href="/login" title="Logga in">Logga in</a> |
|
517
|
+
<a href="/register" title="Registrera">Registrera</a> |
|
518
|
+
<a href="/language" title="Välj språk">Language / Välj språk</a> |
|
519
|
+
<a href="/about" title="Om">Om</a> |
|
520
|
+
<a href="/legal" title="Juridisk korrespondens">Juridisk korrespondens</a> |
|
521
|
+
<a href="/blog" title="Blogg">Blogg</a>
|
522
|
+
<br />
|
523
|
+
<a href="/contact" title="Kontakta oss">Kontakta oss</a> |
|
524
|
+
<a href="/policy" title="Användandepolicy">Användandepolicy</a> |
|
525
|
+
<a href="/downloads" title="Downloads">Downloads</a> |
|
526
|
+
<a href="/doodles" title="Doodlar">Doodlar</a> |
|
527
|
+
<a href="/searchcloud" title="Sökmoln">Sökmoln</a> |
|
528
|
+
<a href="/tags" title="Tag Cloud">Tag Cloud</a> |
|
529
|
+
<a href="http://suprbay.org/" title="Forum" target="_blank">Forum</a> |
|
530
|
+
<b><a href="http://www.bytelove.com" title="TPB T-shirts" target="_blank">TPB T-shirts</a></b>
|
531
|
+
<br />
|
532
|
+
<a href="http://slopsbox.com" title="SlopsBox" target="_blank">SlopsBox</a> |
|
533
|
+
<a href="http://baywords.com" title="BayWords" target="_blank">BayWords</a> |
|
534
|
+
<a href="http://bayimg.com" title="BayImg" target="_blank">BayImg</a> |
|
535
|
+
<!-- <a href="http://pastebay.com" title="PasteBay" target="_blank">PasteBay</a> | -->
|
536
|
+
<!-- <a href="http://www.pirateshops.com" title="Pirate Shops" target="_blank">Pirate Shops</a> | -->
|
537
|
+
<b><a href="http://www.ipredator.se" title="IPREDator" target="_blank">IPREDator</a></b> |
|
538
|
+
<a href="http://twitter.com/tpbdotorg" title="Twitter" target="_blank">Follow TPB on Twitter</a>
|
539
|
+
<br />
|
540
|
+
</p>
|
541
|
+
|
542
|
+
<p id="footer" style="color:#666; font-size:0.9em; ">
|
543
|
+
4.912.933 registrerade användare. Senast uppdaterad 03:22:05.<br />
|
544
|
+
23.704.720 noder (15.493.935 distributörer + 8.210.785 reciprokörer) av 3.253.052 torrents.<br />
|
545
|
+
</p>
|
546
|
+
|
547
|
+
|
548
|
+
<div id="fbanners">
|
549
|
+
<a href="/rss" class="rss" title="RSS"><img src="http://static.thepiratebay.org/img/rss_small.gif" alt="RSS" /></a>
|
550
|
+
</div><!-- // div:fbanners -->
|
551
|
+
</div><!-- // div:foot -->
|
552
|
+
</body>
|
553
|
+
</html>
|