* Delete this topic *
Support our site by donate $5 directly to us Thanks!!!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
+ Reply to Thread
Results 1 to 10 of 10
-
Last edited by ozzier; 13th Jul 2016 at 17:17. Reason: * Delete this topic *
-
you get a different session ID
because every time you run it
its a new session
so you get a different session ID
nothing new there
theres nothing in the source page apart from the stream url
so you can scrape that page with
wget
Code:wget -q -O - "http://www.glturk.com/ajax.aspx?stream=live&type=free&ppoint=ShowTV_LR/ShowTV_LR" > file
or curl
Code:curl -s "http://www.glturk.com/ajax.aspx?stream=live&type=free&ppoint=ShowTV_LR/ShowTV_LR" > file2
Last edited by bobit; 12th Jul 2016 at 07:58.
-
* Delete this topic *
Last edited by ozzier; 13th Jul 2016 at 17:18. Reason: * Delete this topic *
-
both of those commands scrape fine
both of the scraped m3u8's play
it must be you (what are you trying to play them on)
that has got to be the easiest site in the world to scrape
both commands work all you have to do is copy and paste
if you cant scrape that site with that info then you better give up
the quality of those streams is terrible
why whould anyone want to scrape a site for terrible quality streamsLast edited by bobit; 12th Jul 2016 at 15:14.
-
* Delete this topic *
Last edited by ozzier; 13th Jul 2016 at 17:18.
-
-
* Delete this topic *
Last edited by ozzier; 13th Jul 2016 at 17:18.
-
your talking outter your a hole
you need to get the session ID from your own ip
when you use this site
-https://wget.alanreed.org/
you now have a session ID that belongs to the ip of alanreed.org
use wget in a terminal in linux
or use wget-1.18 for windows
from the ip that it will played on
the scraped m3u8 play on any device
vlc
kodi
enigma2
i can go on
i cant see why your having problems you must be thick
no other web page needed no cookie needed
just the url of the source and wget
scrape a page with a small peice of code
get the m3u8 and play it
can even add a small peice of sed code
and turn every link on that site into a m3u playlist
heres the link you posted in post 7
the scraped m3u8 playing in
vlc
and
xbmcLast edited by bobit; 13th Jul 2016 at 16:45.
-
God you just don't get it lol, your screenshot is just loading the direct aspx link and playing it.... No sh*t Sherlock, of course it'll work....
Quite a lot of your replies on this forum sound like you are an expert, yet are all invalid lol.
I'm done with this forum, goodbye!
* Admin, delete this topic *Last edited by ozzier; 13th Jul 2016 at 17:20. Reason: * Admin, Delete this topic *
-
the screenshots shows the page and the url that was scraped with wget
the stream url playing in vlc and xbmc is the url that was scraped with wget
let me show your thick brain how to scrape that page and turn it into a m3u
this script scrapes your crap stream with wget and sed edits the code into a working m3u
name of script
ShowTV_m3u_update.sh
chmod the script 755
Code:#!/bin/bash wget -q -O - "http://www.glturk.com/ajax.aspx?stream=live&type=free&ppoint=ShowTV_LR/ShowTV_LR" > /etc/ShowTV.m3u ;sed -i '1i #EXTM3U' /etc/ShowTV.m3u ;sed -i '2i #EXTINF:-1,ShowTV' /etc/ShowTV.m3u echo "ShowTV.m3u updated" exit 0
and theres you calling a stream url with a session ID via a different ip ie a webpage
then expect it to work on your ip
lol
good luck
thickoLast edited by bobit; 14th Jul 2016 at 08:33.
Similar Threads
-
How to embed m3u8 in web page
By nhurf in forum Video Streaming DownloadingReplies: 0Last Post: 30th Sep 2015, 14:53 -
Extracting m3u8 from a web-player
By colonial in forum Video Streaming DownloadingReplies: 0Last Post: 15th Jun 2014, 07:39 -
How to capture audio from web browser into Vegas?
By sdsumike619 in forum Capturing and VCRReplies: 3Last Post: 25th Mar 2013, 14:34 -
Play my videos at home from a web browser?
By marioval in forum Video Streaming DownloadingReplies: 0Last Post: 18th Oct 2012, 08:58 -
Browser script for HW accelerated flash web-videos
By Stears555 in forum Video Streaming DownloadingReplies: 9Last Post: 21st May 2012, 12:39