• 1
  • 8
  • 9
  • 10(current)
  • 11
  • 12
[REQUEST] Channel4 Catchup - 4oD (Channel 4 on Demand) Plugin?
Have it installed and the program choice looks excellent! However when I press play nothing happens.
It has been mentioned in the thread that installing rtmpdump solves this. Could someone please point me in the direction of the rtmpdump file I'd need? I'm using apple tv 2.
Reply
My 4oD addon has been updated to version 1.0.1 and the best way to get it and receive any future updates is to install my repository from:
http://nibor-xbmc-repo.googlecode.com/fi....nibor.zip

Changes in 1.0.1 include:
- Added a setting for default select action: Play/Download/Ask (Thanks to alcoheca)
- Added genre, episode number and first aired date episode information
- Remove unused subprocess module reference which caused errors on some platforms
- Changed use of deprecated md5 module to hashlib.md5 where available
- Fixed problem where duplicate episodes would sometimes appear
Reply
It may be the best way ... but nothing is actually installed other than Nibor's repository which contains zilch!

Tell us how to actually install this, please!
Reply
castalla Wrote:It may be the best way ... but nothing is actually installed other than Nibor's repository which contains zilch!

Tell us how to actually install this, please!

Refresh the repositary, or restart xbmc
Reply
Thanks.
Reply
THANK YOU VERY MUCH, this worked perfectly for me!
Reply
you need to update your rtmp.

I stole this code from LAGMonkey

I highly recomend that you login via SSH.

first remove any previous packages

Code:
sudo apt-get purge rtmpdump

Then install your dependancies
Code:
sudo apt-get install build-essential git-core checkinstall libssl-dev

then copy and paste this

Code:
cd ~/ && \
git clone git://git.ffmpeg.org/rtmpdump && \
cd rtmpdump && \
version="$(git log -1 --abbrev-commit | grep commit | cut -d' ' -f2)" && \
make VERSION="v2.4\ $version~git" && \
sudo checkinstall --pakdir "$HOME/Desktop" --pkgname rtmpdump \
--pkgversion "2.4-$version~git" --backup=no --default && sudo ldconfig

This will download, build and then install the latest git version of rtmpdump on your system. Once complete you can type "rtmpdump" and it should give you somthing like the following below (notice the version number)

Code:
rxbmc@xbmc:~$ rtmpdump
RTMPDump v2.4 5d03a4f~git
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
original code is not my work but i have used it personally, this was taken from "ron999" over at http://ubuntuforums.org/showthread.php?t=1816737 credit should go to him and the rtmpdump team
__________________________________________________ _________________________________________
Updating RTMPDump

once you have installed RTMPDump from the code above, to update it you will have to do the following. Copy and paste as one SINGLE command.

Code:
cd ~/rtmpdump && \
git pull && \
version="$(git log -1 --abbrev-commit | grep commit | cut -d' ' -f2)" && \
make VERSION="v2.4\ $version~git" && \
sudo checkinstall --pakdir "$HOME/Desktop" --pkgname rtmpdump \
--pkgversion "2.4-$version~git" --backup=no --default && sudo ldconfig

This code takes you to your rtmpdump code folder (git clone), updates it to the latest git version, makes the new version and then installs it for you.

Once again thanks LagMonkey your a star and gets a thumbs up from me.
Reply
Thanks nibor, All working perfectly now.
Reply
hi there! thanx for you hard work in getting a 4od addon up and running, it is something i've been looking out for a while for Smile

i have installed eden beta1 from the ubuntu unstable ppa - installed the addon through your repo, updated my rtmp as per the instructions above, however i am still not getting a stream to play Sad full debug log here

EDIT: working now... no idea why but tried today and all good Smile excellent work!
Reply
If you had issues finding, building or installing rtmpdump like me for OS X Tiger on a PPC, then I finally found an extremely simple way to do it:
- install MacPorts
- sudo port sync; sudo port selfupdate; sudo port install openssl
- sudo port install rtmpdump

