|
Alice85
Anmeldungsdatum: 19. November 2007
Beiträge: Zähle...
|
Hallo und ein Frohes Neues an alle!
ich hab gerade über den Aptitude das Paket imdb-tools gefunden und installiert, allerdings ist mir die Anwendung bisher total schleierhaft. Kennt einer das Programm? Wie kann ich denn nun damit Infos von der Internet Movie Database auf meinen Rechner speichern? Die Manual-Seite ist leider nich so richtig aufschlussreich für mich ☹
MfG Alice
|
|
xrolly
Anmeldungsdatum: 26. September 2007
Beiträge: Zähle...
|
Hallo Alice85, du weisst das dieses Programm ein reines Kommandozeilentool ist? Es werden Kommandos zum Abfragen von Filminformation an die IMDB, ueber das Terminal gestartet.
Die Manual-Seite ist leider nich so richtig aufschlussreich für mich
Ich kenne das Manual nicht, was verstehst du den an den Kommandos nicht? Netten Gruss, xrolly
|
|
Alice85
(Themenstarter)
Anmeldungsdatum: 19. November 2007
Beiträge: Zähle...
|
zum beispiel hab ich erst nach sehr langer zeit rausgefunden, wie ich die befehle denn nun schreiben muss und welche ordner und dateien existieren sollten, um die fehler zu beseitigen, weil es nirgends Beispiele zu finden gibt. Was auch nicht klappt ist:
| $ imdb get -s Hook
Select a Film: 0
Find aborted
|
Also er findet gar keine Filme, eine weitere Ausgabe:
| $ imdb get -l tt0120611
Getting details from IMDB
id: tt0120611
|
Was auch nicht sonderlich hilfreich ist (das müsste laut Link die ID von Blade sein) Aber wie komm ich nun an die Infos die ich möchte z.B. Schauspieler aus dem Film? Vorallem wenn er ja teilweise nich mal die Filme findet wie bei der Suche nach Hook EDIT: Also bei bekannter ID kann ich mir auch die Infos anzeigen lassen, z.B.
| $ imdb get -l tt0120611 -C
Getting details from IMDB
cast: Wesley Snipes as Blade, Stephen Dorff as Deacon Frost, Kris Kristofferson as Abraham Whistler, N'Bushe Wright as Dr. Karen Jenson, Donal Logue as Quinn, Udo Kier as Vampire Elder Dragonetti, Arly Jover as Mercury, Traci Lords as Racquel, Kevin Patrick Walls as Officer Krieger, Tim Guinee as Dr. Curtis Webb, Sanaa Lathan as Vanessa Brooks, Eric Edwards as Pearl, Donna Wong as Nurse, Carmen Thomas as Senior Resident, Shannon Lee as Resident
|
oder
| $ imdb get -l tt0120611 -t
Getting details from IMDB
title: Blade
|
Aber wie krieg ich das hin wenn ich nur den Filmtitel weiß?
|
|
xrolly
Anmeldungsdatum: 26. September 2007
Beiträge: Zähle...
|
Hallo Alice85, wie ich schon erwaehnte kenne ich dieses Programm nicht, das Manual ist auch nicht zu finden, damit weiss ich auch nicht wie die Syntax lauten koennte. Ich habe aber hier mal ein Freeware Programm gefunden welches mit GUI seine Informationen von.., aber lese selber: www.thexblog.de Für den eigenen Filmbestand bietet MyMDb eine Volltextsuche, sortiert die Titel nach unterschiedlichen Kriterien und zeigt zu einzelnen Filmen das jeweilige Ranking aus den Online-Datenbanken OFBd und IMDb an. Zudem stellt die Anwendung zur eigenen Sammlung zahlreiche statistische Daten bereit, druckt Datenblätter einzelner Filme aus und exportiert auf Wunsch den gesamten Datenbestand als Webseite. MyMDb 3.2 wurde mit Excelsior JET compiliert und benötigt daher kein Java mehr. * MyMDB
Vllt. laeuft die Sache/Suche damit einfacher ..😉. Netten Gruss, xrolly
|
|
Alice85
(Themenstarter)
Anmeldungsdatum: 19. November 2007
Beiträge: 157
|
hi xroller,
danke für den tipp, das programm mymdb hab ich gefunden und konnte es auch installieren, allerdings ist es nicht ganz das was ich gesucht habe: ich suche tatsächlich ein programm mit dem ich die infos, die man auf IMDB nachlesen kann, auf den Rechner quasi in eine Datenbank downloaden kann, meinetwegen auch nur sortiert nach schauspielern und / oder filmen in textdateien, es gibt von www.imdb.com sogar ein konsolenbasiertes programm - moviedb kann man hier http://www.imdb.com/interfaces#unix downloaden - das krieg ich allerdings auch nicht komplett zum laufen ☹
|
|
xrolly
Anmeldungsdatum: 26. September 2007
Beiträge: Zähle...
|
Hallo Alice85, ich habe mir das Tool mal von hier geholt: www.imdb.com Fuer die Installation sollte gcc installiert sein:
| gcc-4.2
The GNU C compiler
|
.. ist bei mir installiert. Habe es dann entpackt und das Makefile ausfuehrbar gemacht, mit:
.. mir dann noch einmal die INSTALL angeschaut, dort steht unter:
1
2
3
4
5
6
7
8
9
10
11
12 | (3) since the package includes a program to automatically get the data files
from the FTP site (and to keep them up to date), you need to give the
package your e-mail address to use as the password for FTP. Edit the
file Makefile and change the following line:
LFETCHOPT = -auto
to
LFETCHOPT = -auto -user <address>
where <address> is your e-mail address.
|
.. da mein Englisch nicht das wahre ist, habe ich es mir uebersetzen lassen:
| (3) da das Paket ein Programm umfaßt, um die Dateien automatisch zu erhalten vom ftp site (und sie aktuell halten),
müssen Sie geben verpacken Sie Ihr email address, um als das Kennwort für ftp zu verwenden.
Redigieren Sie archivieren Sie Makefile und ändern Sie die folgende Linie:
|
.. dieses habe ich dann auch getan, die Makefile geoeffnet und eingetragen:
| LFETCHOPT = -auto -user meineemail@adresse
|
.. gespeichert und einen Durchlauf gestartet mit:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383 | $ ./Makefile
./Makefile: line 71: LFETCHOPT: command not found
./Makefile: line 76: CC: command not found
./Makefile: line 79: CFLAGS: command not found
./Makefile: line 82: CC: command not found
./Makefile: line 82: LD: command not found
./Makefile: line 86: CFLAGS: command not found
./Makefile: line 86: LDFLAGS: command not found
./Makefile: line 116: ZLISTEXT: command not found
./Makefile: line 117: ZLISTCAT: command not found
./Makefile: line 118: ZLISTCATOPTS: command not found
./Makefile: line 120: ZDBSCOMPRESS: command not found
./Makefile: line 121: ZDBSEXT: command not found
./Makefile: line 122: ZDBSCAT: command not found
./Makefile: line 123: ZDBSCATOPTS: command not found
./Makefile: line 131: KEEPLIST: command not found
./Makefile: line 138: AUTOUNCOMPRESS: command not found
./Makefile: line 143: MKDBOPT: command not found
./Makefile: line 148: RAWDIR: command not found
./Makefile: line 152: DBDIR: command not found
./Makefile: line 156: ETCDIR: command not found
./Makefile: line 160: SRCDIR: command not found
./Makefile: line 164: BINDIR: command not found
./Makefile: line 168: MANDIR: command not found
./Makefile: line 172: MAINDIR: command not found
./Makefile: line 176: DOCDIR: command not found
./Makefile: line 183: LOGFILENAME: command not found
./Makefile: line 184: LOGFILE: command not found
./Makefile: line 194: MORE: command not found
./Makefile: line 199: READLINEINCDIR: command not found
./Makefile: line 200: READLINELIBDIR: command not found
./Makefile: line 205: VFORK: command not found
./Makefile: line 211: READLINEAUXLIBS: command not found
./Makefile: line 225: SHELL: command not found
./Makefile: line 229: MAKE: command not found
./Makefile: line 234: ZSANITYCHECK: command not found
./Makefile: line 241: TEMPNAM: command not found
./Makefile: line 249: VERSIONNUMBER: command not found
./Makefile: line 252: RELEASEDATE: command not found
./Makefile: line 258: all: command not found
./Makefile: line 260: compile: command not found
./Makefile: line 261: MAKE: command not found
./Makefile: line 261: CC: command not found
./Makefile: line 261: CFLAGS: command not found
./Makefile: line 261: LD: command not found
./Makefile: line 261: LDFLAGS: command not found
./Makefile: line 261: RAWDIR: command not found
./Makefile: line 261: DBDIR: command not found
./Makefile: line 261: ETCDIR: command not found
./Makefile: line 261: CC=: command not found
./Makefile: line 264: ZSANITYCHECK: command not found
./Makefile: line 264: do-compile: command not found
./Makefile: line 265: SRCDIR: command not found
./Makefile: line 265: MAKE: command not found
./Makefile: line 265: CC: command not found
./Makefile: line 265: CFLAGS: command not found
./Makefile: line 265: TEMPNAM: command not found
./Makefile: line 265: LOGFILE: command not found
./Makefile: line 265: LOGFILENAME: command not found
./Makefile: line 265: LD: command not found
./Makefile: line 265: LDFLAGS: command not found
./Makefile: line 265: ZLISTCAT: command not found
./Makefile: line 265: ZDBSCAT: command not found
./Makefile: line 265: ZLISTCATOPTS: command not found
./Makefile: line 265: ZDBSCATOPTS: command not found
./Makefile: line 265: ZLISTEXT: command not found
./Makefile: line 265: ZDBSEXT: command not found
./Makefile: line 265: RAWDIR: command not found
./Makefile: line 265: DBDIR: command not found
./Makefile: line 265: ETCDIR: command not found
./Makefile: line 265: CC=: command not found
./Makefile: line 274: installbin: command not found
./Makefile: line 275: MAKE: command not found
./Makefile: line 275: BINDIR: command not found
./Makefile: line 275: ETCDIR: command not found
./Makefile: line 275: BINDIR=: command not found
./Makefile: line 277: do-installbin: command not found
./Makefile: line 278: SRCDIR: command not found
./Makefile: line 278: MAKE: command not found
./Makefile: line 278: BINDIR: command not found
./Makefile: line 278: ETCDIR: command not found
./Makefile: line 278: BINDIR=: command not found
./Makefile: line 280: installman:: command not found
./Makefile: line 281: MAKE: command not found
./Makefile: line 281: MANDIR: command not found
./Makefile: line 281: DBDIR: command not found
./Makefile: line 281: MAINDIR: command not found
./Makefile: line 281: MANDIR=: command not found
./Makefile: line 284: do-installman:: command not found
./Makefile: line 285: MANDIR: command not found
./Makefile: line 285: MAKE: command not found
./Makefile: line 285: MANDIR: command not found
./Makefile: line 285: DBDIR: command not found
./Makefile: line 285: MAINDIR: command not found
./Makefile: line 285: RELEASEDATE: command not found
./Makefile: line 285: VERSIONNUMBER: command not found
./Makefile: line 285: MANDIR=: command not found
./Makefile: line 290: AUTOUNCOMPRESS: command not found
./Makefile: line 290: update: command not found
./Makefile: line 292: ZSANITYCHECK: command not found
./Makefile: line 292: update-local: command not found
./Makefile: line 294: fetch: command not found
./Makefile: line 295: MAKE: command not found
./Makefile: line 295: ETCDIR: command not found
./Makefile: line 295: ETCDIR=: command not found
./Makefile: line 297: do-lfetch: command not found
./Makefile: line 298: RAWDIR: command not found
./Makefile: line 298: MAKE: command not found
./Makefile: line 298: SHELL: command not found
./Makefile: line 298: LFETCHOPT: command not found
./Makefile: line 298: ZLISTEXT: command not found
./Makefile: line 298: ETCDIR: command not found
./Makefile: line 298: SHELL=: command not found
install: angegebenes Ziel „update“ ist kein Verzeichnis
./Makefile: line 303: install-local: command not found
./Makefile: line 305: reset-ftp: command not found
./Makefile: line 306: RAWDIR: command not found
./Makefile: line 306: MAKE: command not found
./Makefile: line 306: reset-ftp: command not found
./Makefile: line 308: databases: command not found
./Makefile: line 309: MAKE: command not found
./Makefile: line 309: KEEPLIST: command not found
./Makefile: line 309: ZLISTEXT: command not found
./Makefile: line 309: ZDBSEXT: command not found
./Makefile: line 309: ZDBSCOMPRESS: command not found
./Makefile: line 309: ETCDIR: command not found
./Makefile: line 309: RAWDIR: command not found
./Makefile: line 309: MKDBOPT: command not found
./Makefile: line 309: KEEPLIST=: command not found
./Makefile: line 314: ZSANITYCHECK: command not found
./Makefile: line 314: do-databases: command not found
./Makefile: line 315: DBDIR: command not found
./Makefile: line 315: MAKE: command not found
./Makefile: line 315: KEEPLIST: command not found
./Makefile: line 315: ZLISTEXT: command not found
./Makefile: line 315: ZDBSEXT: command not found
./Makefile: line 315: ZDBSCOMPRESS: command not found
./Makefile: line 315: ETCDIR: command not found
./Makefile: line 315: RAWDIR: command not found
./Makefile: line 315: MKDBOPT: command not found
./Makefile: line 315: KEEPLIST=: command not found
./Makefile: line 320: votes: command not found
./Makefile: line 321: MAKE: command not found
./Makefile: line 321: ZLISTEXT: command not found
./Makefile: line 321: ZDBSEXT: command not found
./Makefile: line 321: ETCDIR: command not found
./Makefile: line 321: ZDBSCOMPRESS: command not found
./Makefile: line 321: RAWDIR: command not found
./Makefile: line 321: MKDBOPT: command not found
./Makefile: line 321: ZLISTEXT=: command not found
./Makefile: line 325: do-votes: command not found
./Makefile: line 326: DBDIR: command not found
./Makefile: line 327: MAKE: command not found
./Makefile: line 327: ZLISTEXT: command not found
./Makefile: line 327: ZDBSEXT: command not found
./Makefile: line 327: ETCDIR: command not found
./Makefile: line 327: ZDBSCOMPRESS: command not found
./Makefile: line 327: RAWDIR: command not found
./Makefile: line 327: MKDBOPT: command not found
./Makefile: line 327: ZLISTEXT=: command not found
./Makefile: line 331: touch-dbs: command not found
./Makefile: line 332: MAKE: command not found
./Makefile: line 332: MKDBOPT: command not found
./Makefile: line 332: ETCDIR: command not found
./Makefile: line 332: MKDBOPT=: command not found
./Makefile: line 334: do-touch-dbs: command not found
./Makefile: line 335: DBDIR: command not found
./Makefile: line 335: MAKE: command not found
./Makefile: line 335: MKDBOPT: command not found
./Makefile: line 335: ETCDIR: command not found
./Makefile: line 335: MKDBOPT=: command not found
./Makefile: line 341: ZSANITYCHECK: command not found
./Makefile: line 341: compress: command not found
./Makefile: line 342: DBDIR: command not found
./Makefile: line 342: MAKE: command not found
./Makefile: line 342: ZDBSCOMPRESS: command not found
./Makefile: line 342: ZDBSCOMPRESS=: command not found
./Makefile: line 344: ZSANITYCHECK: command not found
./Makefile: line 344: maxcompress: command not found
./Makefile: line 345: DBDIR: command not found
./Makefile: line 345: MAKE: command not found
./Makefile: line 345: ZDBSCOMPRESS: command not found
./Makefile: line 345: ZDBSCOMPRESS=: command not found
./Makefile: line 347: ZSANITYCHECK: command not found
./Makefile: line 347: autouncompress: command not found
./Makefile: line 348: RAWDIR: command not found
./Makefile: line 348: MAKE: command not found
./Makefile: line 348: ZLISTEXT: command not found
./Makefile: line 348: ZLISTCAT: command not found
./Makefile: line 348: ZLISTCATOPTS: command not found
./Makefile: line 348: ZLISTEXT=: command not found
./Makefile: line 356: cleanlists: command not found
./Makefile: line 357: RAWDIR: command not found
./Makefile: line 357: MAKE: command not found
./Makefile: line 357: ZLISTEXT: command not found
./Makefile: line 357: ZLISTEXT=: command not found
./Makefile: line 359: cleanobj: command not found
./Makefile: line 360: SRCDIR: command not found
./Makefile: line 360: MAKE: command not found
./Makefile: line 360: cleanobj: command not found
./Makefile: line 362: cleanbin: command not found
./Makefile: line 363: MAKE: command not found
./Makefile: line 363: BINDIR: command not found
./Makefile: line 363: ETCDIR: command not found
./Makefile: line 363: BINDIR=: command not found
./Makefile: line 365: do-cleanbin: command not found
./Makefile: line 366: SRCDIR: command not found
./Makefile: line 366: MAKE: command not found
./Makefile: line 366: BINDIR: command not found
./Makefile: line 366: ETCDIR: command not found
./Makefile: line 366: BINDIR=: command not found
./Makefile: line 367: -[: command not found
./Makefile: line 369: cleanman:: command not found
./Makefile: line 370: MAKE: command not found
./Makefile: line 370: MANDIR: command not found
./Makefile: line 370: DBDIR: command not found
./Makefile: line 370: MANDIR=: command not found
./Makefile: line 372: do-cleanman:: command not found
./Makefile: line 373: MANDIR: command not found
./Makefile: line 373: MAKE: command not found
./Makefile: line 373: MANDIR: command not found
./Makefile: line 373: MANDIR=: command not found
./Makefile: line 375: clean: command not found
./Makefile: line 377: cleandbs: command not found
./Makefile: line 378: DBDIR: command not found
./Makefile: line 378: MAKE: command not found
./Makefile: line 378: ZDBSEXT: command not found
./Makefile: line 378: ZDBSEXT=: command not found
./Makefile: line 380: veryclean: command not found
./Makefile: line 386: sanity-check-z: command not found
./Makefile: line 387: ETCDIR: command not found
./Makefile: line 387: ZLISTCAT: command not found
./Makefile: line 387: @/check-for-program: No such file or directory
./Makefile: line 388: ETCDIR: command not found
./Makefile: line 388: ZDBSCAT: command not found
./Makefile: line 388: @/check-for-program: No such file or directory
./Makefile: line 389: ETCDIR: command not found
./Makefile: line 389: ZDBSCOMPRESS: command not found
./Makefile: line 389: @/check-for-program: No such file or directory
./Makefile: line 395: relocate:: command not found
./Makefile: line 396: ETCDIR: command not found
./Makefile: line 396: @[: command not found
./Makefile: line 396: ETCDIR: command not found
mkdir: fehlender Operand
„mkdir --help“ gibt weitere Informationen.
./Makefile: line 397: ETCDIR: command not found
cp: Fehlender Zieldatei‐Operand hinter „etc/*“
„cp --help“ gibt weitere Informationen.
./Makefile: line 398: MANDIR: command not found
./Makefile: line 398: @[: command not found
./Makefile: line 398: MANDIR: command not found
mkdir: fehlender Operand
„mkdir --help“ gibt weitere Informationen.
./Makefile: line 399: MANDIR: command not found
cp: angegebenes Ziel „man/Makefile“ ist kein Verzeichnis
./Makefile: line 400: DBDIR: command not found
./Makefile: line 400: @[: command not found
./Makefile: line 400: DBDIR: command not found
mkdir: fehlender Operand
„mkdir --help“ gibt weitere Informationen.
./Makefile: line 401: DBDIR: command not found
cp: Fehlender Zieldatei‐Operand hinter „dbs/Makefile“
„cp --help“ gibt weitere Informationen.
./Makefile: line 402: RAWDIR: command not found
./Makefile: line 402: @[: command not found
./Makefile: line 402: RAWDIR: command not found
mkdir: fehlender Operand
„mkdir --help“ gibt weitere Informationen.
./Makefile: line 403: RAWDIR: command not found
cp: Fehlender Zieldatei‐Operand hinter „lists/Makefile“
„cp --help“ gibt weitere Informationen.
./Makefile: line 404: DOCDIR: command not found
./Makefile: line 404: @[: command not found
./Makefile: line 404: DOCDIR: command not found
mkdir: fehlender Operand
„mkdir --help“ gibt weitere Informationen.
./Makefile: line 405: DOCDIR: command not found
cp: Fehlender Zieldatei‐Operand hinter „docs/*“
„cp --help“ gibt weitere Informationen.
./Makefile: line 411: mancatman:: command not found
./Makefile: line 412: MAKE: command not found
./Makefile: line 412: MANDIR: command not found
./Makefile: line 412: DBDIR: command not found
./Makefile: line 412: MAINDIR: command not found
./Makefile: line 412: RAWDIR: command not found
./Makefile: line 412: MANDIR=: command not found
./Makefile: line 415: do-mancatman:: command not found
./Makefile: line 416: MANDIR: command not found
./Makefile: line 416: MAKE: command not found
./Makefile: line 416: DBDIR: command not found
./Makefile: line 416: RELEASEDATE: command not found
./Makefile: line 416: MAINDIR: command not found
./Makefile: line 416: VERSIONNUMBER: command not found
./Makefile: line 416: RAWDIR: command not found
./Makefile: line 416: DBDIR=: command not found
./Makefile: line 420: mantxt:: command not found
./Makefile: line 421: MAKE: command not found
./Makefile: line 421: MANDIR: command not found
./Makefile: line 421: DBDIR: command not found
./Makefile: line 421: MAINDIR: command not found
./Makefile: line 421: RAWDIR: command not found
./Makefile: line 421: MANDIR=: command not found
./Makefile: line 424: do-mantxt:: command not found
./Makefile: line 425: MANDIR: command not found
./Makefile: line 425: MAKE: command not found
./Makefile: line 425: DBDIR: command not found
./Makefile: line 425: RELEASEDATE: command not found
./Makefile: line 425: MAINDIR: command not found
./Makefile: line 425: RAWDIR: command not found
./Makefile: line 425: VERSIONNUMBER: command not found
./Makefile: line 425: DBDIR=: command not found
./Makefile: line 429: manps:: command not found
./Makefile: line 430: MAKE: command not found
./Makefile: line 430: MANDIR: command not found
./Makefile: line 430: DBDIR: command not found
./Makefile: line 430: MAINDIR: command not found
./Makefile: line 430: RAWDIR: command not found
./Makefile: line 430: MANDIR=: command not found
./Makefile: line 433: do-manps:: command not found
./Makefile: line 434: MANDIR: command not found
./Makefile: line 434: MAKE: command not found
./Makefile: line 434: DBDIR: command not found
./Makefile: line 434: RELEASEDATE: command not found
./Makefile: line 434: MAINDIR: command not found
./Makefile: line 434: RAWDIR: command not found
./Makefile: line 434: VERSIONNUMBER: command not found
./Makefile: line 434: DBDIR=: command not found
./Makefile: line 438: allman:: command not found
./Makefile: line 444: imoviedb: command not found
./Makefile: line 445: MAKE: command not found
./Makefile: line 445: RAWDIR: command not found
./Makefile: line 445: DBDIR: command not found
./Makefile: line 445: ETCDIR: command not found
./Makefile: line 445: RAWDIR=: command not found
./Makefile: line 446: MAKE: command not found
./Makefile: line 446: DBDIR: command not found
./Makefile: line 446: DBDIR=: command not found
./Makefile: line 448: needed-src: command not found
./Makefile: line 449: SRCDIR: command not found
./Makefile: line 449: MAKE: command not found
./Makefile: line 449: CC: command not found
./Makefile: line 449: CFLAGS: command not found
./Makefile: line 449: LD: command not found
./Makefile: line 449: LDFLAGS: command not found
./Makefile: line 449: ZLISTCAT: command not found
./Makefile: line 449: ZDBSCAT: command not found
./Makefile: line 449: ZLISTCATOPTS: command not found
./Makefile: line 449: ZDBSCATOPTS: command not found
./Makefile: line 449: ZLISTEXT: command not found
./Makefile: line 449: ZDBSEXT: command not found
./Makefile: line 449: RAWDIR: command not found
./Makefile: line 449: DBDIR: command not found
./Makefile: line 449: ETCDIR: command not found
./Makefile: line 449: CC=: command not found
./Makefile: line 457: imoviedb-compile: command not found
./Makefile: line 458: cd: imoviedb: No such file or directory
./Makefile: line 458: MAKE: command not found
./Makefile: line 458: CC: command not found
./Makefile: line 458: CFLAGS: command not found
./Makefile: line 458: VFORK: command not found
./Makefile: line 458: LD: command not found
./Makefile: line 458: LDFLAGS: command not found
./Makefile: line 458: DBDIR: command not found
./Makefile: line 458: MORE: command not found
./Makefile: line 458: READLINEINCDIR: command not found
./Makefile: line 458: READLINELIBDIR: command not found
./Makefile: line 458: READLINEAUXLIBS: command not found
./Makefile: line 458: CC=: command not found
./Makefile: line 466: cd: imoviedb: No such file or directory
./Makefile: line 466: MAKE: command not found
./Makefile: line 466: installbin: command not found
./Makefile: line 467: cd: imoviedb: No such file or directory
./Makefile: line 467: MAKE: command not found
./Makefile: line 467: cleanobj: command not found
./Makefile: line 468: SRCDIR: command not found
./Makefile: line 468: MAKE: command not found
./Makefile: line 468: cleanobj: command not found
./Makefile: line 474: depend: command not found
./Makefile: line 475: SRCDIR: command not found
./Makefile: line 475: MAKE: command not found
./Makefile: line 475: CFLAGS: command not found
./Makefile: line 475: CFLAGS=: command not found
./Makefile: line 478: nothing: command not found
|
.. wie du siehst hat der Aufruf nichts gefunden. Das ist mir dann doch etwas zu Spanisch, vllt. hilft dir mein Kleines Vorgehen etwas weiter 😬. Netten Gruss, xrolly
|
|
Alice85
(Themenstarter)
Anmeldungsdatum: 19. November 2007
Beiträge: 157
|
äußerst interessant, da kam ich zumindest weiter: gcc ist bei mir installiert, allerdings hat er bei mir probleme gehabt gzip zu finden, ich hab das gelöst mit
| sudo ln -s /bin/gzip /usr/bin/gzip
|
danach hab ich die Installation mit 'make install' gestartet, das dauert dann ziemlich lange, vorallem bei der ersten Installation, weil ja alles runterladen wird, jetz eben hatte ich also die "zweite" installation, also eher ein update, anscheinend hat er aber die alten dateien nicht überschrieben sondern die neuen stattdessen zusätzlich runtergeladen, denn ich habe fehlermeldungen der art "too many titles" bekommen, also zu viele filme, die Fehlermeldung, soweit ich sie jedenfalls noch rauskopieren konnte, ist hier: http://paste.ubuntuusers.de/393527/ (ich hab auf der Partition noch über 9 GB Speicherplatz, daran liegts also mit hoher Wahrscheinlichkeit nich) EDIT: Zumindest klappt bei mir mittlerweile diese Eingabe im Ordner /moviedb-3.24/bin/: ./title -t "Jurassic Park" -full oder auch ./title -t "Jurassic Park"
wenn ich das ganze mit /usr/bin verlinke sollte ich auch global auf die IMDB zugreifen können
|
|
xrolly
Anmeldungsdatum: 26. September 2007
Beiträge: 4322
|
Hallo r30, unter http://www.imdb.com/title/tt0408492/ habe ich z.Bsp. deinen Titel gefunden
.. obwohl deine Fehlermeldung sagt
| WARNING: Angelique (2003) (V) not in movies.list
|
.. ich bin leider Ratlos 😬, irgendwie scheinen deine Abfragen nicht richtig zu sein. Naja, 1GB sollte ja reichen, laut INSTALL, tut mir leid das ich dir da nicht weiter helfen kann. Hast du mal in einem Filmstudio gearbeitet 😉. Netten Gruss, xrolly
|
|
Alice85
(Themenstarter)
Anmeldungsdatum: 19. November 2007
Beiträge: 157
|
Nein hab ich nich ☺ Aber mein Freund hat verdammt viele DVDs (ich hab zumindest so ein paar ☺ ) und wir schaun auch gerne Filme, was mich aber nachts wirklich wach halten kann ist, wenn ich ein Gesicht sehe und mich frage wo ich das schon mal gesehen habe, also will ich mal schaun, ob ich sowas wie einen Katalog erstellen kann anhand der Filme, die wir hier stehen haben, oder die demnächst im Fernsehn laufen bei denen die Schauspieler aufgelistet sind MIT den anderen Filmen, in denen sie gespielt haben Bei mir liegt das Problem im Moment genau andersrum: Ich kann zum Beispiel "Snipes, Wesley" in diversen Listen finden, unter anderem in lists/actors.list aber nicht über den Befehl list -name "Snipes, Wesley" -s nicht mal über den Befehl list -name "Snipes" -s da krieg ich gar keine Ausgabe, aber andere Namen, die am Anfang von actors.list stehen kann ich finden, zum Beispiel Alec Baldwin kann ich finden mit list -name "Baldwin, Alec" Außerdem fehlen sämtliche Infos darüber, in welchen Filmen er mit gespielt hat, selbst wenn ich an den Befehl -full anhänge bekomme ich keine Filme von ihm angezeigt, das is alles bisher sehr verwirrend und hilft mit leider auch nich bei meinem Vorhaben
|
|
selbstdenker
Anmeldungsdatum: 15. April 2014
Beiträge: Zähle...
|
Hi - der letzte Eintrag war vor einem halben Jahrzehnt. Trotzdem ist das einer der Top-Hits wenn man "imdb-get syntax" googled ... Das Paket "imdb-tools" gibt es in der Version 0.9-1 noch immer. Es hat noch immer diesen Fehler in Zeile 221, bei dem das letzte doppelte Anführungszeichen VOR statt NACH dem Wildcard .* steht, also ".*> statt .*">
und schon wird gibt es Antworten:
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | ~# imdb-get -s Hook
1: Hook (1991)
2: Höök (2007) (TV Series)
3: Hook (1992) (Video Game)
4: Der Fisch-Club (2010) (TV Series)
5: Hooking Up (II) (2009)
6: Hooked (I) (2006) (Short)
7: Hooked (II) (2014) (Short)
8: Männer - hart wie Eisen (1963)
9: Red Hook Summer (2012)
10: Hooked (2009) (TV Series)
Select a Film: 1
Getting details from IMDB
id:
|
Kennt jemand auch die anderen Fehler?
|