Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

www.playtv.fr/television/ - A serious challenge for livestreming

(http://stream-recorder.com/forum/showthread.php?t=8332)

svnpenn 09-04-2012 04:26 PM

Re: www.playtv.fr/television/ - A serious challenge for livestreming


 
Quote:

Originally Posted by Vaganza
Could somebody (KSV ?) put up a new link to a fully functional (downloadable) PlayTV.php ?

raw.github.com/K-S-V/Scripts/master/PlayTV.php

Quote:

Originally Posted by Vaganza
Should it be kept in the php-5.4.0 folder or a separate ?

PHP cannot find a script from the PATH (that i know of) so you will need to call the script directly via an absolute path or path relative to the current directory.

For example, if your current directory was C:\Users\Steven and the script was C:\Users\Steven\PlayTV.php, then you could do this

Code:

php PlayTV.php
Otherwise you will probably need to use full path, as such

Code:

php C:\php\PlayTV.php
or similar. Please let it be very clear that I am not going more in to depth on this. You are asking about the very basics of the command line, something you should have learned long ago.

knarf 03-25-2013 03:34 PM

Re: www.playtv.fr/television/ - A serious challenge for livestreming


 
Hi,

It looks like the script doesn't work on my computer (Archlinux, php & vlc installed). I'm trying the watch 62 (Souvenirs from earth).
EDIT:
I've just commented open_basedir in the php.ini. Works perfectly! Sorry for the noise :)

I get this:
Code:

$ php PlayTV.php                                             

                            KSV PlayTV Downloader

PHP Warning:  curl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when an open_basedir is set in /home/knarf/prog/as/PlayTV.php on line 286
 1) 2M Maroc              27) France 3              53) Opal TV             
...
26) France 2              52) OFIVE TV             

Enter Channel Number : 62
Retrieving html....                                                           
PHP Warning:  curl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when an open_basedir is set in /home/knarf/prog/as/PlayTV.php on line 286
PHP Warning:  curl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when an open_basedir is set in /home/knarf/prog/as/PlayTV.php on line 286
PHP Warning:  pack(): Type H: illegal hex digit < in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit h in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit t in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit m in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit l in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit > in /home/knarf/prog/as/PlayTV.php on line 508
 in /home/knarf/prog/as/PlayTV.php on line 508t
PHP Warning:  pack(): Type H: illegal hex digit
 in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit < in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit h in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit > in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit < in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit t in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit i in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit t in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit l in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit > in /home/knarf/prog/as/PlayTV.php on line 508
...
...
PHP Warning:  pack(): Type H: illegal hex digit > in /home/knarf/prog/as/PlayTV.php on line 508
 in /home/knarf/prog/as/PlayTV.php on line 508t
PHP Warning:  pack(): Type H: illegal hex digit
 in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit < in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit / in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit o in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit y in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit > in /home/knarf/prog/as/PlayTV.php on line 508
 in /home/knarf/prog/as/PlayTV.php on line 508t
PHP Warning:  pack(): Type H: illegal hex digit
 in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit < in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit / in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit h in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit t in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit m in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit l in /home/knarf/prog/as/PlayTV.php on line 508
PHP Warning:  pack(): Type H: illegal hex digit > in /home/knarf/prog/as/PlayTV.php on line 508
 in /home/knarf/prog/as/PlayTV.php on line 508t
PHP Warning:  pack(): Type H: illegal hex digit
 in /home/knarf/prog/as/PlayTV.php on line 508
Unable to decode server response

Notice how the arg to pack are html source code instead of hex digit.

Anyway...

I just wanted to play the stream on playtv in mplayer or vlc. Turns out it's not a simple flv where I can sniff the url from firebug. So I'm guessing the flash client open a new connection on its own. I fire wireshark and I see some encrypted stuff... shit.

After some googling I learn a bit about rmtp/rmtpe/rmtps... and end up on this very thread.
I can see that once again, the DRM is useless... Well done KSV!

peterpan 11-28-2014 07:02 PM

Re: www.playtv.fr/television/ - A serious challenge for livestreming


 
KSV's playtv.fr script no longer works!!! Looks like they've made some changes to their streaming protocol, which caused KSV playtv script to stop working :( It'll be great if KSV can fix it. Thanks in advance!

getflv 11-28-2014 07:44 PM

Re: www.playtv.fr/television/ - A serious challenge for livestreming


 
Quote:

Originally Posted by peterpan (Post 72371)
KSV's playtv.fr script no longer works!!! Looks like they've made some changes to their streaming protocol, which caused KSV playtv script to stop working :( It'll be great if KSV can fix it. Thanks in advance!

Latest GetFLV can help you. Try iPad Mode and download m3u8 stream from playtv.fr.:cool:

peterpan 11-28-2014 09:35 PM

Re: www.playtv.fr/television/ - A serious challenge for livestreming


 
Thanks Man!

mk123 05-29-2015 06:03 AM

Re: www.playtv.fr/television/ - A serious challenge for livestreming


 
Quote:

Originally Posted by getflv (Post 72373)
Latest GetFLV can help you. Try iPad Mode and download m3u8 stream from playtv.fr.:cool:

its not working can you rechek please maybe they changed their website

thank you

edit: webpage asking to download latest flash player , how can we do this within getflv ?


All times are GMT -6. The time now is 07:55 PM.