Project

General

Profile

how to transcoding

Added by Ali Sureyya Uz about 9 years ago

Hi to all, I am newbie at Tvheadend. I am trying to configure how to transcode but I couldnot install the transcoding. There is only htsp, matroska,pass at the stream profiles. I want to stream dvb-s to the android smartphones by wireless. I am using Ubuntu 14.04 Trusty. Can anybody explain my roadmap step by step for a fresh install at the beginnig to the end. I really try to much but cannot succeed.


Replies (8)

RE: how to transcoding - Added by Mark Clarkstone about 9 years ago

Ali Sureyya Uz wrote:

Hi to all, I am newbie at Tvheadend. I am trying to configure how to transcode but I couldnot install the transcoding. There is only htsp, matroska,pass at the stream profiles. I want to stream dvb-s to the android smartphones by wireless. I am using Ubuntu 14.04 Trusty. Can anybody explain my roadmap step by step for a fresh install at the beginnig to the end. I really try to much but cannot succeed.

Make sure you have git & build-essential installed.

Git clone the repo.

This will clone the source code to your local machine & place it in ~/build/tvheadend/master.

git clone https://github.com/tvheadend/tvheadend.git ~/build/tvheadend/master

cd to the directory.

cd ~/build/tvheadend/master

Then run the autobuild.sh script like this..
This command builds Tvheadend with transcoding built-in.

AUTOBUILD_CONFIGURE_EXTRA=--enable-libffmpeg_static\ --enable-trace\ --enable-debug ./Autobuild.sh

The build will fail if you are missing dependencies, the autobuild script will stop & tell you what's missing you can then use apt-get to install them

sudo apt-get install <missing> <packages>

Once the build is complete you'll see files in ~/build/tvheadend named something like..

tvheadend_4.1-373~gcb5f6a1_amd64.deb
tvheadend-dbg_4.1-373~gcb5f6a1_amd64.deb

You can then install them both by running dpkg like this..

cd ~/build/tvheadend
sudo dpkg -i tvheadend*4.1-373~gcb5f6a1_amd64.deb

HTH

RE: how to transcoding - Added by Ali Sureyya Uz about 9 years ago

Mark Clarkstone wrote:

Ali Sureyya Uz wrote:

Hi to all, I am newbie at Tvheadend. I am trying to configure how to transcode but I couldnot install the transcoding. There is only htsp, matroska,pass at the stream profiles. I want to stream dvb-s to the android smartphones by wireless. I am using Ubuntu 14.04 Trusty. Can anybody explain my roadmap step by step for a fresh install at the beginnig to the end. I really try to much but cannot succeed.

Make sure you have git & build-essential installed.

Git clone the repo.

This will clone the source code to your local machine & place it in ~/build/tvheadend/master.
[...]

cd to the directory.
[...]

Then run the autobuild.sh script like this..
This command builds Tvheadend with transcoding built-in.
[...]

The build will fail if you are missing dependencies, the autobuild script will stop & tell you what's missing you can then use apt-get to install them
[...]

Once the build is complete you'll see files in ~/build/tvheadend named something like..
[...]

You can then install them both by running dpkg like this..
[...]

HTH

I have git & build-essential installed,then follow your instruction but after AUTOBUILD_CONFIGURE_EXTRA=--enable-libffmpeg_static\ --enable-trace\ --enable-debug ./Autobuild.sh I get following error and cannot understand what should I do;

dpkg-buildpackage: kaynak paketi tvheadend
dpkg-buildpackage: kaynak sürümü 4.1-373~gcb5f6a1
dpkg-buildpackage: source distribution unstable
dpkg-buildpackage: kaynak tarafından değiştirlidi Andreas Öman <[email protected]>
dpkg-buildpackage: sunucu mimarisi amd64
dpkg-source --before-build master
dpkg-checkbuilddeps: Unmet build dependencies libavahi-client-dev liburiparser-dev
dpkg-buildpackage: warning: build dependencies/conflicts unsatisfied; aborting
dpkg-buildpackage: warning: (Use -d flag to override.)

Is th

