New Home for Ember Media Manager (Official Thread) - 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: New Home for Ember Media Manager (Official Thread) (/showthread.php?tid=116941) 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
|
RE: New Home for Ember Media Manager (Official Thread) - m.savazzi - 2013-02-20 half way down for FanartTV. API and Json deserializer done... ... now just to add it in Ember It is strange how they show the data as the pictures appear to be in a different bucket compared to the website. (2013-02-20, 20:56)Pr.Sinister Wrote:(2013-02-19, 21:02)m.savazzi Wrote: Additional question: what do you think of rottentomatoes? I already scrape the rating from TMDB. For the images that is quite a mod as we have to add properties in settings etc... also it will not be used by any skin... Not sure is good. M RE: New Home for Ember Media Manager (Official Thread) - deh2k7 - 2013-02-21 Does anyone have an up-to-date mediainfo/audiocodec mapping that they can share? 1.3.9 still doesn't have things like DTS-HD, DTS-MA, DD TrueHD, DD+, etc... RE: New Home for Ember Media Manager (Official Thread) - mwaterbu - 2013-02-21 Not sure if this will help anyone else, but if you are OCD about your movie sets, maybe. I have YAMJ compatibility mode set in EMM, which unfortunately, is not compatible with XBMC. YAMJ sets look like this in the .nfo file: Code: <sets> XBMC sets are simply: Code: <set>Star Wars</set> This XBMC style however, does not have any order built in. Instead, you should use the <sorttitle> tags if you need an order other than the default. Since EMM does not create <sorttitle> tags in this way, I wrote a quick app (C#) to process these .nfo files (with YAMJ sets) and make them compatible with both YAMJ and XBMC, which then allows sets in XBMC with custom orders. This process is very simple. -Always use YAMJ compatibility mode in EMM to create your sets in the proper order -Run my app on the folder where your movies and .nfo's are stored -Done All the app does is parse each .nfo file, check for YAMJ <sets> tags, and create <set> and <sorttitle> tags from the existing YAMJ <sets> tags (XBMC ignores the <sets> tags since it only uses <set>, so it's fine to keep them both in the files for EMM). This tool will ignore any files already properly formatted and also files that are not part of sets, so it runs very fast. This took about 45 seconds to parse through 1000+ .nfo files (on a network drive) and fix them. Let me know if you have any questions with this, or if it was helpful for you. Fix XBMC Sets RE: New Home for Ember Media Manager (Official Thread) - Cocotus - 2013-02-21 (2013-02-21, 02:29)deh2k7 Wrote: Does anyone have an up-to-date mediainfo/audiocodec mapping that they can share? 1.3.9 still doesn't have things like DTS-HD, DTS-MA, DD TrueHD, DD+, etc... From xbmc wiki, the naming of codecs should be following: Quote:ListItem.VideoCodec Shows the video codec of the currently selected video (common values: 3iv2, avc1, div2, div3, divx, divx 4, dx50, flv, h264, microsoft, mp42, mp43, mp4v, mpeg1video, mpeg2video, mpg4, rv40, svq1, svq3, theora, vp6f, wmv2, wmv3, wvc1, xvid) I commited some changes in Ember to support this: dtshd_hra, dtshd_ma were scanned and named correctly, but there were'nt flag icons in Ember before. So I added dtshd_hra.png , dtshd_ma.png to Ember so that for this type of movies, flag icon will be shown. Also added another audio codec mapping: from "a_truehd" to "truehd". I suggest to wait until next version of Ember to check this out and see if everything works. RE: New Home for Ember Media Manager (Official Thread) - Dragen - 2013-02-21 (2013-02-17, 02:19)CaptainKen Wrote:(2013-02-17, 01:28)Dragen Wrote:(2013-02-16, 20:06)m.savazzi Wrote: Not sure is meaningful, how you'd envision it should work? (2013-02-17, 14:54)m.savazzi Wrote: I'm still not convinced. It's for work flow. When you're adding, let's say, James Bond movies and there's 20 movies in the set, not having to use the sets manager between movies would make it faster. I'm not asking you to add anything to the scraper. Just an option to add/remove/edit the movie's set while working in the detail window. Actually, I'd rather you didn't add the set to the scraper, as TheMovieDB insists on adding "Collection" to everything. Marvel Cinematic Universe: Phase One is not called Marvel Cinematic Universe: Phase One Collection. Nor is The Dark Knight Trilogy called The Dark Knight Trilogy Collection. Just a field or dropdown would be nice. RE: New Home for Ember Media Manager (Official Thread) - Thom0pson - 2013-02-21 The downloads can be found at the project site RE: New Home for Ember Media Manager (Official Thread) - deh2k7 - 2013-02-21 (2013-02-21, 09:30)Cocotus Wrote:(2013-02-21, 02:29)deh2k7 Wrote: Does anyone have an up-to-date mediainfo/audiocodec mapping that they can share? 1.3.9 still doesn't have things like DTS-HD, DTS-MA, DD TrueHD, DD+, etc... Awesome job Cocotus! I'm looking forward to checking it out! RE: New Home for Ember Media Manager (Official Thread) - deh2k7 - 2013-02-21 I have a fix request for the next version. Can someone take a look at multi-disc file-stacking and file recognition? XBMC is now able to recognize movie nfos and artwork without the disc, part, cd, etc indicators: mymoviename [disc1].mpg mymoviename [disc2].mpg mymoviename.nfo mymoviename-poster.jpg mymoviename-fanart.jpg (2013-02-17, 14:54)m.savazzi Wrote: I'm still not convinced. m.savazzi - set is a custom property, but TMDB does track (and it can be scraped) a movie collection field. i have seen other metadata scraping tools successfully use and scrape the <set> tag using this field. If we use it from TMDB it does a pretty good job of populating the <set> tag in our NFO's, especially if we don't have them populated today, but would like to. Having the ability to scrape this field from TMDB in a selective fashion (i.e. only update the set, but nothing else in the NFO) for existing NFOs (and new ones for that matter) would be a much-appreciated feature. And then having the <set> field editable in the movie details would address some of the other requests as well. AW: RE: New Home for Ember Media Manager (Official Thread) - DanCooper - 2013-02-21 (2013-02-21, 17:33)deh2k7 Wrote: I have a fix request for the next version. Can someone take a look at multi-disc file-stacking and file recognition? XBMC is now able to recognize movie nfos and artwork without the disc, part, cd, etc indicators:This I have already fixed for the next release. RE: New Home for Ember Media Manager (Official Thread) - voip-ninja - 2013-02-21 (2013-02-20, 02:39)Randall Lind Wrote:(2013-02-20, 02:20)voip-ninja Wrote:(2013-02-20, 01:53)Randall Lind Wrote: You need to run art download program but, fist set it to skin download folder. That way it look in your folders for art. I think I might have sorted it out. Bizarrely what was required is to go into the Artwork Download plugin and then set the option "use local files". I have no idea what this does, but clear-art, etc, started showing after I made this change and re-ran artwork downloader against my TV share.... I'm guessing that it downloads all of the art and stuffs it on a local hard drive of the PC with XBMC on it. RE: AW: New Home for Ember Media Manager (Official Thread) - deh2k7 - 2013-02-21 (2013-02-21, 18:09)DanCooper Wrote:(2013-02-21, 17:33)deh2k7 Wrote: I have a fix request for the next version. Can someone take a look at multi-disc file-stacking and file recognition? XBMC is now able to recognize movie nfos and artwork without the disc, part, cd, etc indicators:This I have already fixed for the next release. Thanks Dan! As always, your hard work is greatly appreciated. Do you have a rough timeframe that you have in mind for the next release? RE: New Home for Ember Media Manager (Official Thread) - Randall Lind - 2013-02-21 (2013-02-21, 18:11)voip-ninja Wrote:(2013-02-20, 02:39)Randall Lind Wrote:(2013-02-20, 02:20)voip-ninja Wrote: But I already have clearart in my series folders, I guess I need to just bite the bullet and look into all the artwork changes Frodo made that I am not aware of yet. I had a strange issue last night. After 4 days of transferring TV Shows to new drives and reloading them all my logo's were missing. I had to set the art down loader to down load off the web to get them back. They were in the folders so no idea why XBMC art download program would not scan them. I had to switch from Aeon to Neon GIT in order to fix it. RE: New Home for Ember Media Manager (Official Thread) - >>X<< - 2013-02-21 (2013-02-21, 18:51)Randall Lind Wrote:(2013-02-21, 18:11)voip-ninja Wrote:(2013-02-20, 02:39)Randall Lind Wrote: From my understanding you need to run art download to add them into XBMC and if you go into program setting you can set it to scan folders to add what you have already. I believe default is to download from web changing it to folders and it will scan your hard drive for art. With Frodo you always have to run Artwork downloader even if you have local artwork. You should know this already http://forum.xbmc.org/showthread.php?tid=116941&pid=1306673#pid1306673 RE: New Home for Ember Media Manager (Official Thread) - GreenOnyx - 2013-02-21 @ m.savazzi With the WatTMDB addition from 02/17 (7e11efad9d) I see that we need the two DLL's from your link and the new dependency. Did you just place the dll's in Libraries\Release\ and Libraries\Debug\ for Scraper.EmberCore.TMDB or did you use a different installation method? I simply copied the libraries there but show a RestSharp.xml missing and have some major compile issues. Before I waste a ton of time I was hoping you could tell me if there was a better installation method or anything that's missing in the tree that I'll need. Also, it appears that there's a team foundation link to xeon:8080, seems like this should be removed? RE: New Home for Ember Media Manager (Official Thread) - RockDawg - 2013-02-21 Just want to shoot out a reminder about adding .png support. Being that Ember doesn't recognize them, it is always downloading new posters for my movies and then I have to delete them. |