Kodi Community Forum
[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)



- Limx - 2011-02-27

Don't know if there is a difference because I'm living in Germany and here it is the FSK
(Freiwillige Selbstkontrolle der Filmwirtschaft) with 0 - 6 - 12 - 16 - 18 years...

Looks like:
http://upload.wikimedia.org/wikipedia/commons/7/7a/FSK_Ratings_Dec_2008.gif


- TomPiXX - 2011-02-27

Limx Wrote:Hmmm... Mpaa rating for Astro Boy: PG
Don't know the rating for the Fast n Furious trailer, but I think higher Wink

Maybe some of my settings are not correct...

---

Other idea for german trailer is youtube Wink (like http://www.youtube.com/user/KinotrailerDE ) - but there isn't a mpaa rating.

Youtube Trailer suck


- giftie - 2011-02-27

Limx - When you look at the movie info page for your movies how does is it rated? At the moment the script only supports MPAA for trailer ratings(through the Apple Movie Trailer script and the streaming option in settings) It handles MPAA and BBFC for the rating video.

I think the Apple Movie Trailer site only uses MPAA ratings(though I could be wrong) but getting close to the same ratings shouldn't be too hard...


- Limx - 2011-02-27

ok, but moviemaze offers a lot of (high quality) trailers in german (and also english) - there also is an other plugin (Moviemazer), which could scrape the site - but this Addon doesn't download the trailers

Best would be a way to set up a own scraper, but this is beyond my capabilities ... (I think).

The standard RSS feed looks like:

Trailer zu "Madea's Big Happy Family"
Länge: 1.35 Minuten Sprache: en

### could be filtered by language (no idea if there is also an mmpa filter)

+++ After opening the link (title), the page is like following:
http://www.moviemaze.de/media/trailer/6327,madeas-big-happy-family.html#11326

### could be filtered by resolution

+++ HTML says:

<a href="/media/trailer/view/58930/9553dbf42e07b0c35697d4c31617d03c/6327_trailer02-en_1920.mov" target="_blank" title="Trailer 2 (1920x1036) zu Madeas Big Happy Family ansehen" rel="nofollow"><img src="http://cdn2.mm-static.de/media/trailer/grafiken/new_view.gif" width="15" height="15" border="0" alt="Trailer 2 (1920x1036) zu Madeas Big Happy Family ansehen"></a>

EDIT
-----------------
MORE easy than I first thought:
just replace the /media/trailer/view with delivery and there it is - skiping one page Smile
-----------------
/EDIT

+++ Next page is:
http://www.moviemaze.de/media/trailer/view/58930/9553dbf42e07b0c35697d4c31617d03c/6327_trailer02-en_1920.mov

+++ says:
Code:
<td align="center" style="padding: 20px 30px 20px 30px;"><object width="1920" height="1052" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="controller" value="true"><param name="autoplay" value="true"><param name="target" value="myself"><param name="pluginspage" value="http://www.apple.com/quicktime/download/"><param name="src" value="/media/trailer/delivery/58930/9553dbf42e07b0c35697d4c31617d03c/makeplaylist.dll"><param name="volume" value="100"><embed width="1920" height="1052" volume="100" controller="true" target="myself" autoplay="true" src="/media/trailer/delivery/58930/9553dbf42e07b0c35697d4c31617d03c/makeplaylist.dll" bgcolor="#000000" border="0" pluginspage="http://www.apple.com/quicktime/download/"></object></td>

### Hello again apple Wink
### .dl Huh

But a german source ( http://www.moviemaze.de/media/trailer/view/58780/72305ab8d0adf29a696fe66689eef1cf/3043_trailer02-de_720.mov ) says:

Code:
<td align="center" style="padding: 20px 30px 20px 30px;"><object width="720" height="450" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="controller" value="true"><param name="autoplay" value="true"><param name="target" value="myself"><param name="pluginspage" value="http://www.apple.com/quicktime/download/"><param name="src" value="/media/trailer/delivery/58780/72305ab8d0adf29a696fe66689eef1cf/dark-ride_trailer02-de_xhigh.mov"><param name="volume" value="100"><embed width="720" height="450" volume="100" controller="true" target="myself" autoplay="true" src="/media/trailer/delivery/58780/72305ab8d0adf29a696fe66689eef1cf/dark-ride_trailer02-de_xhigh.mov" bgcolor="#000000" border="0" pluginspage="http://www.apple.com/quicktime/download/"></object></td>

There it is: http://www.moviemaze.de/media/trailer/delivery/58780/72305ab8d0adf29a696fe66689eef1cf/dark-ride_trailer02-de_xhigh.mov

Seems simple Wink
1. Scrape the Rss-feed of moviemaze for newest movies
2. look for language and if selected (de Wink ) scrape next link
3. look for best (selected) resolution (in selected language table - because the page shows all available languages and often more than one version of the trailer) and scrape next link
( 4. look for the .mov file and stream / download it ) - just replace view with delivery and the 4. isn't needed any longer.

Maybe I could do a script in perl, but there are much better scripter out there Wink


Double Feature! - jitterjames - 2011-02-27

Thanks a lot to Giftie for adding all my customizations to this plugin. The results are pretty sweet!


Here's VoxCommando requesting a double feature. (the skin is Aeon MQ2).

http://www.youtube.com/watch?v=FmahXi-p46U



Thanks also Auri for telling me about "Cinema Experience" in the first place.


- Limx - 2011-02-27

Astro Boy is rated by xbmc as PG

The first trailer was Fast and Furious (5?) and the second one Thor...
Don't find any rating yet, so the script may work perfectly?!

http://trailers.apple.com/trailers/paramount/thor/
http://trailers.apple.com/trailers/universal/fastfive/

Where is the rating located?


- giftie - 2011-02-27

jitterjames Wrote:Thanks a lot to Giftie for adding all my customizations to this plugin. The results are pretty sweet!


Here's VoxCommando requesting a double feature. (the skin is Aeon MQ2).

http://www.youtube.com/watch?v=FmahXi-p46U



Thanks also Auri for telling me about "Cinema Experience" in the first place.

Looks awesome...


- giftie - 2011-02-27

Limx Wrote:Astro Boy is rated by xbmc as PG

The first trailer was Fast and Furious (5?) and the second one Thor...
Don't find any rating yet, so the script may work perfectly?!

http://trailers.apple.com/trailers/paramount/thor/
http://trailers.apple.com/trailers/universal/fastfive/

Where is the rating located?

Both those are Not Rated Yet(ie NR) which is technically lower than PG to the script.


- Limx - 2011-02-27

giftie Wrote:Both those are Not Rated Yet(ie NR) which is technically lower than PG to the script.

Ahhhh, ok Smile - in the future there may should be an option (for family xbmc) to disable not rated trailers (for myself I don't need it for now) or even set it to a higher level.

edit x)
by the way: SUPER Addon!!! Big Grin


- giftie - 2011-02-27

Limx Wrote:Ahhhh, ok Smile - in the future there may should be an option (for family xbmc) to disable not rated trailers (for myself I don't need it for now) or even set it to a higher level.

edit x)
by the way: SUPER Addon!!! Big Grin

Actually if you use the Trailer Scraper Newest or Database, you have the option of controlling the Ratings.

I'll double check to see where NR falls in the MPAA list.

Actually Not Yet Rated is the Highest level.


- Victim - 2011-02-27

Is it possible for you to hide them "Loading" popups between trailers and videos when using this script? Similar to the way TVThemes hides the "Now Playing" popup?


- rflores2323 - 2011-02-27

rflores2323 Wrote:here you go..

log

old log

crashed everytime I tried to run the script. Will try to refresh the repo and see if the latest one fixes it. see my logs however just in case.

updated to 1.0.30 and the below logs are from new version.

ok on this one it played the intro once and movie started.. then I exited and tried another movie and it crashed. log

this one just crashed old log

BTW I only have one intro playing.. thats it.

Anything on why my setup is crashing.


- giftie - 2011-02-27

rflores2323 Wrote:Anything on why my setup is crashing.

Still trying to figure out why(wish I had another ATV2 to test) I do see some Errors regarding a couple of movies

Code:
23:49:22 T:169406464 M:109285376 WARNING: could not find codec parameters for smb://XBMC-DESKTOP/ext drive 2/XBMC Movies 2/El cártel (2009) dvd/El cártel .dvd.bin
Code:
23:51:07 T:195641344 M:176803840   ERROR: Open - Error, could not open file rar://smb%3a%2f%2fXBMC%2dDESKTOP%2fext%20drive%202%2fXBMC%20Movies%202%2fThe%2eUgly%2eTruth%2eBRRip%2eXviD%2eAC3%2dDEViSE%2fdevise%2dtutbr%2erar/devise-tutbr.avi
Code:
23:51:40 T:195641344 M:171290624   ERROR: Open - Error, could not open file rar://smb%3a%2f%2fXBMC%2dDESKTOP%2fext%20drive%202%2fXBMC%20Movies%202%2fThe%2eTaking%2eOf%2ePelham%2e123%2e2009%2e720p%2eBRRip%2eXviD%2eAC3%2dViSiON%2fThe%2eTaking%2eOf%2ePelham%2e123%2e2009%2e720p%2eBRRip%2eXviD%2eAC3%2dViSiON%2epart01%2erar/The.Taking.Of.Pelham.123.2009.720p.BRRip.XviD.AC3-ViSiON.avi
Code:
23:52:36 T:194879488 M:109010944   ERROR: Open - Error, could not open file rar://smb%3a%2f%2fXBMC%2dDESKTOP%2fext%20drive%202%2fXBMC%20Movies%202%2fThe%2eUgly%2eTruth%2eBRRip%2eXviD%2eAC3%2dDEViSE%2fdevise%2dtutbr%2erar/devise-tutbr.avi

Not sure if these are causing a problem or not...


- giftie - 2011-02-27

Victim Wrote:Is it possible for you to hide them "Loading" popups between trailers and videos when using this script? Similar to the way TVThemes hides the "Now Playing" popup?

These pop ups are the buffering notifications. I don't think that they are able to be hidden(except by removing the xml file from the skin.)


- no clue - 2011-02-27

When my intros are playing before the movie, I am getting an audio lag on each one. It generally starts the audio after about 2-3 seconds of the video. Not very good considering many of the clips are only 10-20 seconds anyway. Anything I can change to fix this?