[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 - wo0d1e - 2012-10-11 (2012-10-11, 14:24)lallhands Wrote:(2012-10-10, 19:12)lallhands Wrote: Thanks for the feedback Giftie, I'm glad the logs helped. In your experience, is there a preferred way to disable the progress dialogs? I'd like to do that anyway as I find them distracting and I want to test this on various platforms and builds. Same error I get before it restarts. Thank god it isn't just me then. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2012-10-12 (2012-10-11, 14:24)lallhands Wrote:(2012-10-10, 19:12)lallhands Wrote: Thanks for the feedback Giftie, I'm glad the logs helped. In your experience, is there a preferred way to disable the progress dialogs? I'd like to do that anyway as I find them distracting and I want to test this on various platforms and builds. You shouldn't be able to affect the Progress Dialog of the script by adjusting the settings in the advanced settings anyways, I think that is the Buffering/Busy dialog. The script opens the dialog on it's own. To disable the progress Dialog in the script you will need to edit a few lines in the script(any text editor should do) Lines 267-269 look like this: Code: pDialog = xbmcgui.DialogProgress() Code: #pDialog = xbmcgui.DialogProgress() Also line 293 Code: pDialog.close() Code: #pDialog.close() Code: pDialog.update( -1, _L_( 32510 ) ) Code: #pDialog.update( -1, _L_( 32510 ) ) Code: pDialog.update( -1, _L_( 32511 ) ) Code: pDialog.update( -1, _L_( 32511 ) ) Code: pDialog.update( 50 ) Code: #pDialog.update( 50 ) Code: pDialog.close() Code: #pDialog.close() Code: pDialog.close() Code: #pDialog.close() You can delete these lines if you want, though it makes it harder for me to trouble shoot as line numbers change between your code and mine. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - wo0d1e - 2012-10-12 (2012-10-12, 03:35)giftie Wrote:(2012-10-11, 14:24)lallhands Wrote:(2012-10-10, 19:12)lallhands Wrote: Thanks for the feedback Giftie, I'm glad the logs helped. In your experience, is there a preferred way to disable the progress dialogs? I'd like to do that anyway as I find them distracting and I want to test this on various platforms and builds. "Lallhands" are you able to confirm if Gifties wisdom has paid off. If so would you mind sharing how you changed the script and how you go to it. I'd be forever in your debt. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - lallhands - 2012-10-12 I will try today. Thanks for the insight Gifite. I will post my results this evening. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - lallhands - 2012-10-12 Giftie, I commented out those lines and triple checked to make sure I had them right. Now it seems to progress a bit further before crashing (i.e. the selected movie shifts one to the right on the acreen now) but xbmc crashes in the same manner. Posting logs again and a video this time. xbmc log http://pastebin.com/gXPmZV93 /var/log/messages http://pastebin.com/xDrP3Usw Video of crash http://youtu.be/crZG5FnvWlk Thanks for your help with this. All of the Openelec users that use your script will be very happy to have it back. I will post our findings in the user forums there once we crack this nut. Cheers, Larry RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - lallhands - 2012-10-13 Openelec 1.99.2 released yesterday, still having same issue after the KERNEL and SYSTEM update from 1.99.1 to 1.99.2... RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - Burke - 2012-10-13 Just a quick question... I am using HD-Trailers.Net Downloader to download trailers to use with cinema experience. Right now it is setup to make folder for each trailer. If all my trailers were in one folder (not separate ones for each trailer) would that be a problem for Cinema experience? Thanks RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - wo0d1e - 2012-10-13 (2012-10-13, 10:11)Burke Wrote: Just a quick question... If its any help I have all of my trailers download from HD- Trailers.net to one folder and set it to auto delete items older than 30 days. I have CE run two random trailers from the one folder full of trailers and have never had any issues. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - barcoboy - 2012-10-13 (2012-10-12, 21:50)lallhands Wrote: Thanks for your help with this. All of the Openelec users that use your script will be very happy to have it back. I will post our findings in the user forums there once we crack this nut.Nearly the same thing is happening in Windows, except that the PC doesn't reboot, XMBC crashes hard and has to be killed. But the crash occurs in exactly the same spot. In my case though (Windows XP SP3), if I turn off trailer downloading and use streaming mode, the crash does not occur. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - Kokonutcreme - 2012-10-15 (2012-10-11, 13:18)lallhands Wrote:(2012-09-30, 01:23)giftie Wrote:(2012-09-29, 19:03)wints Wrote: Hi are you using nightly builds of XBMC? Cinema Experience only stopped working for me when I upgraded past the Alpha 4 release of Frodo. Skipped Alpha 5 so not sure if it works in that release but it works flawlessly for me when I roll back to Alpha 4 so CE will work in Frodo to a certain point. I don't stream trailers, I download them through the Trailers addon and playback through CE via local folder. (2012-10-13, 10:11)Burke Wrote: Just a quick question... No, all my trailers are downloaded and saved to a single folder and CE works fine. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - Burke - 2012-10-15 Thank you guys for your replays RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - felixxx999 - 2012-10-16 can someone point me in the right direction?? I have Cinema experience working... I get past the trailers, Feature presentation video, audio video, then the movie doesn't actually play. Skips right to the Movie Theater outro video... what setting am I setting wrong? Also, I'd like to use the MPAA ratings... should I actually use videos or jpgs... can someone point me toward whre I might find the ratings videos.... Using the latest stable XBMC for windows (11, I believe) and I"m using CE downloaded from here: http://code.google.com/p/xbmc-addons/wiki/CinemaExperienceIntro RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - sarakha63 - 2012-10-16 had the same issue, just copy the latest version from github and it will solve the issue REQUEST FEATURE : could it be possible, to have an option to not use trailers for movies in a specific folder ? (to avoid having trailers of my anime for example, but i d'ont want to filter trailers by the genre of the movie i watch) BUG FEATURE : the don't show trailers for watched movies does'nt work Thanks Re: RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - giftie - 2012-10-16 (2012-10-16, 06:13)felixxx999 Wrote: can someone point me in the right direction?? Use the version posted on this thread, see the first page. RE: [RELEASE] Cinema Experience - the new Home Theater Experience Script - felixxx999 - 2012-10-17 thanks guys... doah... now if I could find some more movie clips to use.... |