View Full Version : playtv.fr
mk123
05-29-2015, 06:10 AM
hi can somebody tell me wich tool to use to get stream working on vlc from this website
http://playtv.fr/television/beblack-caribbean/
i did try with latest getflv with ipad mode but it asking to download latest flash player
any help would be welcome thanks .
denobis
05-29-2015, 06:56 AM
hi can somebody tell me wich tool to use to get stream working on vlc from this website
http://playtv.fr/television/beblack-caribbean/
i did try with latest getflv with ipad mode but it asking to download latest flash player
any help would be welcome thanks .
Use adownloader. You watch the stream through VLC while is saved.
mk123
05-29-2015, 10:50 AM
Use adownloader. You watch the stream through VLC while is saved.
the idea is to share the stream adress with friends so they can also watch it on xbmc
mk123
05-29-2015, 11:14 AM
Use adownloader. You watch the stream through VLC while is saved.
dint work :s
can you test and confirm please maybe im doing something wrong . if it work i donate for sure
denobis
05-29-2015, 01:35 PM
dint work :s
can you test and confirm please maybe im doing something wrong . if it work i donate for sure
1- Simply paste in the latest version the url
http://playtv.fr/television/beblack-caribbean/
2- search and select bitrate 8000
3- Write a name for the stream and press ok. You will be reported with the final name of the download which will be in the download's folder and the vlc must run showing the channel
Example stream:
http://5.196.90.97/origin01/amlst:beblack-caribbean/chunklist_w654675966_b800000.m3u8?dar=ws&t=18ddf1b11ff0fbb2c04fc333f9bc795bdacaf3550faae81f 89511155b0eef7b95822771bf9f09437097d40615994fb5c54 dc593dbef59e8a95ff43865664768289bbd2d51c3b41f74550 2557e9def9ad38e64d2024367cc400695a0d7b01d66d317c4c 6d65990f506948a90acaeb6cf6b9861284cf8a6e42723dc5cb 4aac4dc63b5ec4a2169eb4a0b45edecb39b7da6f
But it expires soon so you must write a little script:
if $url="http://playtv.fr/television/beblack-caribbean/"
$link=str_replace("television/","player/play/",$url)."?bitrate=0&format=hls&language=fr";
$m3u8=json_decode(file_get_contents($link))->url;
mk123
05-29-2015, 02:21 PM
1- Simply paste in the latest version the url
http://playtv.fr/television/beblack-caribbean/
2- search and select bitrate 8000
3- Write a name for the stream and press ok. You will be reported with the final name of the download which will be in the download's folder and the vlc must run showing the channel
Example stream:
http://5.196.90.97/origin01/amlst:beblack-caribbean/chunklist_w654675966_b800000.m3u8?dar=ws&t=18ddf1b11ff0fbb2c04fc333f9bc795bdacaf3550faae81f 89511155b0eef7b95822771bf9f09437097d40615994fb5c54 dc593dbef59e8a95ff43865664768289bbd2d51c3b41f74550 2557e9def9ad38e64d2024367cc400695a0d7b01d66d317c4c 6d65990f506948a90acaeb6cf6b9861284cf8a6e42723dc5cb 4aac4dc63b5ec4a2169eb4a0b45edecb39b7da6f
But it expires soon so you must write a little script:
if $url="http://playtv.fr/television/beblack-caribbean/"
$link=str_replace("television/","player/play/",$url)."?bitrate=0&format=hls&language=fr";
$m3u8=json_decode(file_get_contents($link))->url;
uselly i use playlist loader addon on xbmc so i load my stream list
how can i load this script with playlist loader ?
please bro i give you 20$ if you can help me with this.
mk123
05-29-2015, 02:24 PM
ok did it :)
now 1 thing remaining
with playlist loader addon on xbmc i can update my stream list remotly by hosting it on a webserver
how could i add the script in playlist loader .
this is a example of the type of entry in my list that playlist loader can stream
#EXTM3U
#EXTINF:-1, VEVO 1 TEST
http://vevoplaylist-live.hls.adaptive.level3.net/vevo/ch1/01/prog_index.m3u8
how can i add the script in my list to make it work with playlist loader ? PLEASE im begging for help on this i will give you 20$ with a smile in my face if you can help me.
mk123
05-29-2015, 03:46 PM
what extention should have this script ?
sysanin
05-29-2015, 06:43 PM
it expires soon so you must write a little script:
if $url="http://playtv.fr/television/beblack-caribbean/"
$link=str_replace("television/","player/play/",$url)."?bitrate=0&format=hls&language=fr";
$m3u8=json_decode(file_get_contents($link))->url;
Thanks for the hint
http://jpegshare.net/thumbs/bb/32/bb3250525413f042960e7a9b9374ccae.jpg (http://jpegshare.net/bb/32/bb3250525413f042960e7a9b9374ccae.png.html)
mk123
05-30-2015, 01:15 AM
can somebody help me with this script please , im new to this but i learn verry fast.
where i should save this script and how i can make it work or how can i use it
thanks again.
biezom
05-30-2015, 02:10 AM
can somebody help me with this script please , im new to this but i learn verry fast.
where i should save this script and how i can make it work or how can i use it
thanks again.
php script
on linux create beblack-caribbean.php
<?php
$url="http://playtv.fr/television/beblack-caribbean/";
$link=str_replace("television/","player/play/",$url)."?bitrate=0&format=hls&language=fr";
$m3u8=json_decode(file_get_contents($link))->url;
echo "Starting ffmpeg...\n\n";
echo shell_exec("ffmpeg -ss 10 -i '$m3u8' -c copy beblack-caribbean.ts &");
echo "Done.\n";
?>
on windows (probably an easier way is possible)
create beblack-caribbean.bat
@ echo on
call php beblack-caribbean.php
call set /p m3u8b= <m3u8.txt
call ffmpeg -ss 10 -i "%m3u8b%" -c copy beblack-caribbean.ts
pause
:end
and create beblack-caribbean.php
<?php
$url="http://playtv.fr/television/beblack-caribbean/";
$link=str_replace("television/","player/play/",$url)."?bitrate=0&format=hls&language=fr";
$m3u8=json_decode(file_get_contents($link))->url;
$Fnm = "m3u8.txt"; $inF = fopen($Fnm,"w"); fputs($inF,"$m3u8");
fclose($inF);
?>
of course you must have php an ffmpeg
if you want with some change it's possible to add date and time for the output file
example 2015-05-30_10-33-52beblack-caribbean.ts
vBulletin® , Copyright ©2000-2025, Jelsoft Enterprises Ltd.