|
游客,本帖隐藏的内容需要积分高于 1 才可浏览,您当前积分为 0
资源信息:
◆片 名:Nothing
◆暂 译:没什么
◆类 型:喜剧/奇幻/神秘/黑色
◆导 演:Vincenzo Natali
◆剧 本:Vincenzo Natali,Andrew Miller
◆上 映:2003年9月9日
◆公 司:Alliance Atlantis Motion Picture Distribution Inc.
◆地 区:加拿大
◆语 言:英语
◆字 幕:暂无
◆色 彩:彩色
◆声 音:Dolby Digital
◆片 长:86min
◆分 级:美国:R / 加拿大:14A / 德国:12
◆IMDB评分:
6.7/10 (551 votes)
◆IMDB链接:http://www.imdb.com/title/tt0298482/
◆剧情介绍:
摄影师Evan Aaronson原本为婚礼作摄影师,当他被解雇之后,他决定记载自己的生活,目的是为了解决当下社会中他所面对的不确定性。
◆演员列表:
David Hewlett .... Dave
Andrew Miller .... Andrew
Gordon Pinsent .... Man In Suit
Marie-Josée Croze .... Sara
Andrew Lowery .... Crawford
Elana Shilling .... Little Girl
Soo Garay .... Little Girl's Mother
Martin Roach .... Co-worker
Angelo Tsarouchas .... Foreman
Rick Parker .... Mounted Police Officer
Maurice Dean Wint .... Narrator
MPAA: Rated R for language.
◆NFO:
CODE
???? ? Nothing (2003)
üüüü??
? üüü
? ? ? Release date...: 2004/10/22
? 2 ? Theatre date...: 2004/07/29 (HU)
? 2 ? DVD date.......: 2004/10/11 (PL)
? 2 ? Genre..........: Comedy / Fantasy / Horror
? 2 ? Audio language.: English
? 2 ? Subtitles......: PL
? 2 ? Runtime........: 1h 25m 48s
? 2 ? iMDB link......: http://uk.imdb.com/title/tt0298482/
? 2 ? iMDB votes.....: 6.1/10 (121 votes)
? + ?
? + ? Source.........: PAL DVD (R2)
? + ? Video codec....: XviD
? + ? Video bitrate..: 991 kbit/s
? + ? Audio codec....: MP3 (VBR)
? + ? Audio bitrate..: 140 kbit/s (stereo)
? + ? Resolution.....: 640 x 272 (2.35:1)
? + ? Framerate......: 25.000 fps
? + ? Size...........: 1CD (49 x 15MB)
// 全局复制函数(抽离出来,避免重复定义)
function copyEd2kFullLink(btn) {
// 从按钮的data属性读取链接(兼容所有特殊字符)
var link = btn.dataset.ed2kLink || btn.getAttribute("data-ed2k-link");
if(!link) {
alert("链接读取失败,请手动复制!");
return;
}
// 清理可能的转义字符,还原原始链接
link = link.replace(/&/g, "&").replace(/"/g, "\"").replace(/'/g, "'");
var t = document.createElement("textarea");
t.style.position = "fixed";
t.style.top = "-9999px";
t.style.left = "-9999px";
t.value = link.trim();
document.body.appendChild(t);
// 强制选中所有内容(兼容超长/特殊字符链接)
t.focus();
try {
t.setSelectionRange(0, link.length);
} catch (e) {
t.select(); // 兼容低版本浏览器
}
try {
var success = document.execCommand("copy");
alert(success ? "ED2K链接已复制!" : "复制失败,请手动复制:\n" + link);
} catch (e) {
alert("复制失败,请手动复制:\n" + link);
}
document.body.removeChild(t);
}
|