Download TVheadend ?
#16
(2015-05-15, 18:58)negge Wrote: I told you things are a bit broken at the moment. Are you not able to use the official PPA instead?

Packages from Ubuntu will work on debian unstable?
Debian still is using a version 13.x
Reply
#17
It worked, done.

What was missing was: https://github.com/Pulse-Eight/platform

I installed using the "debian/rules" after changing the prefix.
How to install only using cmake?

I have a few questions:
- while watching a program on the screen is visible inscription "channel group", how can I turn it off?
- is there a way to add a large number of IP streams? address are from 239.3.100.1 to 239.3.100.50
Reply
#18
m_o_d Wrote:while watching a program on the screen is visible inscription "channel group", how can I turn it off?

What? Can you post a screenshot?

m_o_d Wrote:is there a way to add a large number of IP streams? address are from 239.3.100.1 to 239.3.100.50

Not out of the box, but I have a script for it (https://github.com/Jalle19/tvheadend-hel...mporter.md). I'm not sure if it works anymore though, I haven't updated the repository in a while.
Reply
#19
(2015-05-16, 11:21)negge Wrote:
m_o_d Wrote:while watching a program on the screen is visible inscription "channel group", how can I turn it off?

What? Can you post a screenshot?


m_o_d Wrote:is there a way to add a large number of IP streams? address are from 239.3.100.1 to 239.3.100.50

Not out of the box, but I have a script for it (https://github.com/Jalle19/tvheadend-hel...mporter.md). I'm not sure if it works anymore though, I haven't updated the repository in a while.

That's a bug in the skin being used.
I can't remember the post but the solution involves editing an xml for the skin....
Not related to tvheadend addon.
Reply
#20
(2015-05-16, 17:19)robo989 Wrote:
(2015-05-16, 11:21)negge Wrote:
m_o_d Wrote:while watching a program on the screen is visible inscription "channel group", how can I turn it off?

What? Can you post a screenshot?


m_o_d Wrote:is there a way to add a large number of IP streams? address are from 239.3.100.1 to 239.3.100.50

Not out of the box, but I have a script for it (https://github.com/Jalle19/tvheadend-hel...mporter.md). I'm not sure if it works anymore though, I haven't updated the repository in a while.

That's a bug in the skin being used.
I can't remember the post but the solution involves editing an xml for the skin....
Not related to tvheadend addon.

Thanks
Reply
#21
(2015-05-17, 10:48)m_o_d Wrote:
(2015-05-16, 17:19)robo989 Wrote:
(2015-05-16, 11:21)negge Wrote:
What? Can you post a screenshot?



Not out of the box, but I have a script for it (https://github.com/Jalle19/tvheadend-hel...mporter.md). I'm not sure if it works anymore though, I haven't updated the repository in a while.

That's a bug in the skin being used.
I can't remember the post but the solution involves editing an xml for the skin....
Not related to tvheadend addon.

Thanks

Found it.,....

http://forum.kodi.tv/showthread.php?tid=...pid1930793
Reply
#22
(2015-05-17, 19:57)robo989 Wrote:
(2015-05-17, 10:48)m_o_d Wrote:
(2015-05-16, 17:19)robo989 Wrote: That's a bug in the skin being used.
I can't remember the post but the solution involves editing an xml for the skin....
Not related to tvheadend addon.

Thanks

Found it.,....

http://forum.kodi.tv/showthread.php?tid=...pid1930793

Corrected, it works great - thanks again


Below I attach a script for building kodi + pvr.hts. Maybe someone will use:
Caution: when you first start after completing each stage you have to create symbolic links to the appropriate directory in /usr/local
Code:
#! /bin/bash -x

DATE=`date +%Y%m%d-%H%M`
BASE_DIR="/usr/src/kodi/build-${DATE}"
DST_DIR="/usr/local/kodi/kodi-git-${DATE}"

RED=`tput setaf 1`
GREEN=`tput setaf 2`
RESET=`tput sgr0`

mkdir -p ${BASE_DIR}
cd ${BASE_DIR}


#########################################################################


echo "${GREEN}Kodi: Start Build${RESET}";

git clone https://github.com/xbmc/xbmc.git kodi;
cd kodi;

./bootstrap;
./configure --prefix=${DST_DIR};
make -j5 && make install;

rm /usr/local/kodi/current;
ln -s ${DST_DIR} /usr/local/kodi/current;
cd ${BASE_DIR};

echo "${GREEN}Kodi: End Build${RESET}";


#########################################################################


echo "${GREEN}Platfrom: Start Build${RESET}";

git clone https://github.com/Pulse-Eight/platform.git platform;
cd platform;

mkdir build; cd build;

cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_PREFIX=${DST_DIR}/ ..;

make -j5 && make install;

cd ${BASE_DIR};

echo "${GREEN}Platfrom: End Build${RESET}";


#########################################################################


echo "${GREEN}Kodi Platfrom: Start Build${RESET}";

git clone https://github.com/xbmc/kodi-platform kodi-platform;

cd kodi-platform;

mkdir build; cd build;

cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_PREFIX=${DST_DIR}/ ..;

make j5 && make install;

cd ${BASE_DIR};

echo "${GREEN}Kodi Platfrom: End Build${RESET}";


#########################################################################


echo "${GREEN}Kodi pvr.hts: Start Build${RESET}";

git clone https://github.com/kodi-pvr/pvr.hts.git pvr.hts;

cd pvr.hts;

mkdir build; cd build;

cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 -DCMAKE_INSTALL_PREFIX=${DST_DIR}/ ..;

make -j5 && make install;

cd ${BASE_DIR};

echo "${GREEN}Kodi pvr.hts: End Build${RESET}";


#########################################################################
Reply

Logout Mark Read Team Forum Stats Members Help
Download TVheadend ?0