Jump to content

bottlelid

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. See my previous comment: Old versions are still available here. The link in the main post is outdated.
  2. @numetaler in case of these two add-ons I found the guides on how to compile them by visiting the GitHub repositories. InputStream Adaptive has a wiki, which was linked in the README: https://github.com/xbmc/inputstream.adaptive/wiki/How-to-build Tvheadend has the instructions in the README: https://github.com/kodi-pvr/pvr.hts
  3. @Dbosco I had the same issue. To solve it I manually built the Inputstream adaptive and Tvheadend add-ons for Kodi Nexus. I did only test Youtube, which afaik doesn't have DRM protection. So maybe there are additional steps needed to get DRM protected content working. These should be the commands to compile both add-ons sudo apt install git cmake gcc g++ cd ~ mkdir compile-addons cd compile-addons #Download Kodi, needed to compile add-ons git clone --branch 20.2-Nexus https://github.com/xbmc/xbmc.git #Inputstream adaptive git clone --branch Nexus https://github.com/xbmc/inputstream.adaptive.git mkdir inputstream.adaptive/build/ cd inputstream.adaptive/build/ cmake -DADDONS_TO_BUILD=inputstream.adaptive -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons make cd ../../xbmc/addons zip -r inputstream.adaptive.zip inputstream.adaptive mv inputstream.adaptive.zip ~ #Tvheadend cd ~/compile-addons git clone --branch Nexus https://github.com/kodi-pvr/pvr.hts.git cd pvr.hts && mkdir build && cd build cmake -DADDONS_TO_BUILD=pvr.hts -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons make cd ../../xbmc/addons zip -r pvr.hts.zip pvr.hts mv pvr.hts.zip ~ Afterwards you have two zip files in your home directory, which you can then install via the Kodi add-on manager.
  4. Hi, I followed the guide from this post, but I have one issue: as soon as I set the render method to direct to plane the video player UI disappears (play, pause, seek, etc.). The video plays fine, but I cannot exit or do anything else than play/pause by clicking the spacebar. Switching to EGL solves the issue, but then HDR files won't play anymore (just black screen + audio). Does anyone else have the same issue or a solution to the problem. Thanks
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines