引用:mplayer 源码安装包。 (我下载的文件是:MPlayer-1.0pre7try2.tar.bz2)
mplayer 程序图形界面皮肤 (我下载的文件是:neutron-1.5.tar.bz2、Blue-1.4.tar.bz2)
mplayer 程序图形界面字体包 (我下载的文件是:font-arial-iso-8859-1.tar.bz2)
mplayer 解码器包 (我下载的文件是:all-20050412.tar.bz2)
mplayer windows 解码器包 (我下载的文件是:windows-all-20050412.zip)
推荐朋友们在“红旗 5.0 桌面版”中使用图形化的方式解开压缩包。在压缩包的图标上点击鼠标右键,在弹出的右键菜单中用鼠标左键单击解压。然后在当前目录下会得到一个装着压缩包内容的文件夹。文件夹名称基本与压缩包一致。因为我们要将源代码编译成可以安装的二进制文件。我推荐将解压后的二制包复制一份粘贴到 Linux 分区。我个人喜欢将文件夹放到自己的当前用户目录下。
然后开始我们的安装过程,左键单击左下方的“开始”-->“应用程序”-->“附件”-->“系统终端”,即可打开终端。然后在终端内进入源码包目录。比如我的目录是:/root/MPlayer-1.0pre7try2。
每一个用源代码发布的安装包中都会有一个叫做 configure 的 Shell 脚本文件,它是做什么的呢?我们回想一下 windows 中安装软件的过程,是不是安装向导都要求用户输入一些信息呢?没错啦,configure 的作用就是给安装过程配置基本信息。我们用 ./configure ,命令执行它。它还有许多参数,具体参数当然随软件不同而异。如果我们想知道某个 configure 到底有哪些参数可以使用 ./configure --help 命令获得。
天哪,真是多得不得了啊!当然,我们并不需要使用这些所有的参数,只是需要这么几个啦!如果您在执行 ./configure 时不带任何参数,那么安装时将会使用默认值。我们今天教授的安装与朋友们在网上看到的其它方式可能有所不同,也许我自己是软件开发人员的关系,我喜欢把程序需要的东西全放到一个目录里。好的,我们开始啦。下一个命令是
引用:./configure --enable-gui --prefix=/opt/MPlayer-1.0pre7try2 --with-win32libdir=/opt/MPlayer-1.0pre7try2/win32 --with-codecsdir=/opt/MPlayer-1.0pre7try2/codecs。
我来解释一下这四个参数具体的函意:
--enable-gui (可以使用图形界面)
--prefix=/opt/MPlayer-1.0pre7try2 (软件安装的目的路径=/opt/MPlayer-1.0pre7try2)
--with-codecsdir=/opt/MPlayer-1.0pre7try2/codecs (解码库的路径=/opt/MPlayer-1.0pre7try2/codecs)
--with-win32libdir=/opt/MPlayer-1.0pre7try2/win32 (windows 解码库的路径=/opt/MPlayer-1.0pre7try2/win32)
大家是否注意到我们把要用到的一些主要的内容都放在 /opt/MPlayer-1.0pre7try2 目录里了!然后敲回车键执行吧!等上一会屏幕上返回了一大堆的信息。
用红线圈起来的部份比如“Checking for VIDIX ... yes”,“Checking for joystick ... no”意思是说程序配置的结果呢 VIDIX 是支持的,joystick 是不支持的。其它的大体上都是这意思。配置蓝线圈起来的部份是说
Install prefix: /opt/MPlayer-1.0pre7try2 (安装目录在 /opt/MPlayer-1.0pre7try2,我们刚才输入的参数嘛!)
Data directory: /opt/MPlayer-1.0pre7try2/share/mplayer (数据目录在 /opt/MPlayer-1.0pre7try2/share/mplayer)
Config direct.: /opt/MPlayer-1.0pre7try2/etc/mplayer (配置目录在 /opt/MPlayer-1.0pre7try2/etc/mplayer)
现在我们都配置完了,下面做什么呢?当然是编译啦!把源代码编译成电脑 CPU 可以看懂的二进制文件啦!命令很简单,依然是在 /root/MPlayer-1.0pre7try2 目录中执行命令 make。编译的时间有点长,我们需要等一会。这个过程中 make 命令将在源码包内不断生成许多的二进制文件,并且终端屏幕上不断有新的信息显示编译过程。
终于见到提示符啦。我的笔记本用了约 10 分钟完成编译过程。现在我们要进行最后一个步骤--安装。我们还是在 /root/MPlayer-1.0pre7try2 目录中执行 make install 命令。这个过程比较快!
现在我们去 /opt 目录下看看,原来空荡荡的目录里是不是多了一个 MPlayer-1.0pre7try2 目录?
MPlayer 的可执行文件都在 /opt/MPlayer-1.0pre7try2/bin 目录里,去看看有什么?
mplayer 可以使用命令行和键盘播放媒体文件。gmplayer 当然就是用图形化的方式播放媒体文件啦!
现在我们进入 /opt/MPlayer-1.0pre7try2/share/mplayer 文件夹。看看是否有一 font 个文件夹,和一个 Skin 文件夹。如果你打开后没有就自己各建一个。
将您下载的字体包解压后的文件夹拷入 font 目录。
再将下载的皮肤包解压后的文件夹拷入 Skin 目录。并建一个 default 目录,将任意一个皮肤文件夹中的内容拷进去。启动 MPlayer 的图形化界面后,程序将加载 default 目录里的皮肤文件。
最后我们不应该忘了我们在配置编译参数时有这么两个参数:
--with-win32libdir=/opt/MPlayer-1.0pre7try2/win32
--with-codecsdir=/opt/MPlayer-1.0pre7try2/codecs
所以我们应该在/opt/MPlayer-1.0pre7try2 目录下新建一个 win32 文件夹,将下载的 windows 解码库包解压后的文件拷进去。再新建一个 codecs 文件夹,将下载的 MPlayer 解码库包解压后的文件拷进去。
在播放的时候,网上很多文章介绍的命令格式是“mplayer 文件路径”,“gmplayer 文件路径”。不过现在是不行的。因为在 mplayer 使用默认参数编译的时候 mplayer、gmplayer 这两个执行文件是被装到 /usr/bin 目录中去了。/usr/bin 目录已被配置到了 Linux 的环境变量中。而我们的 mplayer、gmplayer 文件却是在安装目录。所以我们运行 mplayer 需要进入安装目录的 bin 文件夹。运行“./mplayer 文件路径”,“./gmplayer 文件路径”。
现在您曾经在 windows 下欣赏的所有多媒体文件 MPlayer 可以全部流畅播放。真爽!
hsdzhlt 于 2013-10-05 20:39:15发表:
一篇美文
BeefyMiracle 于 2012-12-21 12:56:01发表:
{:2_104:}
maxuedong 于 2011-02-27 22:43:32发表:
学习了
我若为欢 于 2010-11-15 18:25:27发表:
菜鸟来学习
谁明浪子心 于 2009-06-26 19:22:01发表:
我也是出错,不知道是怎么回事。
ahsjc 于 2009-06-14 00:43:36发表:
恩 ..很详细啊..
creat2008 于 2009-04-16 11:13:18发表:
很久没来论坛了
guowenmoon 于 2009-04-15 13:31:54发表:
太多 了!我的是fedora8哦
guowenmoon 于 2009-04-15 13:28:50发表:
太好了!不知道能不能安装成功
zhouleiaipc 于 2009-04-01 10:10:13发表:
顶,:0w5ty(1
rxy_pink 于 2009-03-25 15:24:43发表:
:0wpoi2
泥巴 于 2009-03-24 20:11:53发表:
楼主 仍然在吗 我看到的太迟了
yaoxin198707 于 2009-02-21 16:58:16发表:
你好,我按照你的帖子安装了Mplayer.
可是我在播放rmvb格式的影片时,提示:
Cannot find codec matching select -vo and video format 0x30345652!
播放不了!请问是什么意思啊?
感谢您的帖子!
xiaoasa 于 2007-12-20 07:09:48发表:
版主就是版主!顶!
我安装pidgin-2.3.1时,差不多,只是不太懂只能默认了,
不知道卸载的时候make uninstall行不?
aq4120 于 2007-12-05 09:06:54发表:
就在找这个呀,
ms222ms 于 2007-11-28 18:18:04发表:
哪个贱人啊,在这里捣乱
fhqaib 于 2007-09-09 14:20:17发表:
:0D1
76.173.223.* 于 2007-09-07 00:25:37发表:
5804a2119ae4b40af30351dc581794c8 http://ristorantijesolo.npxbkv.org/oss-sper-clin-agenziafarmaco-it/ http://cfppaullo.ukcvbo.org/voli-instambul/ http://tabella-conversione-pollici-centimetri.ufftiy.org/ http://ristorantijesolo.npxbkv.org/sformato-verza-pecorino-romano/ http://cibi-minimi-erat-atque-vulgaris-fere.oxibnl.org/ http://the-manchiurian-candidate.ufftiy.org/ http://buonevacanza.dlqpew.org/telecom-richiesta-indennizzo-tardiva-attivazione-servizio/ http://mi-hanno-dato.oxibnl.org/ http://snalstaranto.ipywer.org/molecola-scuola-elementare/ http://capodannomontebondone.npxbkv.org/evento-speciale-sauze-d-oulx/ ef5da0821261872f3a177fbd4ce2e9fc
24.113.65.* 于 2007-09-06 07:29:54发表:
f090fa29325469bb6a266a337ff3ca14 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 d950163e2bc04fe30175aa17834ab13d
24.92.219.* 于 2007-09-05 18:43:31发表:
2126f24b6bfbb2d30a7b803ae7d6d107 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 db62d9d137e7999ef0c8bbd27991ea41
69.243.148.* 于 2007-09-05 04:18:11发表:
1301470de4b2f14711dc7c7e470c3bca http://decreto-presidente-repubblica-n-97.dfmviz.info/ http://sito-eventi.dfmviz.info/ http://scuola-italia-vela.dfmviz.info/ http://pubblicita-web.dfmviz.info/ http://riduttori-pendolari.dfmviz.info/ http://orologi-stark.dfmviz.info/ http://prezzo-scheda-acquisizione-video-esterna.dfmviz.info/ http://agenti-bosch-it.dfmviz.info/ http://scheda-cpu.dfmviz.info/ http://valtur-neve-socio.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
81.184.135.* 于 2007-08-16 02:26:53发表:
14b1590a372bbc458a2372062e6af526 http://viaggio-aereo-sidney.akrmtn.com/ http://stagione-teatrale-melfi.ddxsak.com/ http://disegni-limone.akrmtn.com/ http://manutenzione-motore.zpvztz.com/ http://percorso-bergamo.akrmtn.com/ http://donna-romane-truccata.flroxk.com/ http://scuola-privata-giovanni-pascoli.akrmtn.com/ http://codice-segreto-lg-8360.flroxk.com/ http://van-gogh-gaugin-brescia.zpvztz.com/ http://passaggio-ruolo-sostegno.ddxsak.com/ f79720dbd018955dfd9068d527cd2031
66.50.95.* 于 2007-07-25 23:16:39发表:
184a6920c9b3d57bcf25bd97fe990b98 http://effetti-sonori-sirena.fmyrxs.biz/ http://gruppo-sanguini.smtpld.biz/ http://integratore-alimentare-ultimate.fmyrxs.biz/ http://uscita-dvd-stormbreaker.ftgmns.biz/ http://cani-o-gatti.fmyrxs.biz/ http://elenco-struttura-ricettive-carattere-sociale.ftgmns.biz/ http://meteo-neve-pescasseroli.cuxojo.biz/ http://imprese-femminile.zqemjp.biz/ http://ccnl-commercio-determinato.smtpld.biz/ http://scuola-agnelli-torino.ftgmns.biz/ f0bd15bc4c04b02533089147dbde4c5b
125.143.81.* 于 2007-07-25 17:13:59发表:
6ebd16b3edea92d035899157c7af575d http://vendita-case-lago-maggiore.mbgzfn.biz/ http://art-67-dpr-917.gohktw.biz/ http://kyos-immobiliare-milano.joyubb.biz/ http://fer-emilia.pzgvuv.biz/ http://vulcano-video.joyubb.biz/ http://vacanza-korcula.ggjrfj.biz/ http://risatissime-com.gohktw.biz/ http://scaldabagni-beretta.gohktw.biz/ http://casalighe-matura.hdywtl.biz/ http://senza-freno.ytxxxk.biz/ bfdd7bec9230a10317341e982495b689
86.121.170.* 于 2007-07-24 22:12:06发表:
814c475aa0d1a1000d31040194722821 http://er-capitano.zibtye.biz/ http://texture-retini-libreria.iuatju.biz/ http://ospedale-pinerolo.zibtye.biz/ http://sfondo-gratis-hyundai-getz.kajgdw.biz/ http://nautica-compro-vendo-annuncio.enadzh.biz/ http://test-d-intelligenza-gratis.tzlnou.biz/ http://giochi-online-shangai.enadzh.biz/ http://coltivazione-asparago.ygvhik.biz/ http://pub-provincia-caserta.iuatju.biz/ http://ristorante-il-rigoletto.enadzh.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
156.34.220.* 于 2007-07-23 12:37:51发表:
b4558696eae5503b5e3b331963d685f7 http://visite-guidate-sardegna.cqhnnx.org/ http://stradario-cividale-friuli.pvaeyo.org/ http://romania-volo-bgy-orio-al-serio.cqhnnx.org/ http://contributo-comunale-normativa-iva.jnbwct.org/ http://vacanza-casa-salento.mnkcbe.org/ http://scuola-statale-provincia-caserta.pvaeyo.org/ http://preventivo-riparazione.pvaeyo.org/ http://pagina-gialla-canada.jnbwct.org/ http://mostra-cardellino-reggio-emilia.vywyuh.org/ http://scherma-catania.jnbwct.org/ eb89aa2351bfb8dd061b0dc25061dcdb
125.230.121.* 于 2007-07-20 20:25:33发表:
8f5a751578beb6df7accfa4f39d3b472 http://cessioneinteroparcoveicolare.cerfmd.org/caldaia-unical/ http://santagiuliacostruzione.chohqh.org/gran-soleil-giocattolo/ http://staticapitaledellafrica.rozdha.org/attrezzatura-elettroniche-autoriparatori/ http://athleticidromassaggio.kcqdnd.org/malattia-lyell/ http://leishmaniosicanina2006.kcqdnd.org/corsi-aerobica/ http://polietileneincastro.chohqh.org/teca-autotrasporto/ http://bambinoclandestiniimmagine.chohqh.org/conca-d-oro-palermo-agenzia/ http://sfondiacoloripermotorola.kcqdnd.org/sito-ufficiale-cinderella-story/ http://dichiarazionefallimento.qemqrg.org/calcolo-filtro-crossover/ http://impegnoprofessionale.kcqdnd.org/box-da-tetto-per-auto/ b8fb7d84153cc5c69600cbe1497734b2
190.73.228.* 于 2007-07-19 11:15:02发表:
8fc71b6395a8c8c96edc745900a364f5 http://cassa-edile-sassari.kmyeyh.com/ http://acer-as5633wlmi-2gb.kvpzig.com/ http://legge-n-370.jnesky.in/ http://buccioni-boxing.iznvge.in/ http://ottenere-licenza-de-trasporto.jvzulp.in/ http://giornale-dell-arte.fzhoas.in/ http://gif-animata-sex-divertente.jvzulp.in/ http://case-in-vendita-in-ticino-svizzera.aoknmm.in/ http://africa-confini.bkqryo.com/ http://fifa-2007-xbox-trucco.uylqdg.com/ b8a12f78e2ab8d9c8e5e94f78e975725
0.0.0.* 于 2007-07-17 23:10:05发表:
a85e4db84be11444d1af3ac2fec8af77 http://malagutiphantomricambio.lgyeas.org/m-tulli-quid-agis-versione/ http://listinoprezzomisuraemme.jpwypc.org/negozio-milano-gatto/ http://ginnasticapsicomotoria.wfdklb.org/colpi-mercato-juventus/ http://crocieramediterraneoorientale.ppnxyq.org/abbigliamento-online-militare/ http://fotopiedesudati.ppnxyq.org/frequenza-cardiaca-sport-cyclette-recupero/ http://scaricagratisspybotsearchdestroy.eebsig.org/dhtml-natalizio-effetto/ http://maglificiofranca.cdvduz.org/memoria-lettore-mp3/ http://cercasipsichiatra.jpwypc.org/humax-dtv-4606/ http://abercrombiegiubbotto.qbmkwd.org/coppa-del-mondo-2006/ http://ortopediapisa.qbmkwd.org/film-ragazzo-giffoni-amicizia/ 8ea4fcdde1a965ef95e68187f350c6f6
125.0.89.* 于 2007-07-17 16:40:54发表:
http://52fcc5f5f2fac572d314c8717caee677-t.xkktxb.org 52fcc5f5f2fac572d314c8717caee677 http://52fcc5f5f2fac572d314c8717caee677-b1.xkktxb.org 52fcc5f5f2fac572d314c8717caee677 http://52fcc5f5f2fac572d314c8717caee677-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
88.72.56.* 于 2007-07-16 14:15:51发表:
eae1ae1f63611293f3ce66d273edfa32 http://terzo-mese-gravidanza-dimensione-feto.wdexfm.biz/ http://bouchet-di-fiori.knhtou.com/ http://credibilita-adolescenza.gwedas.com/ http://raisport-diretta.ywowql.com/ http://tecnica-elettronica-spa.ynpojb.biz/ http://drum-macchina-roland.nioqlj.com/ http://faac-pompa-motore.drncar.biz/ http://italia-chiamami-com-nr.ywowql.com/ http://cuckold-annunci.xxmndb.biz/ http://camuffare-voce.fuypfr.biz/ 8cff813cd5cdf93d908a9e43c4704dad
87.110.140.* 于 2007-07-15 06:22:53发表:
58d7029b9b3f6b981c8a40b3d67d9f73 http://farmaciasapienza.tvmowd.org/nudo-amatoriale-maschile/ http://serrandaantistrappoantitaglio.kqjhpm.org/mondiali-2003/ http://franchisingcontratto.seklde.org/copertura-mtb-pressione-consigliata/ http://idro2000espositocarlo.gapphu.org/il-mio-sanremo/ http://scatolineorigamo.mongnb.org/curare-le-piante-da-appartamento/ http://portascomparsascorrevole.jlmwbv.org/stadio-hannover/ http://nokia5300caratteristica.vozulo.org/vendita-fanali-autocarro/ http://palcoallopera.vozulo.org/daniele-ambrogio-escort-gay/ http://istruzioneprimariadisecondogrado.kqjhpm.org/qui-donna-mamma/ http://albergopositano.eqacfr.org/foto-coppia-bisex/ a875aa102e91579b074fe29fa7a13e81
201.246.183.* 于 2007-07-13 23:12:38发表:
4c3fe44d5912dd5ac7c43671a53d27d9 http://week-end-romantico-low-cost-francia.wxamgv.org/ http://diego-maroni-commercialista-milano.wxamgv.org/ http://sfondi-desktop-girls.tttfhp.org/ http://fairline-italia.aoonyx.org/ http://dormire-a-bocca-aperta.mhjqva.org/ http://brutta-gente.benlzg.org/ http://olio-d-oliva-fare-pizza.mpxxqr.org/ http://trasformare-un-dvd-in-divx.lvqits.org/ http://bello-ribelli.lvqits.org/ http://racconto-mistress-schiavo-schiava.iwfpha.org/ 8c2a5fabd273020cebfaea52010ee4bb
220.79.199.* 于 2007-07-12 16:28:23发表:
3a23d5237697c999db88c79cb9428a7a http://testo-intervista-annunziata.udzjxi.org/ http://1.kfqswq.org/thermal_spa_tuscany/spa_wellness_tuscany_montepulciano.htm http://il-barocco-leccese.xxfvsr.org/ http://4.tijrje.org/infomed/appello.html http://0.qytpli.org/pubblicita.php http://pianoforte-napoli.uwlbfm.org/ http://it-interesse-deposito-cauzionale.yorcfb.org/ http://carezza-erotica.qeeuwf.org/ http://lingue-senza-frontiere.ahffzb.org/ http://piaggio-modificato.rtistm.org/ d8d97f68bc274489b372d34e17b3a169
66.130.118.* 于 2007-07-11 09:29:44发表:
d81061d05a59a0c64a30db71b319a015 http://4.ska4aj.org/pagina50.html http://24.ska4aj.net/pagina72.html http://23.ska4aj.net/pagina53.html http://13.ska4aj.net/pagina41.html http://4.ska4aj.com/pagina41.html http://15.skachaj.org/pagina77.html http://9.skachaj.org/pagina98.html http://4.skachaj.org/pagina81.html http://6.ska4aj.org/pagina46.html http://7.ska4aj.net/pagina12.html 53f688e2d0ae01a48f96ad8f8181d4f6
81.35.78.* 于 2007-07-10 00:36:17发表:
00ac8c468043210da6a0d9f206f870d4 http://piazzetta-roma.gtimmg.org/ http://ente-turismo-canada.fyicly.org/ http://operatore-socio-sanitario-disabile.gtimmg.org/ http://sly-2-banda-dei-ladri.dkzfpf.org/ http://sopraintendenza-archeologica.bsvetd.org/ http://ingegneria-aerospaziale-forli.atersl.org/ http://proverbio-alcolismo.gtimmg.org/ http://problema-di-lavoro.atersl.org/ http://futuro-anteriore.atersl.org/ http://mediaworld-videocamera.bsvetd.org/ 9b45a0bdde2cb75e21785d72ae4741f7
83.55.12.* 于 2007-07-08 15:05:39发表:
fde08b0a5d927fa0aa81f885bb74a536 http://sagre-di-aprile.wdhffe.org/ http://basilicogenovese.ybhujc.org/strani-filmato/ http://corsocantocomo.ikwuex.org/comando-gruppo-pronto-impiego-milano/ http://mappa-arrondissements.zgagyw.org/ http://trenoromagenova.sphfph.org/carica-batteria-269/ http://armani-primavera-estate.djrtlt.org/ http://bardi-massimo.zgqwur.org/ http://custodiapalm.ikwuex.org/bambino-neonato/ http://custodiapalm.ikwuex.org/moglie-abramo/ http://volibucarestbari.sphfph.org/dc-italiano-guida/ cda9cd96507def8918671c23330ec82a
190.74.144.* 于 2007-07-07 09:07:08发表:
d63eb03b4629b6f44fe95fadf8081046 http://venditaregistratorecassacastellanza.yjkdwi.org/griglia-professionali/ http://azienda-sanitaria-frascati.bubajm.org/ http://albergo-san-giovanni-rotondo-buona-forchetta.mcgzbb.org/ http://pescedapriledastampare.eduein.org/graduatoria-concorso-infermiera-brindisi/ http://aliquota-ici-anci.xxbtpu.org/ http://selenecalloni.skzbln.org/startrek-italia/ http://orologimarcatempo.yjkdwi.org/termocamere-infrarosso-costo/ http://emulatore-giochi-name32.bubajm.org/ http://abbigliamento-habana-donna.mcgzbb.org/ http://hard-disk-esterno-200gb.mcgzbb.org/ 268af5f4294519a6b3a74dbb7c6fdf14
200.59.239.* 于 2007-07-02 10:30:35发表:
89cc4783d675b4c8a2615123c26fdbe2 http://calendario-star-wars-episodio-3.dtifhu.org.in/ http://roma-citta-aperta-robert-katz.hhknox.org.in/ http://aerox-valentino-rosso-50-cc.omulsq.org.in/ http://gli-strumenti-per-la-musicoterapia.oaxzml.org.in/ http://mercatini-dell-usato-a-firenze.dtifhu.org.in/ http://fase-sviluppo-software-patente-europea.omulsq.org.in/ http://cartolina-di-compleanno-con-winnie-pooh.kfxrfs.org.in/ http://episodio-mew-mew-amiche-vincenti.innltr.org.in/ http://musica-classica-spettacolo-dicembre-2006.qttkja.org.in/ http://concita-de-gregorio-madre-sa.pifljm.org.in/ 8a848390101f52442387e8806988b168
80.36.148.* 于 2007-07-01 06:18:52发表:
9cfce0ff4211af16488acf80d896d43d http://aiutocuocooffertalavoroalbergo.pkjtsb.org/ http://calvisiosabinomemoriatammala.gdedkb.org/ http://www.negoziovialargaamilano.pkjtsb.org/ http://venditapannellomdf.qrxvou.org/ http://under16maschilecsibasketroma.hrjksn.org/ http://conseguenzacessazionerapportolavorocoopsociale.jfjurx.org/ http://www.jokerboatgommonelistinoprezzo.pkjtsb.org/ http://www.traduttoredilingueinitaliano.ocuokj.org/ http://www.calvisiosabinomemoriatammala.gdedkb.org/ http://granuccinetlabirintoswfurl.tgydoj.org/ 246f5573f09449eb624440463d221fca