Ember Media Manager NFO/Poster/FanArt Manager for Movies (Open Source VB.NET) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +---- Forum: Ember Media Manager (https://forum.kodi.tv/forumdisplay.php?fid=195) +---- Thread: Ember Media Manager NFO/Poster/FanArt Manager for Movies (Open Source VB.NET) (/showthread.php?tid=50348) Pages:
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
|
- nul7 - 2009-06-04 diemos Wrote:Any plans for foreign movie support like KinoPoisk? I am hoping to one day support all of XBMC's scrapers, but that may be a while. mark007 Wrote:For rescanning Library I don't think you can do anything about that. It shouldn't be downloading any information, though. Maybe I'm missing something that XBMC is looking for so it tries to download it?? mark007 Wrote:For incorrect flags. There are no default values. If it can't scan it leaves it blank. I use MediaInfo.dll to scan the information, so if there is incorrect data, it's more than likely a problem with that library and not with EMM. The only one that I could see being the "fault" of EMM is the resolution descriptor because, as I mentioned earlier, it's calculated from the height and width as scanned by MediaInfo.dll. Also, as mentioned in the first post and throughout the thread, disc images are not supported yet within MediaInfo.dll. If it can even find a video in the file at all, then it would be the first one, which, more than likely is a menu if you have a full rip. That's why you're getting resolutions/audio/etc that do not match the actual movie. mark007 Wrote:For getting thumbs At this point, that's beyond the scope of this project. I actually attempted that already, but it didn't work quite right and didn't want to dedicate the time to it yet. mark007 Wrote:Requests You can already save fanart as thumbs. In the fanart selection dialog there are checkboxes for each image. You can check as many as you want and it will save them to thumbs. mark007 Wrote:Forgive me for all of these requests, just getting them out of my mind before I forget Does XBMC play .rm files? I can easily add more file types, I just want to try to keep supported video files limited to what XBMC can play. I guess it can play 99% of everything out there.... but I don't want to get anyone's hopes up by supported that 1%. lol - mark007 - 2009-06-04 nul7 Wrote:I am hoping to one day support all of XBMC's scrapers, but that may be a while. Well I don't have any disk images, my dvd's are all in VIDEO_TS directory. Basically the majority of my content is these DVD rips and bluray rips to m2ts files and at present, neither of these get audio and video size and type calculated correctly. Thanks for all of that, I use media player classic as an external player of xbmc, it can play.... well everything lol and yes it plays .rm, .mov, .mkv, everything. As I say there might be an easy way for you to check movie file extensions, I think the "Media Browser" extension for Media Center uses this technique so it doesn't have to hard code all of them in, it just looks them up somewhere. Works very well and might save you even more time. Thanks for this app, really appreciate it. - nul7 - 2009-06-04 mark007 Wrote:Well I don't have any disk images, my dvd's are all in VIDEO_TS directory. Basically the majority of my content is these DVD rips and bluray rips to m2ts files and at present, neither of these get audio and video size and type calculated correctly. Ah, then it would be picking up the first valid video file. So, again, same thing, since the first video file is probably the menus, it's scanning that. mark007 Wrote:Thanks for all of that, I use media player classic as an external player of xbmc, it can play.... well everything lol and yes it plays .rm, .mov, .mkv, everything. As I say there might be an easy way for you to check movie file extensions, I think the "Media Browser" extension for Media Center uses this technique so it doesn't have to hard code all of them in, it just looks them up somewhere. Works very well and might save you even more time. Thanks for this app, really appreciate it. Thanks... I'll look into that. - clackerdacker - 2009-06-05 Have you tried this for frame extraction? http://moviethumbnail.sourceforge.net/index.en.html - mark007 - 2009-06-05 nul7 Wrote:Ah, then it would be picking up the first valid video file. So, again, same thing, since the first video file is probably the menus, it's scanning that. I suppose without taking apart the whole dvd structure, an improvement for dvd's maybe you could either open the biggest file within VIDEO_TS and check that instead of the first file found. Not sure about my blu-ray m2ts files, just looking forward to seeing them all showing 1080p and TrueHD etc without having to be manually edited - nul7 - 2009-06-05 Here's another pre-release: x86: http://www.cube3studios.com/EMM/EMM_pre221_x86.zip x64: http://www.cube3studios.com/EMM/EMM_pre221_x64.zip Please don't use these on your main library as there have been a ton of changes. It should work for the most part..... but just in case. I just need help testing to make sure everything is in order before making an actual release. There were so many changes I'm at a loss what to even test any more. lol Maybe with a few other people poking/prodding we can make sure everything works still. EDIT: Whoops... there's a problem with getting images using the updaters. I'll post another pre-release later tonight after I play with it some more. - nul7 - 2009-06-05 clackerdacker Wrote:Have you tried this for frame extraction? It's the same thing, no? ....uses ffmpeg. mark007 Wrote:I suppose without taking apart the whole dvd structure, an improvement for dvd's maybe you could either open the biggest file within VIDEO_TS and check that instead of the first file found. Hmmm.... I'll have to think about that one. - nul7 - 2009-06-05 Bah, don't even bother with the pre-releases posted earlier. I'll just make an "official" release later tonight. After playing with/tweaking it all day, I think it's close enough for general use. - bramblepants - 2009-06-05 REQUEST: Something which may be included, but I just haven't seen it! Is there a way to "Go to folder", when browsing through movies in Ember? What I mean is, if I'm editing a movie, and want to see where it is on my hard drive, I could right click the movie and "Go to folder"? Tested that pre-release, the one before last, and it appears to be working fine for me. Used it on just over 900 movies and went through a lot of them as I'm in the process of getting all the thumbs sorted. Couldnt see any issues. Good work on the thumbs part as well. It's really useful to be able re order them. Would it be possible to have a multi-selection option, so you could select a few and delete them, if they aren't suitable? - nul7 - 2009-06-05 bramblepants Wrote:REQUEST: Something which may be included, but I just haven't seen it! Is there a way to "Go to folder", when browsing through movies in Ember? Actually, the pre-releases were pretty screwed up. lol I'm about to release the next version within the half hour. Please add your requests to the google code page or I'll forget them. (I don't get much sleep so my memory is not so great. lol) - nul7 - 2009-06-05 r227 and Extras 06 are in the first post. You MUST upgrade to Extras 06 with this release. Although it may not appear so from the changelog, this is a massive update so there may be a few glitches. I've been playing with it all day trying to test everything I could think of and it seems to be running pretty well for me, but I may have forgotten to test a feature or two. When you first run this version you will need to hit "Rescan Media" to populate the database with your movies. This will also be necessary any time you make any changes to the files outside of Ember (deleting files, adding new movies, etc). EDIT: And for anyone who tried one of the pre-releases, you'll need to delete the database (Media.emm) as there have been some changes to the structure. - bramblepants - 2009-06-05 nul7 Wrote:Actually, the pre-releases were pretty screwed up. lol I'm about to release the next version within the half hour. Ah ok, no problem. Request now added on google code. Will now hurry to download the latest version before my movies implode! - Ayla - 2009-06-05 Thanks for all your fast and great updates nul7 Two questions: 1. None of my scraped movies has trailers (the trailers field is empty for all of them). How do I get EMM to scrape trailers? 2. One of my movies got scraped wrong (including fanart). I chose to "Change Movie" and selected the correct one. The correct one didn't have fanart, but I couldn't see an option to delete the "wrong" fanart, from the other movie? - bobrap - 2009-06-05 When rescanning media, is it intended for all movies to be marked? Thanks for all your work. Never mind, I figured it out. - MrDVD - 2009-06-05 Thx you so much for this new release, i scanned right now for Duplicate Movies and it works perfect. |