RE: how to transcoding - Added by Mark Clarkstone about 9 years ago

Ali Sureyya Uz wrote:

Mark Clarkstone wrote:

Ali Sureyya Uz wrote:

Hi to all, I am newbie at Tvheadend. I am trying to configure how to transcode but I couldnot install the transcoding. There is only htsp, matroska,pass at the stream profiles. I want to stream dvb-s to the android smartphones by wireless. I am using Ubuntu 14.04 Trusty. Can anybody explain my roadmap step by step for a fresh install at the beginnig to the end. I really try to much but cannot succeed.

Make sure you have git & build-essential installed.

Git clone the repo.

This will clone the source code to your local machine & place it in ~/build/tvheadend/master.
[...]

cd to the directory.
[...]

Then run the autobuild.sh script like this..
This command builds Tvheadend with transcoding built-in.
[...]

The build will fail if you are missing dependencies, the autobuild script will stop & tell you what's missing you can then use apt-get to install them
[...]

Once the build is complete you'll see files in ~/build/tvheadend named something like..
[...]

You can then install them both by running dpkg like this..
[...]

HTH

I have git & build-essential installed,then follow your instruction but after AUTOBUILD_CONFIGURE_EXTRA=--enable-libffmpeg_static\ --enable-trace\ --enable-debug ./Autobuild.sh I get following error and cannot understand what should I do;

dpkg-buildpackage: kaynak paketi tvheadend
dpkg-buildpackage: kaynak sürümü 4.1-373~gcb5f6a1
dpkg-buildpackage: source distribution unstable
dpkg-buildpackage: kaynak tarafından değiştirlidi Andreas Öman <[email protected]>
dpkg-buildpackage: sunucu mimarisi amd64
dpkg-source --before-build master
*dpkg-checkbuilddeps: Unmet build dependencies libavahi-client-dev liburiparser-dev*
dpkg-buildpackage: warning: build dependencies/conflicts unsatisfied; aborting
dpkg-buildpackage: warning: (Use -d flag to override.)

Is th

You need to install those packages.

sudo apt-get install libavahi-client-dev liburiparser-dev

RE: how to transcoding - Added by Ali Sureyya Uz about 9 years ago

Thank you, right now I have webtv-h264-aac-matroska,webtv-h264-aac-mpegts,webtv-vp8-vorbis-webm profiles added. What do you suggest me which profile to use for the android client with TVHGuide ? What should be the settings ?

RE: how to transcoding - Added by Mark Clarkstone about 9 years ago

Ali Sureyya Uz wrote:

Thank you, right now I have webtv-h264-aac-matroska,webtv-h264-aac-mpegts,webtv-vp8-vorbis-webm profiles added. What do you suggest me which profile to use for the android client with TVHGuide ? What should be the settings ?

That depends on the device, just try & see what your device supports, it should support most if not all codecs.

RE: how to transcoding - Added by Ali Sureyya Uz about 9 years ago

OK, I already tryied a few codecs, thank you all your afford. I wonder one more things, after transcoding my last stage is distributing the channel by wireless estimate 80-90 smartphone at local area. What would be suggestion about it ? Should I use multicast ? if yes how ? I know it might be not the place to discuss but need a roadmap again. Might be lots of people wonder that.

RE: how to transcoding - Added by Mark Clarkstone about 9 years ago

Ali Sureyya Uz wrote:

OK, I already tryied a few codecs, thank you all your afford. I wonder one more things, after transcoding my last stage is distributing the channel by wireless estimate 80-90 smartphone at local area. What would be suggestion about it ? Should I use multicast ? if yes how ? I know it might be not the place to discuss but need a roadmap again. Might be lots of people wonder that.

I'm not 100% sure what to suggest here TBH, have you looked at http://www.mumudvb.net/ that might be a bit easier than Tvheadend for what you want, I'm not saying it's not possible with Tvheadend just that it's beyond my skill, hopefully more people will see this thread and reply.

RE: how to transcoding - Added by Ali Sureyya Uz about 9 years ago

Thank you so much for all guidance to me :)

    (1-8/8)