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

How to use iView (ABC Australia) downloaders

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

mce 04-14-2015 06:33 PM

Re: How to use iView (ABC Australia) downloaders


 
Just read a message from <anon> who send me a wireshark capture.

It shows that the metered stuff has now been 'Brightcoved' like the unmetered stuff was.

The URL is now like:

http://iviewmetered-vh.akamaihd.net/i/playback/_definst_/_video/drwhohuman_01_12_,650000,495000,205000,40755,.mp4. csmil/master.m3u8?hdnea=st=1429012222~exp=1429222712~acl =/*~hmac=580ec2d7e2eb206259163c526702cb42db0f9279e2b 62ec2b2d94f2293a07292

That will get the SMIL to the segments.

This is the same AdobeHDS that affects SBSOD.

Thanks <anon> for helping out.

[edit]

Oops, I see dman already posted similar. :)

Thanks dman.

dman 04-14-2015 07:50 PM

Re: How to use iView (ABC Australia) downloaders


 
Quote:

Originally Posted by gxdata (Post 75786)
dman, how do you use Internet Download Manager to get an iView show?
I assume you need to go to the iView player, and that it can capture the show as it begins to play - not forcing you to wait while the 30 minutes or so is shown?

So I just use my web browser, I use Firefox, but Chrome also works, and I go to the iview page, navigate to the program I want to watch and when the program starts playing a download button appears usually at the top right hand corner of the picture - I can then select the resolution I want to download it at, and off it goes. At that point, I stop the main display and usually the program then comes down at the full speed of my connection which is around 8-9Mbit.

IDM installs an extension in the browser which monitors download clicks and embedded media allowing you to download not only iview but streaming media content from most sources.

Cheers.

dh0001 04-15-2015 04:43 AM

Re: How to use iView (ABC Australia) downloaders


 
Simple downloading the unchangeable Samsung way.
Enjoy

curl -u "Authorization:Basic ZmVlZHRlc3Q6YWJjMTIz" "https://tviview.abc.net.au/iview/feed/samsung/?keyword=0-z"

select the show you want and grap the videoAsset

