Just built - missing streamprofiles
Added by Fred Fred over 9 years ago
Just built and installed and tested HTS Tvheadend 3.9.2706~gabb1409 on my Ubuntu server 14.04 running in Hyper-V.
Did this just to play with transcoding but are missing the profiles, what have I done wrong?
@
sudo apt-get install build-essential pkg-config libssl-dev git libavahi-client-dev libavcodec-dev libavfilter-dev libavformat-dev libavutil-dev libswscale-dev libavcodec-extra-54 liburiparser1 liburiparser-dev debhelper libcurl4-gnutls-dev a52dec
then:
git clone https://github.com/tvheadend/tvheadend.git
cd tvheadend
AUTOBUILD_CONFIGURE_EXTRA=--enable-libffmpeg_static ./Autobuild.sh -t precise-amd64
cd ..
sudo dpkg -i tvheadend_3.9.2706~gabb1409~precise_amd64.deb
@
So... something is missing, but what?
Replies (1)
RE: Just built - missing streamprofiles - Added by Fred Fred over 9 years ago
I had missed this: apt-get install build-essential pkg-config libssl-dev git
So to build (today) this works:
@
sudo apt-get install build-essential pkg-config libssl-dev git
sudo apt-get install build-essential pkg-config libssl-dev git libavahi-client-dev libavcodec-dev libavfilter-dev libavformat-dev libavutil-dev libswscale-dev libavcodec-extra-54 liburiparser1 liburiparser-dev debhelper libcurl4-gnutls-dev a52dec
git clone https://github.com/tvheadend/tvheadend.git
cd tvheadend
AUTOBUILD_CONFIGURE_EXTRA=--enable-libffmpeg_static ./Autobuild.sh -t precise-amd64
cd ..
sudo dpkg -i tvheadend_3.9.2706~gabb1409~precise_amd64.deb
@