![]() |
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
|
- mark007 - 2009-06-07 Thanks so much, looking alot better ![]() Just the extrathumbs editor seems to be a bit buggy still. I have 13 extra thumbs for a movie "300". I was trying to move number 10, upto number 2 so it appears in xbmc multiplex view. Two things went wrong. When pressing "up", the extrathumb did change number, 10,9,8,7 etc but didn't change position in the list, like the list wasn't resorted after I pressed up. Also, the image above the one I was working with, got its number incremented, its at 17 now. I just took a screenshot to show you. ![]() - MrDVD - 2009-06-07 @Ayla i had the same error after the first start but @ the 2nd try i saw the movies after an rescan. Code: Title: Error - Ayla - 2009-06-07 MrDVD Wrote:@Ayla i had the same error after the first start but @ the 2nd try i saw the movies after an rescan. Thanks MrDVD ! After 4-6 tries and some restarts of EMM, it suddenly worked ![]() - PrimaryMaster - 2009-06-07 nul7 Wrote:Is this still a problem with r257? no.. now it works =) - Nuno - 2009-06-07 Me again, Some issues with HTML decode, you can test it (re)scraping "Foor Rooms (1995)" .. Studio will get some unDecode HTML. (same will happen for Director a Writer in other movies) diif patch Code: Index: clsScrapeIMDB.vb BTW: do you want me to report in here or in the google issue? - Nuno - 2009-06-07 ... if nfo have some genres not in EMM genres list (ie. put by another XBMC scraper) exception will occur and some info on EditMovie form will not load diff patch Code: Index: dlgEditMovie.vb EDIT: This will solve issue 121 in google issue tracker - nul7 - 2009-06-07 MrDVD Wrote:Some cosmetic error The counter is the total movie count... I never intended it to display the filtered list count. I can add a separate count display if you wish. Ayla Wrote:My movie list is now empty. When I click Rescan Media nothing get's loaded. mark007 Wrote:Thanks so much, looking alot better MrDVD Wrote:@Ayla i had the same error after the first start but @ the 2nd try i saw the movies after an rescan. Strange.... I guess SQLite doesn't operate the same way as MySQL when dealing with default values on "NOT NULL" columns? I'll have to drop in the forums for the library I use and see what's up with that. EDIT: After staring at this for a moment, I had another "duh" moment. It's because of the "NOT NULL". *sigh* I'll fix this for the next release. mark007 Wrote:Just the extrathumbs editor seems to be a bit buggy still. I have 13 extra thumbs for a movie "300". I was trying to move number 10, upto number 2 so it appears in xbmc multiplex view. Two things went wrong. Hmm.... I'll play with this today to get the kinks worked out. EDIT: Ok, I think this is fixed (for real this time) for the next release. PrimaryMaster Wrote:no.. now it works =) Whew... ok, good. Had me worried for a second there. lol Nuno Wrote:Me again, I see your intentions, but some of the changes are not necessary and some needed to be tweaked a little. Taking directors, for example, they are already being decoded in the linq: Code: Dim Dir = From M As Match In rDir Where Not M.Groups("name").ToString.Contains("more") _ The same method just needed to be applied for the linq select statement for other items. For the ones not using linq, I just decode the entire value: Code: IMDBMovie.StudioReal = Web.HttpUtility.HtmlDecode(Regex.Match(HTML.Substring(D, W - D), HREF_PATTERN).Groups("name").ToString.Trim) Posting here is fine for small patches like these as I can apply them immediately. If they're bigger changes, please use the google code page so they won't get lost in case I don't have time to get to them right away. Nuno Wrote:... Bah.... same structure as the old code. Don't know what I was thinking there. lol Thanks, again! - PrimaryMaster - 2009-06-07 ant ETA on the "TV" part for EMM ? - nul7 - 2009-06-07 PrimaryMaster Wrote:ant ETA on the "TV" part for EMM ? Some time after today. lol I'll be making a bugfix release tonight as there is a pretty serious bug in the movie editor. If a genre does not exist in the genre list it causes an error and doesn't finish loading the rest of the data (including images). If you hit "OK" it assumes that you intended to remove the images and deletes them. - nul7 - 2009-06-07 My wife and I are going out for "date night" so I need to get ready and I don't know when I'll be back home. Figured I should make the next release just in case I get home too late tonight and can't do it later. So r263 is in the first post. Just a small bug fix release. For people using r257 it is very important that you upgrade to r263 due to the bug in the movie editor (unless you never edit your movies or don't care that you'll lose data lol). Also, let me know if the new version check worked properly. ![]() - nul7 - 2009-06-08 I've created a readme file to include with future versions of Ember that will hopefully alleviate some of the repeated questions and "It doesn't work" = "You need the Extras package" bug reports. If someone would be so kind as to look it over and provide any suggestions for changes/additions, I would be highly appreciative: http://www.cube3studios.com/EMM/README.rtf Thanks! - Neku - 2009-06-08 Can you add an option to update only trailer links to .nfo files? - nul7 - 2009-06-08 Neku Wrote:Can you add an option to update only trailer links to .nfo files? I will if you add your feature request here: http://code.google.com/p/embermediamanager/issues/list :p - Neku - 2009-06-08 Done. ;] - Radikaltimes - 2009-06-08 just upgreaded .. and i got the following error if i try to right click over the movie list ====================== See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. doesn't load new movies either. ************** Exception Text ************** System.InvalidCastException: Conversion from type 'DBNull' to type 'Boolean' is not valid. at Microsoft.VisualBasic.CompilerServices.Conversions.ToBoolean(Object Value) at Ember_Media_Manager.frmMain.dgvMediaList_MouseDown(Object sender, MouseEventArgs e) at System.Windows.Forms.Control.OnMouseDown(MouseEventArgs e) at System.Windows.Forms.DataGridView.OnMouseDown(MouseEventArgs e) at System.Windows.Forms.Control.WmMouseDown(Message& m, MouseButtons button, Int32 clicks) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.DataGridView.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) ************** Loaded Assemblies ************** mscorlib Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3074 (QFE.050727-3000) CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll ---------------------------------------- Ember Media Manager Assembly Version: 0.0.0.263 Win32 Version: 0.0.0.263 CodeBase: file:///C:/Users/media/Documents/emm/Ember%20Media%20Manager.exe ---------------------------------------- Microsoft.VisualBasic Assembly Version: 8.0.0.0 Win32 Version: 8.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll ---------------------------------------- System Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- System.Windows.Forms Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll ---------------------------------------- System.Drawing Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll ---------------------------------------- System.Runtime.Remoting Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll ---------------------------------------- System.Data Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll ---------------------------------------- System.Xml Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3074 (QFE.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll ---------------------------------------- System.Data.SQLite Assembly Version: 1.0.61.0 Win32 Version: 1.0.61.0 CodeBase: file:///C:/Users/media/Documents/emm/System.Data.SQLite.DLL ---------------------------------------- System.Transactions Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll ---------------------------------------- System.Configuration Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll ---------------------------------------- has9ows9 Assembly Version: 0.0.0.263 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- System.Xml.Linq Assembly Version: 3.5.0.0 Win32 Version: 3.5.30729.1 built by: SP CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml.Linq/3.5.0.0__b77a5c561934e089/System.Xml.Linq.dll ---------------------------------------- System.Core Assembly Version: 3.5.0.0 Win32 Version: 3.5.30729.1 built by: SP CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll ---------------------------------------- System.EnterpriseServices Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll ---------------------------------------- _cuu34qw Assembly Version: 0.0.0.263 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- Accessibility Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll ---------------------------------------- ************** JIT Debugging ************** To enable just-in-time (JIT) debugging, the .config file for this application or computer (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled. For example: <configuration> <system.windows.forms jitDebugging="true" /> </configuration> When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box. ========= |