• 1
  • 13
  • 14
  • 15(current)
  • 16
  • 17
  • 47
[RELEASE] Chrome Launcher
Hi All,

I know this may be a Noob Question but I have searched this thread and the chrome launcher thread and have not found an answer Sad

I have managed to install this on my XBMCbuntu machine,

I have Google Chrome installed #38, I have the chrome launcher and the netflixbmc add-ons installed.

I also have the xdotool installed for Linux users.

Now the first problem is, When I open Netflixbmc it opens a chrome browser in kiosk mode, but the username and password does not come through? do I have to do anything to make it automatically log in?

The Main problem that I am having is when Google Chrome launches Keyboard control is not passed from XBMC to Google ChromeHuh :S When I click the arrow buttons I can hear XBMC menu sounds?

Can someone please give me a hand?

Thanks,
Reply
Hi Guys,

I am finally getting somewhere,

i have managed to get the mouse and keyboard to go through to Google chrome,

I am hoping to do a how to once i'm finished as i haven't found one yet.

My last problems are:

Problem 1: I have set up my MCE remote to work with XBMC, however when i go to Netflix in Google chrome, the remote controls don't go through only the mouse and keyboard. Does anyone know how to pass the remote control to Google Chrome?

Problem 2: I have no sound. I have sound in XBMC when using the remote, but as soon as i go to Netflix, i have no sound. Does anyone know how to fix this?

Thanks,

$tocK
Reply
By default chrome will use the default audio device, which is probably not your XBMC output device. You may need to redefine your default device in /etc/asound.conf.
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
I am having the same problem. Everything is working fine, when i choose Youtube or NetfliXBMC from the Chrome Launcher they are both launching in fullscreen and play video. I am also able to control them with my remote control, but no sound.

As mentioned above i have edited my asound.conf but that didn't solve the problem. My config now looks like this:
Code:
pcm.!default {
      type plug
      slave.pcm {
              type hw
              card 1
              device 3
      }
}

pcm.!hdmi {
      type plug
      slave.pcm {
              type hw
              card 1
              device 3
      }
}

Card 1 and device 3 are the right ones, i have checked them with aplay and hear sound. I have also rebooted after applying the above config. .asoundrc is empty, so that is not overriding asound.conf.

I am running XBMCbuntu and have sound everywhere except from everything i launch from the Chrome Launcher. I have tested to boot into desktop mode and open the Netflix website, when i do that my sound is working. But as soon as i go through the Chrome Launcher there is no sound,

Because the sound is working on the desktop i have tried to use unity instead of openbox in my Chrome Launcher script but that doesnt solve anything.
Reply
Hi there i almost got the netflixbmc addon working but in the other thread over the addon they told me to get an window manager caus netflix opens in a smaal window with no sound and xbmc is still showing on the background.
Is anybody willing to help me to get this solved?
Really desperate by now cause after 2 weekends trying to get it to work i am almost there.
Thanks in advance!!!!
Reply
(2014-10-18, 16:40)Larske Wrote: I am having the same problem. Everything is working fine, when i choose Youtube or NetfliXBMC from the Chrome Launcher they are both launching in fullscreen and play video. I am also able to control them with my remote control, but no sound.

As mentioned above i have edited my asound.conf but that didn't solve the problem. My config now looks like this:
Code:
pcm.!default {
      type plug
      slave.pcm {
              type hw
              card 1
              device 3
      }
}

pcm.!hdmi {
      type plug
      slave.pcm {
              type hw
              card 1
              device 3
      }
}

Card 1 and device 3 are the right ones, i have checked them with aplay and hear sound. I have also rebooted after applying the above config. .asoundrc is empty, so that is not overriding asound.conf.

I am running XBMCbuntu and have sound everywhere except from everything i launch from the Chrome Launcher. I have tested to boot into desktop mode and open the Netflix website, when i do that my sound is working. But as soon as i go through the Chrome Launcher there is no sound,

Because the sound is working on the desktop i have tried to use unity instead of openbox in my Chrome Launcher script but that doesnt solve anything.

I am not sure where you got your asound settings. Try

pcm.!default {
type hw
card 1
device 3
}

ctl.!default {
type hw
card 1
device 3
}
If I have helped you or increased your knowledge, click the 'thumbs up' button to give thanks :) (People with less than 20 posts won't see the "thumbs up" button.)
Reply
Same story with that config. Everything is working great but no sound when opening a webpage through Chrome Launcher.
Reply
(2014-10-19, 11:51)Larske Wrote: Same story with that config. Everything is working great but no sound when opening a webpage through Chrome Launcher.

Hi,
I had the same Problem using chrome Launcher on Gentoo within xmbc 13.2. After deactivating GUI Sounds the sound works fine for me.
I think xbmc is blocking the audio device. Changing the Setting "keep audio device active" does only word sometimes in my case.

regards
Michael
Reply
I also have the sam problem in chrome with the sam config running xbmcbuntu.
xbmc is no problem sound works with everything.
It looks like i can't select the hdmi output on my nuc.
Working without a problem on mint 17 with xbmc standalone.
Any advice is welcome.
Reply
It would be really helpful if someone did a How To on configuring the alsa sound issues. it looks like some people have done it and have it working.

Or even point us in the direction of a How To.

thanks,
Reply
In the steam launcher signature there is a link to setting up steam and xbmcbuntu and in that there is a section for setting up either pulse audio or alsa with dmix. Each has their pros and con's, but honestly the best method would be to quit XBMC before running chrome (which isn't possible within the XBMC session in xbmcbuntu, but the guide has some info on how to achieve this, albeit with steam but the general principal applies.)
Reply
(2014-10-20, 03:46)$tocK Wrote: It would be really helpful if someone did a How To on configuring the alsa sound issues. it looks like some people have done it and have it working.

Or even point us in the direction of a How To.

thanks,

Her is how I got audio working for Chrome.

1. In XBMC go to System->System->Audio Output and make sure "keep audio device alive" is set to Off.

2. Below is my script.sh:

Code:
#!/bin/bash
#openbox &
/usr/bin/google-chrome --alsa-output-device=plughw:1,9 "$@"
kill %1

Change the 'plughw:1,9' to whatever your alsa device is.

I Don't need openbox so I commented it out.
Reply
(2014-10-20, 17:56)jawilljr Wrote:
(2014-10-20, 03:46)$tocK Wrote: It would be really helpful if someone did a How To on configuring the alsa sound issues. it looks like some people have done it and have it working.

Or even point us in the direction of a How To.

thanks,

Her is how I got audio working for Chrome.

1. In XBMC go to System->System->Audio Output and make sure "keep audio device alive" is set to Off.

2. Below is my script.sh:

Code:
#!/bin/bash
#openbox &
/usr/bin/google-chrome --alsa-output-device=plughw:1,9 "$@"
kill %1

Change the 'plughw:1,9' to whatever your alsa device is.

I Don't need openbox so I commented it out.

You are the hero of the day! This solved my problem! Many thanks!
Reply
Hello i almost have it wroking buit now i get an error from netflix saying netlfix video player not availble?
How do i solve this issue?
Reply
Please I need a ittle advice:

I want to make a shortcut to a website using Chrome in Kiosk mode (without Chrome Launcher add-on). But I don´t know the correct parameter. Every try to add -kiosk mode the url opens in a new tab window without kiosk mode.
Reply
  • 1
  • 13
  • 14
  • 15(current)
  • 16
  • 17
  • 47

Logout Mark Read Team Forum Stats Members Help
[RELEASE] Chrome Launcher8