<abc:videoAsset><![CDATA[https://abcsecurehttp-a.akamaihd.net/playback/_definst_/kids/skittingme_02_04.mp4?d=samsung&a=b18ee9d6acbeb42de 65e0403e10d938c]]></abc:videoAsset>

fmpeg -i "https://abcsecurehttp-a.akamaihd.net/playback/_definst_/kids/skittingme_02_04.mp4?d=samsung&a=b18ee9d6acbeb42de 65e0403e10d938c" -c copy -y x.mp4

mce 04-15-2015 09:29 AM

Re: How to use iView (ABC Australia) downloaders


 
Thanks, works.

gxdata 04-15-2015 04:33 PM

Re: How to use iView (ABC Australia) downloaders


 
Quote:

Originally Posted by dh0001 (Post 75792)
Simple downloading the unchangeable Samsung way.
Enjoy

curl -u "Authorization:Basic ZmVlZHRlc3Q6YWJjMTIz" "https://tviview.abc.net.au/iview/feed/samsung/?keyword=0-z"

select the show you want and grap the videoAsset

<abc:videoAsset><![CDATA[https://abcsecurehttp-a.akamaihd.net/playback/_definst_/kids/skittingme_02_04.mp4?d=samsung&a=b18ee9d6acbeb42de 65e0403e10d938c]]></abc:videoAsset>

fmpeg -i "https://abcsecurehttp-a.akamaihd.net/playback/_definst_/kids/skittingme_02_04.mp4?d=samsung&a=b18ee9d6acbeb42de 65e0403e10d938c" -c copy -y x.mp4

I'm not familiar with curl parameters. Using the above, I get an error:
curl: (1) Protocol https not supported or disabled in libcurl

Running curl -V, --version gives me this version information:

Quote:

curl 7.25.0 (i386-pc-win32) libcurl/7.25.0 zlib/1.2.6
Protocols: dict file ftp gopher http imap ldap pop3 rtsp sm
Features: AsynchDNS GSS-Negotiate Largefile NTLM SSPI libz
Should I download another / later version?
[edit]
I downloaded from here
http://www.paehl.com/open_source/?do..._741_0_ssl.zip
v7.41.0 Download WITH SUPPORT SSL

but using the -k parameter (turns off certificate verification), I still didn't get any output.

Quote:

curl -k --insecure -u "Authorization:Basic ZmVlZHRlc3Q6YWJjMTIz" "https://tviview.abc.net.au/iview/feed/samsung/?keyword=0-z"
Help, please!

dh0001 04-15-2015 11:34 PM

Re: How to use iView (ABC Australia) downloaders


 
my curl -V
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smtp smtps telnet tftp

You're missing openssl
But who needs curl.

Anything that support https

ie python
headers = {'Authorization': 'Basic ZmVlZHRlc3Q6YWJjMTIz' }
url = "https://tviview.abc.net.au/iview/feed/samsung/?keyword=0-z"
req = Request(url, None, headers)
res = urlopen(req, timeout=30)
xml = fromstring(res.read().decode("utf-8"))

for item in xml.getiterator('item'):

kauer 04-15-2015 11:38 PM

Re: How to use iView (ABC Australia) downloaders


 
Quote:

Originally Posted by dh0001 (Post 75792)
Simple downloading the unchangeable Samsung way.

The curl command returns 1, and otherwise does nothing. It doesn't display data, create a file, display an error message or anything else.

It does this pretty much instantly - about 20 mlliseconds. That's too quick. Looking at the exchange with wireshark, I see curl connecting, establishing the SSL connection, then a five or six hundred bytes are returned, no more. The the connection is terminated by curl.

Any ideas?

mce 04-16-2015 05:00 AM

Re: How to use iView (ABC Australia) downloaders


 
In the end I had to use this.

curl -k -H "Authorization:Basic ZmVlZHRlc3Q6YWJjMTIz" "https://tviview.abc.net.au/iview/feed/samsung/?keyword=0-Z"

Then use your favorite multi-part downloader to fetch the video from the <abc:videoAsset> tag.

dh0001 04-16-2015 08:59 AM

Re: How to use iView (ABC Australia) downloaders


 
more ?

curl "https://tviview.abc.net.au/iview/feed/sony/?keyword=0-Z"

json output
curl -k -H "Authorization:Basic ZmVlZHRlc3Q6YWJjMTIz" "https://tviview.abc.net.au/iview/feed/Humax/?keyword=0-Z"

curl "https://tviview.abc.net.au/iview/feed/xbox/?keyword=0-Z"

json m3u8 hls
curl "https://tviview.abc.net.au/iview/feed/fetch/?keyword=0-Z"

Blaxland.john 04-17-2015 03:07 AM

Re: How to use iView (ABC Australia) downloaders


 
I had a general look at <title>Never miss a moment : ABC iview</title>
The Very start point


I had noticed Subtitles using IVIEW napper for Post april 12 - New Format would be downloaded with it.

Well Subtitles are now XML by the look of it.

Doctor Series 1 - 10 was one of these

ABC Doctor Series 1 10 Uses XML for Subtitles Beware
http://cdn.iview.abc.net.au/cc/drwhohuman_01_10.xml
http://iview.abc.net.au/cc/anzacgirls_01_06.xml'
ep.captions = 'http://iview.abc.net.au/cc/poldark_01_01.xml';

I tried
http://iview.abc.net.au/cc/drwhohuman_01_10.xml
CDN is not required


They now have a standard format

USE
http://www.videohelp.com/software/Subtitle-Edit
Software > Subtitle > Subtitle Edit 3.4.6


All times are GMT -6. The time now is 06:20 PM.