Raspberry Pi 3 - Debian Jessie compiling TVHeadend from sources
English Raspberry Pi Linuxforeword
I’ve switched from a Raspberry Pi 1 Model B to a Raspberry Pi 3 Model B because my DVB USB device recordings on RPI1 were clipped.
I hope this changes using the much stronger RPI3.
My DVB USB device: Sundtek MediaTV Pro III
let’s start
preparations
Just download and flash the Raspbian LITE image from https://www.raspberrypi.org/downloads/raspbian/
sudo apt-get update
sudo apt-get install -y vim wget
date
sudo dpkg-reconfigure tzdata
date
sudo raspi-config
sudo reboot
installing MediaTV Pro III (skip this if you use another tv device)
wget http://www.sundtek.de/media/sundtek_netinst.sh && \
chmod 777 sundtek_netinst.sh && sudo ./sundtek_netinst.sh
cat << EOL | sudo tee /etc/sundtek.conf
use_hwpidfilter=on
device_attach=systemctl restart tvheadend
EOL
building TVHeadend from sources
since the official wiki building page seems a bit outdated here are my notes
Read more...