2020-07-16, 11:07
(2020-03-02, 14:48)m3ndi Wrote: If anyone wants my pvr mod u can download it here:
https://drive.google.com/file/d/1zPgY66Q...qLmMKiOobD
Images:
Thanks alanon
Download, replace files and reboot
(2020-03-02, 14:48)m3ndi Wrote: If anyone wants my pvr mod u can download it here:
https://drive.google.com/file/d/1zPgY66Q...qLmMKiOobD
Images:
Thanks alanon
(2020-07-16, 11:07)m3ndi Wrote:(2020-03-02, 14:48)m3ndi Wrote: If anyone wants my pvr mod u can download it here:
https://drive.google.com/file/d/1zPgY66Q...qLmMKiOobD
Images:
Thanks alanon
Download, replace files and reboot
(2020-07-14, 08:20)derrgoo123 Wrote:(2019-10-29, 22:57)m3ndi Wrote: For somebody that wants that pvr on eminence 2 modThanks for this. How can I install? I see many of the same files in the build? Thanks
https://drive.google.com/open?id=1qwapwH...ew2yjhKZLT
Only have the issue with the color boxes on main menu, waiting for alanon if he knows how solve it
(2020-04-27, 10:46)PantsOnFire Wrote:(2020-04-20, 09:14)beatmasterrs Wrote:(2020-04-08, 11:18)PantsOnFire Wrote: Hey all,
Dear Alanon,
I do hope everyone is well and safe at the moment.
Dear author:
I was just wondering if there was any plan to include support for ArtistSlideshow add-on in your release? Over on the add-on official thread, the author kindly suggested some modifications I could make to MusicVisalization.xml to resolve, but it resulted in zero background (basically a black background behind the Music OSD (fullscreen)).
With his most recent release (3.1.5) he's configured it to show a warning/splash screen at full screen, directing users to approach skin authors and ask them about support for the add-on (why I'm here ofc) :-D
He suggested : using 2.x version of his AS add-on, modding the MusicVisualization.xml file (of your skin) as a fix. But I think he was taking his best guess, which is appreciated.
But it didn't work, it just shows a black background at fullscreen (playing music).
Have you had much luck with this issue Alanon?
Kind regards.
I've created a pull request on github. If you are familiar with programming, you can also edit the file yourself:
Open MusicVisualisation.xml, search for:
xml:<control type="multiimage">
<aspectratio>scale</aspectratio>
<include>FullscreenDimensions</include>
<timeperimage>10000</timeperimage>
<randomize>true</randomize>
<fadetime>600</fadetime>
<loop>yes</loop>
<imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath>
<visible>Skin.String(MusicVisualisation, artistslideshow)</visible>
<animation effect="fade" start="100" end="65" time="0" condition="Skin.HasSetting(OSDVisualisation.ShowFanart)">Conditional</animation>
<animation effect="zoom" start="110" end="130" center="auto" time="10000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
<animation effect="slide" start="-30,-30" end="30,30" time="6000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
</control>
replace with:
xml:<control type="image">
<aspectratio>scale</aspectratio>
<include>FullscreenDimensions</include>
<fadetime>600</fadetime>
<texture background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow.Image)]</texture>
<visible>Skin.String(MusicVisualisation, artistslideshow) + !String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.Image))</visible>
<animation effect="fade" start="100" end="65" time="0" condition="Skin.HasSetting(OSDVisualisation.ShowFanart)">Conditional</animation>
<animation effect="zoom" start="110" end="130" center="auto" time="10000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
<animation effect="slide" start="-30,-30" end="30,30" time="6000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
</control>
Save the file, reload the skin or restart kodi for changes to take effect.
Hi Beatmasters,
Thanks for the help, I tried the above but I have to be honest i'm still not getting a result.
I went through very carefully and edited the XML as you described.
-- there may be *one* small thing in the way (only thing that I can think of off top my head) --- my music library is hosted remotely (sharing from a raspberry Pi running OSMC) and i'm accessing this content through shared library (uPnP) from that Pi.
But, I still don't think that would be the problem, I think all that kodi cares about is what's playing, as long as the artist and track title are present, AS can do it's job.
really strange how I can't get this sorted.. :-( mus thave tried half a dozen times now.
(2020-04-27, 10:46)PantsOnFire Wrote:(2020-04-20, 09:14)beatmasterrs Wrote:(2020-04-08, 11:18)PantsOnFire Wrote: Hey all,
Dear Alanon,
I do hope everyone is well and safe at the moment.
Dear author:
I was just wondering if there was any plan to include support for ArtistSlideshow add-on in your release? Over on the add-on official thread, the author kindly suggested some modifications I could make to MusicVisalization.xml to resolve, but it resulted in zero background (basically a black background behind the Music OSD (fullscreen)).
With his most recent release (3.1.5) he's configured it to show a warning/splash screen at full screen, directing users to approach skin authors and ask them about support for the add-on (why I'm here ofc) :-D
He suggested : using 2.x version of his AS add-on, modding the MusicVisualization.xml file (of your skin) as a fix. But I think he was taking his best guess, which is appreciated.
But it didn't work, it just shows a black background at fullscreen (playing music).
Have you had much luck with this issue Alanon?
Kind regards.
I've created a pull request on github. If you are familiar with programming, you can also edit the file yourself:
Open MusicVisualisation.xml, search for:
xml:<control type="multiimage">
<aspectratio>scale</aspectratio>
<include>FullscreenDimensions</include>
<timeperimage>10000</timeperimage>
<randomize>true</randomize>
<fadetime>600</fadetime>
<loop>yes</loop>
<imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath>
<visible>Skin.String(MusicVisualisation, artistslideshow)</visible>
<animation effect="fade" start="100" end="65" time="0" condition="Skin.HasSetting(OSDVisualisation.ShowFanart)">Conditional</animation>
<animation effect="zoom" start="110" end="130" center="auto" time="10000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
<animation effect="slide" start="-30,-30" end="30,30" time="6000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
</control>
replace with:
xml:<control type="image">
<aspectratio>scale</aspectratio>
<include>FullscreenDimensions</include>
<fadetime>600</fadetime>
<texture background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow.Image)]</texture>
<visible>Skin.String(MusicVisualisation, artistslideshow) + !String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.Image))</visible>
<animation effect="fade" start="100" end="65" time="0" condition="Skin.HasSetting(OSDVisualisation.ShowFanart)">Conditional</animation>
<animation effect="zoom" start="110" end="130" center="auto" time="10000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
<animation effect="slide" start="-30,-30" end="30,30" time="6000" tween="sine" easing="inout" pulse="true" condition="Skin.HasSetting(ArtistSlideshow.Animate)">Conditional</animation>
</control>
Save the file, reload the skin or restart kodi for changes to take effect.
Hi Beatmasters,
Thanks for the help, I tried the above but I have to be honest i'm still not getting a result.
I went through very carefully and edited the XML as you described.
-- there may be *one* small thing in the way (only thing that I can think of off top my head) --- my music library is hosted remotely (sharing from a raspberry Pi running OSMC) and i'm accessing this content through shared library (uPnP) from that Pi.
But, I still don't think that would be the problem, I think all that kodi cares about is what's playing, as long as the artist and track title are present, AS can do it's job.
really strange how I can't get this sorted.. :-( mus thave tried half a dozen times now.
(2019-12-19, 23:52)Alanon Wrote:(2019-11-29, 10:15)nojoe Wrote: [font][font]¿Quizás alguien pueda ayudarme aquí con mi pequeño ajuste MusicVisualization.xml? [/font][font]Trataré de colocar el artista / título en el CD giratorio en blanco, pero solo tengo un nudo en mi cerebro.[/font][/font]
[font][font]En el mismo lugar en MusicVisualization.xml donde modificó la posición del disco, debería haber dos etiquetas. [/font][font]Son las dos piezas de texto (Álbum y Artista) que se superponen al disco bajo ciertas condiciones. [/font][font]Lo que necesita modificar son los parámetros de animación de rotación de esas dos etiquetas. [/font][font]Las animaciones controlan el alcance de la rotación (el tamaño del círculo), la posición inicial y otras características similares.[/font][/font]
(2019-12-12, 14:59)Makrod Wrote: [font][font]Tengo un problema, ¿no veo algunos íconos de los géneros de las películas que alguien sabe cómo resolver? [/font][/font]
[font][font]Gracias[/font][/font]
[font][font]Es debido a su configuración de idioma. [/font][font]Creo que los paquetes y Kodi hacen coincidir los géneros con los nombres de los archivos de imágenes. [/font][font]Como solo utilizo inglés, no estoy seguro de qué sucede en el caso de los pocos idiomas que se han traducido.[/font][/font]
(2020-08-06, 12:22)m3ndi Wrote:Unfortunately Alanon seems to have abandoned this skin. Some of the third party add-ons it uses have already been converted to Matrix (https://mirrors.kodi.tv/addons/matrix/), others are convertible.(2019-12-19, 23:52)Alanon Wrote:(2019-11-29, 10:15)nojoe Wrote: ¿Quizás alguien pueda ayudarme aquí con mi pequeño ajuste MusicVisualization.xml? Trataré de colocar el artista / título en el CD giratorio en blanco, pero solo tengo un nudo en mi cerebro.
En el mismo lugar en MusicVisualization.xml donde modificó la posición del disco, debería haber dos etiquetas. Son las dos piezas de texto (Álbum y Artista) que se superponen al disco bajo ciertas condiciones. Lo que necesita modificar son los parámetros de animación de rotación de esas dos etiquetas. Las animaciones controlan el alcance de la rotación (el tamaño del círculo), la posición inicial y otras características similares.
(2019-12-12, 14:59)Makrod Wrote: Tengo un problema, ¿no veo algunos íconos de los géneros de las películas que alguien sabe cómo resolver?
Gracias
Es debido a su configuración de idioma. Creo que los paquetes y Kodi hacen coincidir los géneros con los nombres de los archivos de imágenes. Como solo utilizo inglés, no estoy seguro de qué sucede en el caso de los pocos idiomas que se han traducido.
Do you have plans to adapt eminence for kodi 19 matrix? Thanks!
(2020-08-15, 23:36)gurdumim Wrote: How do I solve "The dependency on script.skin.helper.service version 1.1.23 could not be satisfied" error that I get when I try to install this skin?This is telling you that one or more of the third party add-ons that script.skin.helper.service depends on (uses) has not been installed. Check: Add-ons> My Add-ons> All> Eminence 2MOD> Dependencies, for a list of installed/not installed add-ons. If you have the missing add-on(s) install those ZIP file(s) manually. Google for any missing ZIP files.