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
  • 13
  • 14
  • 15(current)
  • 16
  • 17
  • 285
[RELEASE] Cinema Experience - the new Home Theater Experience Script
chunk1982 Wrote:may i be as bold as to request 1 feature to be added please
to add a option called countdown and for that to be the VERY LAST THING to be played before the movie starts

many thanks

paul

Sounds like a good idea since there is no real other place a countdown could be placed.

Giftie/Nuka,
Is adding another item into the playlist a simple process or a chore to do?
Main - Intel E6750 C2D (2.66ghz)/Geforce 240
Bedroom - Intel E3300 C2D (2.5ghz)/Geforce 210
Guest Bedroom - Acer Revo 1600/ION LE
Test Desktop - Intel Q9300 C2Q (2.5ghz)/Geforce 9600 GSO
Reply
I have a request as well.......

Is there anyway to script a fade of music at the end of the trivia section?

At the moment when the 5 mins is up it abruptly cuts to coming attractions intro and doesnt fit nicely??
Reply
the new version, that i posted screenshots to give an idea would allow any manner of videos/pictures in any order.

but adding a new one wouldn't be too difficult. giftie do you want to continue to upgrade this version or move to a more compatible version?

fading music could be done with a simple function if there isn't an xbmc builtin already to do it.

i'll whip something up giftie can include, sounds reasonable to have.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
Nuka1195 Wrote:the new version, that i posted screenshots to give an idea would allow any manner of videos/pictures in any order.

but adding a new one wouldn't be too difficult. giftie do you want to continue to upgrade this version or move to a more compatible version?

fading music could be done with a simple function if there isn't an xbmc builtin already to do it.

i'll whip something up giftie can include, sounds reasonable to have.

no new sections of video/pics needed, all i wanted was the trivia music to fade.... hope i explained that okay?

if the new version is relatively bug free, then it would be perfect sense to move to that! Does it no longer require a XBMC patch?
Reply
I think Nuka was answering both chunk1982 and your requests in the same post icky.
Main - Intel E6750 C2D (2.66ghz)/Geforce 240
Bedroom - Intel E3300 C2D (2.5ghz)/Geforce 210
Guest Bedroom - Acer Revo 1600/ION LE
Test Desktop - Intel Q9300 C2Q (2.5ghz)/Geforce 9600 GSO
Reply
the new version either requires patches or someone to find a way to make the settings work. the current xbmc settings are too limited to have the options the way i want. the othe issue i think can work in dharma as is.

i understood. the new function would simply be a loop and slowly setting the volume lower. the other answer was for the previous question.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
Nuka1195 Wrote:the new version either requires patches or someone to find a way to make the settings work. the current xbmc settings are too limited to have the options the way i want. the othe issue i think can work in dharma as is.

i understood. the new function would simply be a loop and slowly setting the volume lower. the other answer was for the previous question.

Well i dont mind a patch or two!
Reply
How do i get an updated version of cinema experience i tried upgrading to the xbmc 10 and no dice still pushes the volume to -54db and have to move it back to 0.0 is there a new link or an update that i can just do directly from xbmc
thanks much
Reply
commoman81 Wrote:How do i get an updated version of cinema experience i tried upgrading to the xbmc 10 and no dice still pushes the volume to -54db and have to move it back to 0.0 is there a new link or an update that i can just do directly from xbmc
thanks much

Actually this does seem like this is happening. I do not remember this happening in 1.0.2 and RC2. I am running 1.0.4 of the script and XBMC 10 and it definately does now. I am not sure if the upgrading of the script or upgrading to XBMC did this. When starting a trivia slideshow with music of any kind it drops the volume all the back. you can raise it manually while music is playing but once the slideshow is over it drops back to -54db when any oher videos start.

Rolling back to RC2 did not fix the issue. So I am guessing something happened in the script when going to 1.0.4? Any ideas from the devs? Or can I get a copy of 1.0.2 or 1.0.3 to test with?
Main - Intel E6750 C2D (2.66ghz)/Geforce 240
Bedroom - Intel E3300 C2D (2.5ghz)/Geforce 210
Guest Bedroom - Acer Revo 1600/ION LE
Test Desktop - Intel Q9300 C2Q (2.5ghz)/Geforce 9600 GSO
Reply
Yeah that is what exactly happens so does it not happen to 1.0.4 or still happens to you? But really other then this happening the script is awesome, I also have some slide shows that i did my self not sure how to add pictures maybe just email this to you and u can upload it for others but really looks pretty professional.

Thanks,
Reply
increase the volume on start screen and then launch cinema experience..... did the trick for me Smile

and is loud everytime now Smile
Reply
Awesome I will try that thanks a lot Big Grin
Reply
PHP Code:
def _fade_volumeselfout=True ):
        
# set initial start/end values
        
volumes range0self.settings"slideshow_music_volume" ] )
        
# if fading out reverse order
        
if ( out ):
            
volumes.reverse()
        
# loop thru and set volume
        
for volume in volumes:
            
xbmc.executebuiltin"XBMC.SetVolume(%d)" % ( volume, ) )
            
# sleep FIXME: play with the time, maybe have a percentage of the diff between start and end
            
xbmc.sleep10 )
        
# set the volume back to original
        
xbmc.executebuiltin"XBMC.SetVolume(%s)" % ( self.current_volume, ) ) 

here's the code. i notice in this version volume is set differently. the new version the setting is the actual volume you want in db. this is a percentage, so i suggest changing this versions settings to be the actual volume you want the music to play at for the slideshow.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
icky Wrote:increase the volume on start screen and then launch cinema experience..... did the trick for me Smile

and is loud everytime now Smile

It is broken for me now as well! had 3 hours today where it stayed at normal volume everytime, last night it was muted all the time and it is now playing up again!!! GRRRR!! LOL
Reply
Nuka1195 Wrote:
PHP Code:
def _fade_volumeselfout=True ):
        
# set initial start/end values
        
volumes range0self.settings"slideshow_music_volume" ] )
        
# if fading out reverse order
        
if ( out ):
            
volumes.reverse()
        
# loop thru and set volume
        
for volume in volumes:
            
xbmc.executebuiltin"XBMC.SetVolume(%d)" % ( volume, ) )
            
# sleep FIXME: play with the time, maybe have a percentage of the diff between start and end
            
xbmc.sleep10 )
        
# set the volume back to original
        
xbmc.executebuiltin"XBMC.SetVolume(%s)" % ( self.current_volume, ) ) 

here's the code. i notice in this version volume is set differently. the new version the setting is the actual volume you want in db. this is a percentage, so i suggest changing this versions settings to be the actual volume you want the music to play at for the slideshow.

Where does this code go Nuka or is it strictly for giftie to add into the script??

If its a copy and paste job i think i am capable of doing that! Laugh
Reply
  • 1
  • 13
  • 14
  • 15(current)
  • 16
  • 17
  • 285

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