Poll: Most Desired Feature To Be Added
You do not have permission to vote in this poll.
Other Movie Ratings
5.45%
Download Movie Trailers
28.04%
Home Automation scripting
24.22%
Other Movie Streaming Location
9.04%
Trivia Intro Fixed
11.24%
Cartoon Video Option
14.72%
More Videos for before Feature(s) - Specify how many
7.30%
Total
863 vote(s)
100%
* You voted for this item.

  • 1
  • 230
  • 231
  • 232(current)
  • 233
  • 234
  • 285
[RELEASE] Cinema Experience - the new Home Theater Experience Script
(2014-01-29, 18:17)giftie Wrote: Depends where in the world you live. Smile. No, it doesn't matter, you will still have to look up the folder when adjusting the settings.

awesome, will get to work on it
Intel NUC DC3217IYE, 8GB Corsair RAM, Crucial 120GB mSATA, Windows 8.1 - XBMC Jarvis 16.1 - Aeon MQ 7, JVC HD-550 Projector, Beamax M Series 10015 Screen, Synology DS1812+, Qnap TS-410, Logitech Harmony Ultimate, Flirc+ USB dongle

Image
Reply
Is there any way to jump to the audio or countdown video when the script is running? It takes 3-5 min to make popcorn and I'd like to have an option to stop trailers and start the movie after that. Sure I could just stop and play but then I miss audio and countdown. Those I would not want to skip. Could eventghost be set to make this work?
Current setup
HTPC: G4560 Kaby Lake, ASRock H110M-ITX, 8 GB, Win10
Server: G2120 Ivy Bridge, ASRock B75 Pro3-M, 8 GB, 22 TB HDD, Ubuntu 16.04.5 LTS
Audio&Visual: Marantz NR-1602, Dali Opticon 6 5.1, SVS PB12-NSD, Sony KD-65A1
Reply
(2014-01-29, 18:34)litfoo Wrote:
(2014-01-29, 18:17)giftie Wrote: Depends where in the world you live. Smile. No, it doesn't matter, you will still have to look up the folder when adjusting the settings.

awesome, will get to work on it

Have started to make some progress now, having assigned the correct folders in the settings menus etc. Smile

It is working now, but I do notice that when I select a movie from my movie wall /movie showcase view , it skips to the next movie/cover before initiating the CE script, which in my case is Trivia

Why is this movie cover skipping behaviour taking place and how can I remove it please?
Intel NUC DC3217IYE, 8GB Corsair RAM, Crucial 120GB mSATA, Windows 8.1 - XBMC Jarvis 16.1 - Aeon MQ 7, JVC HD-550 Projector, Beamax M Series 10015 Screen, Synology DS1812+, Qnap TS-410, Logitech Harmony Ultimate, Flirc+ USB dongle

Image
Reply
(2014-01-30, 18:46)litfoo Wrote:
(2014-01-29, 18:34)litfoo Wrote:
(2014-01-29, 18:17)giftie Wrote: Depends where in the world you live. Smile. No, it doesn't matter, you will still have to look up the folder when adjusting the settings.

awesome, will get to work on it

Have started to make some progress now, having assigned the correct folders in the settings menus etc. Smile

It is working now, but I do notice that when I select a movie from my movie wall /movie showcase view , it skips to the next movie/cover before initiating the CE script, which in my case is Trivia

Why is this movie cover skipping behaviour taking place and how can I remove it please?

It is a behavior of XBMC queueing processes. I have provided skin developers another method. It is posted in the wiki under skin integration.
Reply
Am using the Aeon Nox skin.

So unless they change this in the skin design/integration, I have to put up with it?
Intel NUC DC3217IYE, 8GB Corsair RAM, Crucial 120GB mSATA, Windows 8.1 - XBMC Jarvis 16.1 - Aeon MQ 7, JVC HD-550 Projector, Beamax M Series 10015 Screen, Synology DS1812+, Qnap TS-410, Logitech Harmony Ultimate, Flirc+ USB dongle

Image
Reply
(2014-01-30, 19:28)litfoo Wrote: Am using the Aeon Nox skin.

So unless they change this in the skin design/integration, I have to put up with it?

I am a little doubtful that it will get changed anytime soon...

you can change it yourself..

