HowTo compile the latest version of Ember from SourceCode - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +---- Forum: Ember Media Manager (https://forum.kodi.tv/forumdisplay.php?fid=195) +---- Thread: HowTo compile the latest version of Ember from SourceCode (/showthread.php?tid=254955) |
HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-05 What you need (please only download and follow the guide for installations):
STEP 1
STEP 2
STEP 3 If exist, delete the folder .\GitHub\Ember-MM-Newscraper\EmberMM - Release - x86 to cleanup a new version from old and no longer needed files!
STEP 4
STEP 5
DONE UPDATE YOUR SOURCE CODE TO OUR LATEST VERSION: If exist, delete the folder .\GitHub\Ember-MM-Newscraper\EmberMM - Release - x86 to cleanup a new version from old and no longer needed files!
RE: HowTo compile the latest version of Ember from SourceCode - AnthonyJS02 - 2016-01-09 Is this just for nightly builds? Will you be uploading the next beta when ready like previous versions? RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-10 (2016-01-09, 14:59)AnthonyJS02 Wrote: Is this just for nightly builds? Will you be uploading the next beta when ready like previous versions? Yes - Yes RE: HowTo compile the latest version of Ember from SourceCode - brunosso - 2016-01-11 Dan there is a problem. Before to build the project i need to add the reference of VLC ActiveX? How? Thanks RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-12 (2016-01-11, 21:20)brunosso Wrote: Dan there is a problem. Before to build the project i need to add the reference of VLC ActiveX? How? See "Step 1". You need version 2.1.5 with activated ActiveX plugin (check if enabled in VLC install wizard). You can only compile the code as x86 if you include the VLC addon in the project folder. Another way is to unload the addon VLC Player in project tree (same way like i have described in Step 4). Without the VLC addon it should be working without VLC ActiveX installation. P.S.: 2.1.5 was the last version that had included a working ActiveX plugin. I don't know why no never versions that i've tested does not work... RE: HowTo compile the latest version of Ember from SourceCode - brunosso - 2016-01-12 (2016-01-12, 01:08)DanCooper Wrote: See "Step 1". You need version 2.1.5 with activated ActiveX plugin (check if enabled in VLC install wizard). I try to build but i have many errors, and the dll file relative to VLC are not created!!! This is the list of errors http://pasted.co/ec0b18b6 and i notice that the reference in "generic.EmberCore.VLC" are whith a yellow mark! RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-12 (2016-01-12, 16:15)brunosso Wrote:(2016-01-12, 01:08)DanCooper Wrote: See "Step 1". You need version 2.1.5 with activated ActiveX plugin (check if enabled in VLC install wizard). Looks like you have installed VLC version 2.1.3. Please try this: - Close VS - uninstall VLC via Windows Programm Manager - reboot your system - install VLC x86 2.1.5 with ActiveX plugin If that does not work, unload the VLC addon in Ember (this addon does not work proper anyway). To solve the error in Trakt.tv addon: - try to prebuild the Trakttv API (C# projekt at the bottom of project list) with right mouse button => Build RE: HowTo compile the latest version of Ember from SourceCode - brunosso - 2016-01-12 (2016-01-12, 16:34)DanCooper Wrote: Looks like you have installed VLC version 2.1.3. I install the version you linked in 1st post. BTW now i installed 2.2.0 and the yellow triangle in "AXVLC" is gone, but the "AxAXVLC" yellow triangle is present! For now i unload the addon RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-12 (2016-01-12, 17:32)brunosso Wrote:(2016-01-12, 16:34)DanCooper Wrote: Looks like you have installed VLC version 2.1.3. Do you have switched to x86 in VS? VLC don't have a x64 plugin. Anyway, the Ember VLC addon does not work really good and has to be rewrite, so i think it's the best way if you unload it from build. RE: HowTo compile the latest version of Ember from SourceCode - brunosso - 2016-01-12 (2016-01-12, 17:35)DanCooper Wrote: Do you have switched to x86 in VS? VLC don't have a x64 plugin. Anyway, the Ember VLC addon does not work really good and has to be rewrite, so i think it's the best way if you unload it from build. Yes i'm on Release - x86... i don't understant why there is only a dll file in vlc, but there are 2 reference? RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-12 (2016-01-12, 17:40)brunosso Wrote:(2016-01-12, 17:35)DanCooper Wrote: Do you have switched to x86 in VS? VLC don't have a x64 plugin. Anyway, the Ember VLC addon does not work really good and has to be rewrite, so i think it's the best way if you unload it from build. There are two dll's: AxInterop.AXVLC.dll and Interop.AXVLC.dll RE: HowTo compile the latest version of Ember from SourceCode - brunosso - 2016-01-12 (2016-01-12, 17:47)DanCooper Wrote: There are two dll's: AxInterop.AXVLC.dll and Interop.AXVLC.dll I mean in the vlc installation folder, this two dll aren't builded from VS When i build the solution, there aren't created in subfolder Modules.. RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-12 (2016-01-12, 17:52)brunosso Wrote:(2016-01-12, 17:47)DanCooper Wrote: There are two dll's: AxInterop.AXVLC.dll and Interop.AXVLC.dll I'm not shure how it exacly works. Maybe this two dll's are saved in a Widnows COM library, extracted from the ActiveX dll or something else... RE: HowTo compile the latest version of Ember from SourceCode - brunosso - 2016-01-12 http://nightlies.videolan.org/build/win32/vlc-2.2.0-20151228-0202/vlc-2.2.2-win32.exe I use this version of VLC, and now all reference are correct! The building process return no error (Building only, i remove Intellisense) RE: HowTo compile the latest version of Ember from SourceCode - DanCooper - 2016-01-12 (2016-01-12, 18:13)brunosso Wrote: http://nightlies.videolan.org/build/win32/vlc-2.2.0-20151228-0202/vlc-2.2.2-win32.exe Ok. I'm not shure, but maybe VS crash if you try to open a dialog with VLC control in VisualStudio. I've found a new VLC package in Nuget. I try to use that, so users no longer need to have VLC installed. |