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-05-18 Tension113 Wrote:Movie.nfo is checked. I found the problem. Will have a new version up in about 30 mins or so. - Tension113 - 2009-05-18 nul7 Wrote:I found the problem. Will have a new version up in about 30 mins or so. Ok, glad it wasn't me.. Thanks for looking into it.. - nul7 - 2009-05-18 r59 is in the first post. EDIT: If you have posted an issue on the google code page, please verify that the problem has been fixed/feature is working properly so I can mark the issues as "verified" and close them out. EDIT2: One thing I should mention... I noticed I was still naming the settings after the old name (ummSettings) and updated it for the new name (emmSettings). Therefore your current settings won't load into the new version. You can just start from scratch, but the fix is easy. Just open the settings.xml file in notepad, and change the second and last lines: Change <ummSettings> to <emmSettings> from the second line and change </ummSettings> to </emmSettings> from the very last line - nul7 - 2009-05-18 Tension113 Wrote:Ok, glad it wasn't me.. Thanks for looking into it.. lol Sorry about that. I think someone else may have posted about it before but I forgot to look into it (which is the reason I ask people to use the issue tracker on the google code page lol) - sumofatguy - 2009-05-18 I posted on your google code page, but I might as well mention here... the Update XBMC button doesn't do anything. I get no errors in ember or XBMC logs, so I'm not sure how helpful I can be here... But I do know I have XBMC configure correctly because I remotely update the library all the time - nul7 - 2009-05-18 sumofatguy Wrote:I posted on your google code page, but I might as well mention here... the Update XBMC button doesn't do anything. I get no errors in ember or XBMC logs, so I'm not sure how helpful I can be here... But I do know I have XBMC configure correctly because I remotely update the library all the time Yeah, I need to figure out what's wrong with my XBMC web server (I've never used it before so never knew it was broken) so I can actually test it to see what's happening. The code that's in there now was really just a roll of the dice guess. lol EDIT: This is the problem I'm experiencing. I'm guessing it probably won't be fixed any time soon. Guess I'll just have to keep hoping for double sixes instead of snake-eyes for each version trying to get this to work. lol - clackerdacker - 2009-05-18 Livin Wrote:problems in .18... The issue is the GetMoviePath function is checking extensions in the parent directory only, i.e. it's not looking for VOB files in the VIDEO_TS sub directory. Code: Public Shared Function GetMoviePath(ByVal sPath As String) As String should prob look more like Code: Public Shared Function GetMoviePath(ByVal sPath As String) As String You should also add .dvr-ms and .m2ts to the list of extensions it checks in the code. Last thing I've noticed is that the code is case sensitive, so movie.NFO or .TBN don't get found as it's looking for .nfo and .tbn. GetFolderContents and GetNfoPath methods should be modified to make sure all combinations are found. This is an excellent product, so easy and cool in comparison to the others out there. Once I can get my DVDs in without using my own version of the source it'll be even better ;-) - inmcm - 2009-05-18 clackerdacker Wrote:You should also add .dvr-ms and .m2ts to the list of extensions it checks in the code. I 2nd the addition of .m2ts support. Awesome program by the way. - nul7 - 2009-05-18 clackerdacker Wrote:The issue is the GetMoviePath function is checking extensions in the parent directory only, i.e. it's not looking for VOB files in the VIDEO_TS sub directory. *slaps forehead* Didn't even consider case sensitivity on file extensions. Easy fix... will have that in the next version. Support for VIDEO_TS isn't quite that simple, but I'll figure something out. Thanks for the code sample btw. EDIT: But now that I look over the code, there is only one spot that is not case insensitive and that is the Folder portion of GetFileContents where it's comparing paths. The rest use File.Exists, which is not case sensitive (on windows anyway). Are you the one using EMM with Mono/Linux (don't know who's who between google code and here lol)? inmcm Wrote:I 2nd the addition of .m2ts support. No problem... will be in next version. - Bram77 - 2009-05-18 This is starting to become a really fine app! It's good your focussing on the movie part now, and not try to do everything at once (TV shows, music...). There is no need to hurry and implement stuff to fast. I think this will be the nr1 complementing media manager once it's feature complete. Your vision regarding the UI is excelent! Could you consider allowing automatic custom fanart image resizing? For the XBOX every KB that can be saved be reducing the fanart image size an quality is very welcome. Now I manually resize all fanart to 960x540 and reduce the jpg quality to 75%. If this could be automated somehow it would save me a lot of time and help other XBOX users to get the most out of their XBOX - nul7 - 2009-05-18 Bram77 Wrote:This is starting to become a really fine app! It's good your focussing on the movie part now, and not try to do everything at once (TV shows, music...). There is no need to hurry and implement stuff to fast. I think this will be the nr1 complementing media manager once it's feature complete. Your vision regarding the UI is excelent! Thanks! Resizing fanart is already an accepted feature request: http://code.google.com/p/embermediamanager/issues/detail?id=27&colspec=ID%20Type%20Status%20Priority%20Owner%20Summary I'll probably get to that tomorrow. On a side note, since you're the creator of XBMControl... any tips on getting my "Update XBMC" button working. My webserver is broken because I use x64 Linux so I'm kind of shooting blind here. I had it coded as a simple webrequest (just create.... no response) and that didn't work.... now I've changed it to a simple httpwebrequest (same thing, just create with no response). Not sure if that's enough or am I missing something here? - indy5 - 2009-05-18 I have a small request/modification to the update XBMC button. Once you figure out the code, do you think it can be changed to allow for updating multiple XBMC machines? I'm sure there are many of us who have more than 1 XBMC system running in the house and it would be perfect to be able to update all the libraries at the same time. Perhaps a drop down where you can choose which library to update (and possibly a way to customize the name, living room, bedroom, etc) Thanks! - Bram77 - 2009-05-18 nul7 Wrote:On a side note, since you're the creator of XBMControl... any tips on getting my "Update XBMC" button working. My webserver is broken because I use x64 Linux so I'm kind of shooting blind here. I had it coded as a simple webrequest (just create.... no response) and that didn't work.... now I've changed it to a simple httpwebrequest (same thing, just create with no response). Not sure if that's enough or am I missing something here? Code: http://<xbmc-ip>:<xbmc_port>/xbmcCmds/xbmcHttp?command=ExecBuiltIn¶meter=updatelibrary(video) If the webserver is set to the default response format* and the webserver is enabled** the response should be Code: <html> * You can reset the webservers response format by using the following command... Code: http://<xbmc-ip>:<xbmc_port>/xbmcCmds/xbmcHttp?command=SetResponseFormat ** You can check if the webserver is enabled by using the following command... Code: http://<xbmc-ip>:<xbmc_port>/xbmcCmds/xbmcHttp?command=WebServerStatus Code: <html> - nul7 - 2009-05-19 indy5 Wrote:I have a small request/modification to the update XBMC button. Once you figure out the code, do you think it can be changed to allow for updating multiple XBMC machines? I'm sure there are many of us who have more than 1 XBMC system running in the house and it would be perfect to be able to update all the libraries at the same time. Once I get the actual command to send, then I'll start filling in the holes. Please add a request to the google code page so I don't forget about it. Bram77 Wrote: Thanks. At this point, I'm not concerned with the response but that will come in handy later. Hopefully HTTPWebRequest works... - nul7 - 2009-05-19 clackerdacker Wrote:The issue is the GetMoviePath function is checking extensions in the parent directory only, i.e. it's not looking for VOB files in the VIDEO_TS sub directory.[snip] Ok... maybe it is that easy. Question: where do the nfo/fanart/poster go? In the VIDEO_TS folder or in the main movie folder? If they go in the VIDEO_TS folder that IS all it will take, it seems. If they go in the main movie folder then there's a little more work to do. lol EDIT: Code: Public Shared Function GetMoviePath(ByVal sPath As String) As String |