In the file DialogVideoInfo.xml(found in the folder skin.aeon.nox/1080i) you will find this code around line 1437

Code:
<control type="button" id="20">
                        <label>$LOCALIZE[31284]</label>
                        <include>DialogVideoInfoButton</include>
                        <onclick>Playlist.Clear</onclick>
                        <onclick>Dialog.Close(MovieInformation)</onclick>
                        <onclick>RunScript(script.cinema.experience)</onclick>
                        <visible>Container.Content(Movies) + system.hasaddon(script.cinema.experience) + !SubString(Container.FolderPath,plugin)</visible>
                    </control>

Change it to this:

Code:
<control type="button" id="20">
                        <label>$LOCALIZE[31284]</label>
                        <include>DialogVideoInfoButton</include>
                        <onclick>Playlist.Clear</onclick>
                        <onclick>Dialog.Close(MovieInformation)</onclick>
                        <onclick>XBMC.RunScript(script.cinema.experience,movieid=$INFO[ListItem.DBID])</onclick>
                        <visible>Container.Content(Movies) + system.hasaddon(script.cinema.experience) + !SubString(Container.FolderPath,plugin)</visible>
                    </control>
Only one line change really..
Code:
<onclick>XBMC.RunScript(script.cinema.experience,movieid=$INFO[ListItem.DBID])</onclick>
in place of
Code:
<onclick>RunScript(script.cinema.experience)</onclick>

The original method has the script queueing from the Movie list(causing the jump to the next movie). The new method causes the script to grab the movie from the library(no jumping)
Reply
Thanks again giftie. Will make the code change.
Intel NUC DC3217IYE, 8GB Corsair RAM, Crucial 120GB mSATA, Windows 8.1 - XBMC Jarvis 16.1 - Aeon MQ 7, JVC HD-550 Projector, Beamax M Series 10015 Screen, Synology DS1812+, Qnap TS-410, Logitech Harmony Ultimate, Flirc+ USB dongle

Image
Reply
(2014-01-28, 23:53)giftie Wrote:
(2014-01-28, 23:16)JCole Wrote: So I just installed the Jan. 27th nightly of XBMC Gotham, and the latest test version of CE as listed in the first post of this thread (4.0.7)

When I go to run the script via Movie info, then "cinema" button, I get the movie menu where it jumps to the next item in the library. Nothing plays,

I have included a pastebin here:

http://pastebin.com/pwVwxp0j

Ive had this issue before when I first started using CE, but that was a couple years ago, and it's been rock solid since then so I forget how I fixed it.

One of your slide folders/files has a non-ascii character. try this version.

https://www.dropbox.com/s/gpxg1uqz1v5zvw...-4.0.8.zip

Thank you sir. This got the script running, however it introduced something strange and possibly related.

I have my slides folder with two subfolders. "trivia" and "Stills". These are done by Scott F. over at avsforum. The trivia has the usual question slide then answer slide and works fine. However since updating xbmc and now getting the script running, CE will not display anything from the "stills" folder. Any idea why this might be ?

Not sure if a log file is required for this.
Reply
So I've just got this all setup and running, and it's almost perfect for what I want. However, I was wondering whether it is possible to mix trailer sources such that I get X number of trailers from my local connection and Y number from an external source (i.e. some online source)?

I've tried having a google but I haven't come across anything useful.
Reply
(2014-01-31, 03:30)JCole Wrote:
(2014-01-28, 23:53)giftie Wrote:
(2014-01-28, 23:16)JCole Wrote: So I just installed the Jan. 27th nightly of XBMC Gotham, and the latest test version of CE as listed in the first post of this thread (4.0.7)

When I go to run the script via Movie info, then "cinema" button, I get the movie menu where it jumps to the next item in the library. Nothing plays,

I have included a pastebin here:

http://pastebin.com/pwVwxp0j

Ive had this issue before when I first started using CE, but that was a couple years ago, and it's been rock solid since then so I forget how I fixed it.

One of your slide folders/files has a non-ascii character. try this version.

https://www.dropbox.com/s/gpxg1uqz1v5zvw...-4.0.8.zip

Thank you sir. This got the script running, however it introduced something strange and possibly related.

