Closed erikyuzwa closed 8 years ago
If it's windows, see this issue comment: https://github.com/jaruba/wcjs-player/issues/72#issuecomment-240388653
What Electron version? (you should also try older electron versions)
thanks - on a quick skim it does look relevant. I'm using v1.3.5
of Electron. In case that's the issue, what release do you recommend for WebChimera?
sweet, that worked - still with v1.3.5
of Electron
// in the main.js of your Electron app
let chimeraPath;
if (process.platform === 'win32') {
chimeraPath = require('path').join(__dirname, 'node_modules/wcjs-prebuilt/bin');
process.env['VLC_PLUGIN_PATH'] = chimeraPath;
}
awesome ;)
Hi, Just trying to use WebChimera in an Electron app and running into this issue.
https://github.com/jaruba/wcjs-player/blob/master/index.js#L633
All I can think of is to maybe use
item
instead ofthis.itemCount()-1
since we're working with the current item vs. the last item in theplaylist
Array? I'm not sure what L632 and L633 are for (sorry!)player.version
=v6.0.1
Any ideas? thanks a lot. :bow: