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
  #631  
Old 05-18-2011, 08:49 PM
spaceghost spaceghost is offline
Junior Member
 
Join Date: Mar 2011
Posts: 5
spaceghost is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Do Nine and Ten networks use a different streaming standard/protocol to the others? Is that why there doesn't seem to be any download programs for them?
Reply With Quote
  #632  
Old 05-19-2011, 02:23 AM
Yansky Yansky is offline
Member
 
Join Date: May 2010
Posts: 92
Yansky is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by spaceghost View Post
Do Nine and Ten networks use a different streaming standard/protocol to the others? Is that why there doesn't seem to be any download programs for them?
Should be fairly easy to do one for Channel 10's site: http://ten.com.au/watch-tv-episodes-online.htm

The Channel 9 site uses Silverlight which makes things a bit hard.

Anywho, MCE, I had a quick look at the Channel 10 site with Firebug and it looks fairly easy to replicate. Here's the details:

Code:
POST http://api.v2.movideo.com/rest/media/107549/smil?token=ec93fe1d-199c-4f41-811b-b2d5819141e5
responseXML:
<smil> 
  <head> 
    <meta base="rtmpe://159.rtmpe.movideo.com/ondemand">  
    <meta name="id" content="107549">  
    <meta name="auth" content="auth=daEbnaHcIdcdzaFdxbda8cqcqatawcvcVdm-bn1mp9-4q-EnoFEqDFFnky&amp;aifp=9000&amp;slist=22/media/107549/">  
    <meta name="debugUrl" content="http://api.v2.movideo.com/rest/media/107549/smil?token=ec93fe1d-199c-4f41-811b-b2d5819141e5&amp;&amp;auth=daEbnaHcIdcdzaFdxbda8cqcqatawcvcVdm-bn1mp9-4q-EnoFEqDFFnky&amp;aifp=9000&amp;slist=22/media/107549/"> 
  </head>  
  <body> 
    <switch> 
      <video src="mp4:22/media/107549/672000-512x288.mp4" system-bitrate="800000" encoding-profile-name="Flash Fast DSL - 16:9 800000" height="288" width="512"></video>  
      <video src="mp4:22/media/107549/272000-512x288.mp4" system-bitrate="400000" encoding-profile-name="TEN Flash - 16:9 400000" height="288" width="512"></video>  
      <video src="mp4:22/media/107549/168000-512x288.mp4" system-bitrate="200000" encoding-profile-name="TEN Flash - 16:9 200000" height="288" width="512"></video> 
    </switch> 
  </body> 
</smil>
Reply With Quote
  #633  
Old 05-19-2011, 06:52 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


On a quick look, it looks a lot like SBS.

I'll have a look at it later on.
Reply With Quote
  #634  
Old 05-19-2011, 10:01 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


ABC iView messageboards, 18May:
Quote:
... please know that we are working on improving our service for users on lower speeds in the near future by offering adaptive bitrate streaming, so stay tuned for an update.
Cheers,
Mod.
Reply With Quote
  #635  
Old 05-25-2011, 02:05 AM
Yansky Yansky is offline
Member
 
Join Date: May 2010
Posts: 92
Yansky is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


edit: nm. I got confused by rtmpdsrv
Reply With Quote
  #636  
Old 06-03-2011, 04:38 AM
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


A coding question:

The CC (.SRT) file for Peep Show S7/5 is defective. It has an unclosed literal string about 4 lines into the XML file.

It's located at

http://www.abc.net.au/iview/captions...w_11_07_05.xml

For future reference, how can I directly download the XML file which is at a known URL - even if it has an error?

What I had been using (in .NET) was to read into a streamreader with HttpWebResponse.GetResponseStream
or
to use a small commandline downloader that uses http protocol and a Get.

Both of these methods error at the same location.
Reply With Quote
  #637  
Old 06-03-2011, 05:06 AM
Yansky Yansky is offline
Member
 
Join Date: May 2010
Posts: 92
Yansky is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by gxdata View Post
A coding question:

The CC (.SRT) file for Peep Show S7/5 is defective. It has an unclosed literal string about 4 lines into the XML file.

It's located at

http://www.abc.net.au/iview/captions...w_11_07_05.xml

For future reference, how can I directly download the XML file which is at a known URL - even if it has an error?

What I had been using (in .NET) was to read into a streamreader with HttpWebResponse.GetResponseStream
or
to use a small commandline downloader that uses http protocol and a Get.

Both of these methods error at the same location.
Maybe you could use cURL to download it: http://curl.haxx.se
Reply With Quote
  #638  
Old 06-03-2011, 05:09 AM
Yansky Yansky is offline
Member
 
Join Date: May 2010
Posts: 92
Yansky is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


If anyone on windows has some free time, the devs for MediaPortal are looking for testers for the new iView plugin: http://forum.team-mediaportal.com/on...tml#post753005
Reply With Quote
  #639  
Old 06-03-2011, 06:36 AM
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 Yansky View Post
Maybe you could use cURL to download it: http://curl.haxx.se
Thanks - I will try it.
Reply With Quote
  #640  
Old 06-15-2011, 10:18 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


With iViewNapper (v20110429), I have noticed that the Episode descriptions are minimal, for some shows only.
Blood, Sweat and Takeways is an example (there are many others).

Its description (to the left of the image) is -
(2011-06-15) [MP4]

If iVN's Debug is switched on, the saved file 'Blood, Sweat And Takeaways.JSON' does contain a lengthy description - which matches the iView Player's episode description:

Six young fast food junkies travel to South East Asia to see just what's involved in producing the food they take for granted. They must catch, harvest and process food products that are eaten every day in the UK.

Can that be fixed up, at the next release, mce ?
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 12:43 PM.


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