I have my slides folder with two subfolders. "trivia" and "Stills". These are done by Scott F. over at avsforum. The trivia has the usual question slide then answer slide and works fine. However since updating xbmc and now getting the script running, CE will not display anything from the "stills" folder. Any idea why this might be ?

Not sure if a log file is required for this.

Strange... Do you happen to have 'Limit Trivia By Rating of Movie' Enabled? if you do, that would require a slides.xml in the stills folder to play them.

(2014-01-31, 03:41)MikeInBelize Wrote: So I've just got this all setup and running, and it's almost perfect for what I want. However, I was wondering whether it is possible to mix trailer sources such that I get X number of trailers from my local connection and Y number from an external source (i.e. some online source)?

I've tried having a google but I haven't come across anything useful.

At the moment, this is not possible to do. It may be a feature that is added in the future
Reply
Just checking:

In the Sequence Overview here:

‘Rating video’ at Step 9 – will this look up the rating of the movie from the .nfo and play the corresponding rating video that I have in my BBFC or MPAA folder – what is the expected behaviour please?

And also with ‘Audio Format Video’ at step 10 - will this look up the rating of the movie from the .nfo and play the corresponding rating video that I have in my Videos\Audio\ folder – what is the expected behaviour please?

Thanks

litfoo
Intel NUC DC3217IYE, 8GB Corsair RAM, Crucial 120GB mSATA, Windows 8.1 - XBMC Jarvis 16.1 - Aeon MQ 7, JVC HD-550 Projector, Beamax M Series 10015 Screen, Synology DS1812+, Qnap TS-410, Logitech Harmony Ultimate, Flirc+ USB dongle

Image
Reply
(2014-02-03, 12:48)litfoo Wrote: Just checking:

In the Sequence Overview here:

‘Rating video’ at Step 9 – will this look up the rating of the movie from the .nfo and play the corresponding rating video that I have in my BBFC or MPAA folder – what is the expected behaviour please?

litfoo

I always wanted to know this as well. I thought I had read everything there is to read about this awesome plug-in but I don't think I've ever seen how this works really. I know I seem to be getting the wrong MPAA rating very often though. I very naively thought it was reading it off the stream...Big Grin
If it is off the .nfo, what happens if there is none to be read? May be that is my problem.

Also, another quick one. Is Cinema Experience Gotham compatible now? (Well, at least with Alpha?).

Thanks.
Intel Core i7 3.3Ghz | GTX 1660 | Windows 1909 | 8GB | 32TB RAID1
138" 2.35:1 Elite Lunette Curved Screen | Epson 6050ub Projector | Marantz SR-6014 | Emotiva XPA-11
Reply
That's how it should work, yeah. you need to make sure the folders are named correctly for the audio formats or it will skip them entirely though. the format names are case sensitive.

(2014-02-03, 12:48)litfoo Wrote: Just checking:

In the Sequence Overview here:

‘Rating video’ at Step 9 – will this look up the rating of the movie from the .nfo and play the corresponding rating video that I have in my BBFC or MPAA folder – what is the expected behaviour please?

And also with ‘Audio Format Video’ at step 10 - will this look up the rating of the movie from the .nfo and play the corresponding rating video that I have in my Videos\Audio\ folder – what is the expected behaviour please?

Thanks

litfoo
Reply
I'm having issues with the addon, I had it working initially just showing the rating video, and that worked 100%
I decided to add in trailers, and the movie quiz, and those work fine, but now the ratings video isn't playing.
my set up is, XBMCbuntu, with the files living on a freenas box accessed over SMB
the library database is on another machine in mySQL, as i have a few xbmc boxes around the place.

anyone got any idea why the ratings video would fail to play? the file permissions are fine, as i can play them if i browse to them in the file manager.

debug log is here: http://pastebin.com/WmCT8a2K
Reply
update to my last post, i now have ratings videos playing, i downloaded the "colours" videos from CE slides and trivia, and they fail to play, despite being in the same naming convention, but the original files have which were avi files, play fine. i guess i'll try converting the colours files to avi next, see if i can get them to play
Reply
  • 1
  • 230
  • 231
  • 232(current)
  • 233
  • 234
  • 285

Logout Mark Read Team Forum Stats Members Help
[RELEASE] Cinema Experience - the new Home Theater Experience Script24