It reports success (but I don't know whether it works with XBMC...)

Cheers,
J
Reply
nibor Wrote:My 4oD addon has been updated to version 1.0.1 and the best way to get it and receive any future updates is to install my repository from:
http://nibor-xbmc-repo.googlecode.com/fi....nibor.zip

Changes in 1.0.1 include:
- Added a setting for default select action: Play/Download/Ask (Thanks to alcoheca)
- Added genre, episode number and first aired date episode information
- Remove unused subprocess module reference which caused errors on some platforms
- Changed use of deprecated md5 module to hashlib.md5 where available
- Fixed problem where duplicate episodes would sometimes appear

Hi mate just installed version 1.0.1 from your repo, fresh install..

Having no problems playing the streams so awesome work. I see a few post ago people menitoning updating a trmp file? Im guessing I no longer need to do that as its incorporated in this latest 1.0.1 release?

Also where abouts do i find "first aired date" within the plugin as I cannot seem to see it.

Many thanks and keep up the fantastic work
Reply
All working on Ubuntu XBMC, thanks nibor
Reply
Hey guys, trying to fix the swirling logo problem on an ATV2 using the above fix, but get:

Apple-TV:~ root# sudo apt-get purge rtmpdump
-sh: sudo: command not found

Anything I can do about that? Thanks!
Reply
Chalex4 Wrote:Hey guys, trying to fix the swirling logo problem on an ATV2 using the above fix, but get:

Apple-TV:~ root# sudo apt-get purge rtmpdump
-sh: sudo: command not found

Anything I can do about that? Thanks!

Fixed it by upgrading to the latest XMBC version (Eden Beta) Smile.
Reply
Hi,
I have Apple TV and use XBMC on that. I tried the code you gave about and i get the error message :

Code:
-sh: git: command not found

How can i fix this?

Thanks
James

[/HTML][/HTML]
bertybassett Wrote:you need to update your rtmp.

I stole this code from LAGMonkey

I highly recomend that you login via SSH.

first remove any previous packages

Code:
sudo apt-get purge rtmpdump

Then install your dependancies
Code:
sudo apt-get install build-essential git-core checkinstall libssl-dev

then copy and paste this

Code:
cd ~/ && \
git clone git://git.ffmpeg.org/rtmpdump && \
cd rtmpdump && \
version="$(git log -1 --abbrev-commit | grep commit | cut -d' ' -f2)" && \
make VERSION="v2.4\ $version~git" && \
sudo checkinstall --pakdir "$HOME/Desktop" --pkgname rtmpdump \
--pkgversion "2.4-$version~git" --backup=no --default && sudo ldconfig

This will download, build and then install the latest git version of rtmpdump on your system. Once complete you can type "rtmpdump" and it should give you somthing like the following below (notice the version number)

Code:
rxbmc@xbmc:~$ rtmpdump
RTMPDump v2.4 5d03a4f~git
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
original code is not my work but i have used it personally, this was taken from "ron999" over at http://ubuntuforums.org/showthread.php?t=1816737 credit should go to him and the rtmpdump team
__________________________________________________ _________________________________________
Updating RTMPDump

once you have installed RTMPDump from the code above, to update it you will have to do the following. Copy and paste as one SINGLE command.

Code:
cd ~/rtmpdump && \
git pull && \
version="$(git log -1 --abbrev-commit | grep commit | cut -d' ' -f2)" && \
make VERSION="v2.4\ $version~git" && \
sudo checkinstall --pakdir "$HOME/Desktop" --pkgname rtmpdump \
--pkgversion "2.4-$version~git" --backup=no --default && sudo ldconfig

This code takes you to your rtmpdump code folder (git clone), updates it to the latest git version, makes the new version and then installs it for you.

Once again thanks LagMonkey your a star and gets a thumbs up from me.
Reply
  • 1
  • 8
  • 9
  • 10(current)
  • 11
  • 12

Logout Mark Read Team Forum Stats Members Help
[REQUEST] Channel4 Catchup - 4oD (Channel 4 on Demand) Plugin?0