[RELEASE] Cinema Experience - the new Home Theater Experience Script - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: [RELEASE] Cinema Experience - the new Home Theater Experience Script (/showthread.php?tid=87563) 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
|
RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - dezblack - 2014-04-15 I am on a gotham nightly RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2014-04-15 (2014-04-15, 18:34)dezblack Wrote: I am on a gotham nightly Then you can add the following to the home_automation.py file(that exists in your userdata/addon_data/script.cinema.experience folder) insert after line 15: Code: if sys.version_info < (2, 7): Then replace the movie trigger with: Code: elif trigger == "Movie" and ha_settings[ "ha_movie" ]: You are then able to create events based on the actual screen format. Eventghost will see "CE_Automate<li>3D_Mode_Event<xxxx>" with 'xxxx' representing the stereoscopic mode of XBMC's video screen. You may need to add some more delay before the query, as XBMC may need some time to switch modes, xbmc.sleep(250) provides 250ms of delay, playing around with this time(in milliseconds) will allow you to fine tune the delay. None of this is tested, though I took most of the code from my personal 3D Mode broadcaster - https://github.com/Giftie/service.3dmode_broadcaster. I use this to switch my TV through my control system RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - revned - 2014-04-15 (2014-04-15, 18:25)giftie Wrote:(2014-04-15, 10:22)revned Wrote: Is it possible to let the script play a random movie from the library? Thanks for your answer. Unfortunately I have no idea how to do this Re: RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - dezblack - 2014-04-16 (2014-04-15, 18:57)giftie Wrote:(2014-04-15, 18:34)dezblack Wrote: I am on a gotham nightly Perfect, thank you! Now I need to figure out why my 3d sbs movies have the right eye blacked out when using CE. they work fine when just playing without CE. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - Mungo - 2014-04-16 (2014-04-15, 01:33)Mungo Wrote:(2014-04-14, 19:49)giftie Wrote: Require a full debug log Apologies for the lateness - I was out last night for B-day celebrations. It's weird, and unfortunate - but changing my folder name back to "intro's" to try and reproduce this issue didn't really work. For some reason, it now appears to play all files successfully, where before it didn't - even after going through the gui and putting all the path's back in multiple times. In having said that - the log does still show (for one path at least) the issue I had described, on line 989: http://xbmclogs.com/show.php?id=174960 This path was also what was visible in the GUI (but again, isn't now, when I'm trying to reproduce the issue) Hopefully it's of some help. Otherwise, I'll just try and refrain from using special characters in my paths. Cheers, Mungo RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - inv3ntor - 2014-04-17 Hey guys, running latest stable xbmc12.3, aeon nox skin, windows 7 32bit. Just started using cinema experience yesterday, so far i have everything running fine except the Trailers dont play (and therefore coming attractions intro/outro) Everything else fires off as it should, Theatre intro, feature intro, rating video, audio video, feature outro, intermission, theatre outro. I dont use the trivia options and dont really plan to. I think the reason maybe instead of streaming them, im tying to play them from a local folder. I have it set to "2 trailers", Trailer Scraper: "local folder", and pointed it to the folder i have named "Trailer Scraper" in the cinema experience>videos folder, im using the folder structure shown on the wiki..but it does not show anything for a trailer folder so i just used something logical. (threw it in videos folder, named it what the settings screen calls it "Trailer Scraper" as thats basically true for the rest) I have deselected the 3 limit options underneath. The trailers themselves are .mp4 files with random names. Is there something specific i need to do, or will it simply not play 2 random trailer files from that folder for me? I can think of a workaround but would be nice to get it to work. (workaround would be replace theatre intro folder with contents on feature intro folder, then dump trailers in feature intro folder..of course then i no longer get to see my original theatre intro videos..but it was just the red curtain opening) Re: RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2014-04-17 (2014-04-17, 13:22)inv3ntor Wrote: Hey guys, running latest stable xbmc12.3, aeon nox skin, windows 7 32bit. Do the base name of the file end with -trailer? RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - inv3ntor - 2014-04-17 Thanks mate, that fixed it! RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - DasFa - 2014-04-18 Is there support for DTS-HD HR and Dolby Digital+? If yes wich foldernames do i need? RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2014-04-18 (2014-04-18, 20:40)DasFa Wrote: Is there support for DTS-HD HR and Dolby Digital+? If yes wich foldernames do i need? DTSHD-HR is supported already, the folder name is "DTS-HR" Dolby Digital Plus support needs to be added.. The folder name will be 'Dolby Digital Plus' RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - DasFa - 2014-04-19 (2014-04-18, 22:24)giftie Wrote:(2014-04-18, 20:40)DasFa Wrote: Is there support for DTS-HD HR and Dolby Digital+? If yes wich foldernames do i need? Thank you RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - rmilyard - 2014-04-19 (2014-04-18, 22:24)giftie Wrote:(2014-04-18, 20:40)DasFa Wrote: Is there support for DTS-HD HR and Dolby Digital+? If yes wich foldernames do i need? giftie where does it figure out the sound from? File name or something else? RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2014-04-19 (2014-04-19, 04:25)rmilyard Wrote:(2014-04-18, 22:24)giftie Wrote:(2014-04-18, 20:40)DasFa Wrote: Is there support for DTS-HD HR and Dolby Digital+? If yes wich foldernames do i need? The script uses the stream details stored in the database. These details are only in the database if your .nfo file has the details or the movie has been played once already(a couple of seconds) RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - rmilyard - 2014-04-19 (2014-04-19, 05:10)giftie Wrote:(2014-04-19, 04:25)rmilyard Wrote:(2014-04-18, 22:24)giftie Wrote: DTSHD-HR is supported already, the folder name is "DTS-HR" Been wondering. Seems all my bd .iso files don't detect it. My files are named like The Hangover.iso etc. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2014-04-19 (2014-04-19, 05:18)rmilyard Wrote:(2014-04-19, 05:10)giftie Wrote:(2014-04-19, 04:25)rmilyard Wrote: giftie where does it figure out the sound from? File name or something else? If they haven't be watched, XBMC won't report them correctly(not to the script, or skins) |