• 1
  • 108
  • 109
  • 110(current)
  • 111
  • 112
  • 453
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC
is video gameplay videos possible in advanced lancher?
espengaasemyr Wrote:is video gameplay videos possible in advanced lancher?
No actually. I maybe could try to add a ListItem.Trailer support into Advanced Launcher (just another tag to add). But actually I'm not sure that ListItem.Trailer is active into the programs section.

Also the display of the linked videos will not be managed by Advanced Launcher but by XMBC and the skins used. So if the skins do not have any video display support into for programs views you will not be able to see them.

Finally I will not add a video gameplay scraper. If you want a rom manager that support video gameplay display use Rom Collection Browser.
KiSUAN Wrote:Spanish Translation Update r420 string.xml

Robert de Clair Wrote:http://www.mediafire.com/?r42784c9r4qbpez polish r420

Thanks KiSUAN and Robert de Clair. Your respective translations will be added into the next version. Cool
john.doe Wrote:Thank you very much Angelscry.
Sorry, I should refrain from asking you that, it was far from being indispensable, and then you almost do it on purpose to throw 2 times the same application.
Actually I do not see any solution. But if I found one, I will try to add it into Advanced Launcher. Nod
Angelscry Wrote:No actually. I maybe could try to add a ListItem.Trailer support into Advanced Launcher (just another tag to add). But actually I'm not sure that ListItem.Trailer is active into the programs section.

Also the display of the linked videos will not be managed by Advanced Launcher but by XBMC and the skins used. So if the skins do not have any video display support into for programs views you will not be able to see them.

Finally I will not add a video gameplay scraper. If you want a rom manager that support video gameplay display use Rom Collection Browser.


Okay. Already using the best (Advanced Launcher) Laugh can`t go down hill you know! hehe
Oupsss... I have forgotten that the Listitem.Trailer value is already attributed to extrafanartpath tag under Advanced launcher... Rolleyes
Angelscry Wrote:Oupsss... I have forgotten that the Listitem.Trailer value is already attributed to extrafanartpath tag under Advanced launcher... Rolleyes

Besides as you said if the skin doesn't support it there's no point, more if you don't add the option to scrape and last, there's already 2 skins that support trailers Cirrus Extended 1.0 & Night.Purity, and it's pretty simple to implement.

Don't now exactly how CE manage the trailers but for my mod the path for the trailers is the same as for the extrafanrt, the files only has to be named as Launcher name and the format is flv as is the most common to download from youtube. Currently only available in Arcade views and autoplay.
KiSUAN Wrote:Besides as you said if the skin doesn't support it there's no point, more if you don't add the option to scrape and last, there's already 2 skins that support trailers Cirrus Extended 1.0 & Night.Purity, and it's pretty simple to implement.

Don't now exactly how CE manage the trailers but for my mod the path for the trailers is the same as for the extrafanrt, the files only has to be named as Launcher name and the format is flv as is the most common to download from youtube. Currently only available in Arcade views and autoplay.
Yes, I think it will be possible to create a kind of youtube video scraper that will download a video on youtube and save it into flv of mp4 format into the extrafanart folder with the right name. Maybe it will be necessary to add a special tag for the trailer video file path. Which video formats could be displayed into XBMC skins? FLV? MP4? AVI? Oo
I'm not asking for the option, for me with the ones available is more than enough as I can do whatever I want for now.

Anyway, the code I use is this:

<onfocus>XBMC.PlayMedia($INFO[ListItem.Trailer]$INFO[ListItem.label].flv,1,noresume)</onfocus>

So ListItem.Trailer gives me the path, ListItem.Label the name and .flv the type of file, XBMC can play anything that you download from youtube, but the thing is that if I don't estipulate the type of file it never starts, maybe I can look more into it, make more buttons with mp4 and avi and set a condition if I can fetch it of course.

I don't know if I could just fetch the path and name of the file from the addon, maybe I don't need to specify the type of media.
I would like to run Opera 11 Linux under full screen mode

Angelscry Wrote:Yes for Opera the kiosk mode could be activated using
Code:
/KioskMode
argument. http://www.gwenael.org/xbmc/index.php?ti...ra#Windows

I have xbmc from git + Linux Opera 11 + advanced launcher 1.2.7

I used the following argument

Code:
kiosk "http://www.xbmc.org"

because with

Code:
-kiosk "http://www.xbmc.org"

opera didn't start at all

but Opera didnt' start in full screen mode. Only 70% of screen was filled

what is wrong ?

xbmc.log here is
http://paste.ubuntu.com/573015/


second xbmc.log with argument

Code:
-kiosk "http://www.xbmc.org"

here is
http://paste.ubuntu.com/573024/
Nvidia Shield
kodi 18.1 RC1
Angelscry Wrote:Yes, I think it will be possible to create a kind of youtube video scraper that will download a video on youtube and save it into flv of mp4 format into the extrafanart folder with the right name. Maybe it will be necessary to add a special tag for the trailer video file path. Which video formats could be displayed into XBMC skins? FLV? MP4? AVI? Oo

Maybe could be easier to let choose the path or location for downloaded trailer, so you could edit the filename and extension, as the most video types are compatible, you just have to change extension, from flv to mp4 for example ...
just an idea ...
Goga777 Wrote:I would like to run Opera 11 Linux under full screen mode
I have xbmc from git + Linux Opera 11 + advanced launcher 1.2.7
I used the following argument
Code:
kiosk "http://www.xbmc.org"
because with
Code:
-kiosk "http://www.xbmc.org"
opera didn't start at all
but Opera didnt' start in full screen mode. Only 70% of screen was filled
what is wrong ?
Under linux the right argument to activate the kiosk mode for opera is -kioskmode. So if you use Opera as stand alone launcher the launcher arguments will be :
Code:
-kioskmode "http://www.xbmc.org"
. If you use Opera as file launcher the launcher arguments will be :
Code:
-kioskmode "%rom%"
Just created WIKI page : http://www.gwenael.org/xbmc/index.php?title=Opera#Linux
butchabay Wrote:Maybe could be easier to let choose the path or location for downloaded trailer, so you could edit the filename and extension, as the most video types are compatible, you just have to change extension, from flv to mp4 for example ...
just an idea ...
Ok, so I think the more simple will be to to add another tag for the trailers. Because the actual LitsItem.Trailer vallue is assigned to the extrafanartpath, I will have to make some modifications.
  • add a <trailer></trailer> tag for launcher and roms.
  • assign this tag to the LitsItem.Trailer value.
  • assign the <extrafanartpath> tag to another LitsItem.Trailer value (need to found which one).
  • add option to locally select the video file to store into <trailer> tag.
I will try to work on this for the next days.
what is the difference between

Code:
-kioskmode "http://www.xbmc.org"

and

Code:
-kiosk "http://www.xbmc.org"
Nvidia Shield
kodi 18.1 RC1
Goga777 Wrote:what is the difference between

Code:
-kioskmode "http://www.xbmc.org"

and

Code:
-kiosk "http://www.xbmc.org"
The first is the right command line argument for opera under linux to start it into kioskmode. The second is an argument that is not recognized, supported or implemented into Opera and that's why it is not working. http://www.opera.com/support/mastering/kiosk/
  • 1
  • 108
  • 109
  • 110(current)
  • 111
  • 112
  • 453

Logout Mark Read Team Forum Stats Members Help
[CLOSED] Advanced Launcher - Applications Launcher Addon for XBMC24