View Single Post
  #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