Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1111  
Old 04-14-2015, 06:33 PM
mce mce is offline
Senior Membrane
 
Join Date: Jul 2010
Posts: 116
mce is on a distinguished road
Default

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.
Reply With Quote
  #1112  
Old 04-14-2015, 07:50 PM
dman dman is offline
Junior Member
 
Join Date: Apr 2015
Location: Melbourne
Posts: 4
dman is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by gxdata View Post
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.
Reply With Quote
  #1113  
Old 04-15-2015, 04:43 AM
dh0001 dh0001 is offline
Junior Member
 
Join Date: Apr 2015
Posts: 3
dh0001 is on a distinguished road
Default

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
Reply With Quote
  #1114  
Old 04-15-2015, 09:29 AM
mce mce is offline
Senior Membrane
 
Join Date: Jul 2010
Posts: 116
mce is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Thanks, works.
Reply With Quote
  #1115  
Old 04-15-2015, 04:33 PM
gxdata gxdata is offline
Western Wombat
 
Join Date: Feb 2009
Posts: 332
gxdata is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by dh0001 View Post
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!

Last edited by gxdata : 04-15-2015 at 04:52 PM. Reason: Found a suitable cURL version
Reply With Quote
  #1116  
Old 04-15-2015, 11:34 PM
dh0001 dh0001 is offline
Junior Member
 
Join Date: Apr 2015
Posts: 3
dh0001 is on a distinguished road
Default

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'):
Reply With Quote
  #1117  
Old 04-15-2015, 11:38 PM
kauer kauer is offline
iView User
 
Join Date: Apr 2015
Posts: 2
kauer is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by dh0001 View Post
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?
Reply With Quote
  #1118  
Old 04-16-2015, 05:00 AM
mce mce is offline
Senior Membrane
 
Join Date: Jul 2010
Posts: 116
mce is on a distinguished road
Default

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.
Reply With Quote
  #1119  
Old 04-16-2015, 08:59 AM
dh0001 dh0001 is offline
Junior Member
 
Join Date: Apr 2015
Posts: 3
dh0001 is on a distinguished road
Default

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"
Reply With Quote
  #1120  
Old 04-17-2015, 03:07 AM
Blaxland.john Blaxland.john is offline
Junior Member
 
Join Date: May 2011
Location: Blaxland NSW
Posts: 16
Blaxland.john is on a distinguished road
Default

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
Reply With Quote
Reply Post New Thread
Tags: , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


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


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons