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
  #961  
Old 02-21-2014, 02:32 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


Version 20140222 is available.
  • Fix for illegal characters in filename.
Reply With Quote
  #962  
Old 02-21-2014, 09:59 PM
jmiezitis jmiezitis is offline
Junior Member
 
Join Date: Feb 2014
Posts: 1
jmiezitis is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Using version 20140222 of iViewNapper and 2.3r557 of rtmpdump to download Rake ~280Mb file and rtmpdump crashes approximately every 20%. Unfortunately cannot provide errors as the window rtmpdump runs in closes immediately. Log file does not show any errors either.

Not too much of an issue just means I have to start the fetch 5 times to get the episode.

Thanks for your work.
Reply With Quote
  #963  
Old 02-23-2014, 10:38 PM
dav1doz dav1doz is offline
Junior Member
 
Join Date: Feb 2014
Posts: 4
dav1doz is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


On an older PVR, the downloaded file wouldn't play. Examining it with ffprobe showed an flv container format, despite the .mp4 file name extension. Changing the extension to .flv, then:
"[path to]\ffmpeg" -i %1 -vcodec copy -acodec copy "%~n1.mp4"
fixed it.
Reply With Quote
  #964  
Old 02-27-2014, 01:01 AM
blood.eaglz blood.eaglz is offline
Member
 
Join Date: Jul 2010
Posts: 75
blood.eaglz is on a distinguished road
Smile

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by dav1doz View Post
...ffprobe showed an flv container format, despite the .mp4 file name extension. Changing the extension to .flv, then: "[path to]\ffmpeg" -i %1 -vcodec copy -acodec copy "%~n1.mp4" fixed it.
Yep, iView uses the F4V file container with a mp4 extension (for god knows what reason), so a lot of older hardware chokes on it without remuxing it first, though you do not need to change the extension first.

Since its been a while, and all previous downloads links are dead, here is my way of dealing with remuxing files.[download from google drive]

Basically its 2 bat files, a Zeranoe FFmpeg build and a dos app called recycle.exe from MaDdoG software CmdUtils v1.5.

The bat files and FFmpeg are in the same folder as the files we want to remux, while recycle.exe is put in the windows => system32 directory.

To do a single file drag and drop it onto remux.bat, and it will do its thing, the bat file has some redundancies built in (which is why recycle.exe is used rather than windows inbuilt delete.exe) as in the past some iView files have had garbage data at the beginning that resulted in unplayable remuxes, so if the original file was gone you had to start from scratch, then fix the original file with a hex editor, then remux it, luckily this is extremely rare now.

remux.bat copies the streams to a new file [original filename]_PROCESSING.mp4, in case the process f's up during the remux so you know it wasn't successful, and can just delete the processing file and start again. If successful it then renames it to [original filename]_ReMux.mp4, so you can tell at a glance if the file has already been remuxed, then sends the original to the recycle bin so its retrievable if need be.
Code:
ffmpeg -i %1 -vcodec copy -acodec copy "%~n1_PROCESSING.mp4" 
ren "%~n1_PROCESSING.mp4" "%~n1_ReMux.mp4"
recycle -f %1
feeder.bat is simply a for loop that sends all *.mp4 files through remux.bat, even previously remuxed ones.
Reply With Quote
  #965  
Old 02-27-2014, 02:55 AM
blood.eaglz blood.eaglz is offline
Member
 
Join Date: Jul 2010
Posts: 75
blood.eaglz is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Now on a different topic, where do we currently stand on getting unmetered downloads back?
Reply With Quote
  #966  
Old 02-28-2014, 04:35 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


When we can find the new Auth Key.
Reply With Quote
  #967  
Old 02-28-2014, 05:11 AM
blood.eaglz blood.eaglz is offline
Member
 
Join Date: Jul 2010
Posts: 75
blood.eaglz is on a distinguished road
Question

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by mce View Post
When we can find the new Auth Key.
Wait, you mean the token?

If so the akamihd unmetered stuff uses tokenhd from the same auth.xml

example
Code:
GET /z/playback/_definst_/goodgame_10_02.mp4/manifest.f4m?hdcore=true&hdnea=st=1393584602~exp=1393594601~acl=/*~hmac=b4d6bd5c6072716114003091ae1a8e579191d477e44bb6344ee8cb2fa86deb58&hdcore=2.10.3&g=YLMGAYNGTKEM
Reply With Quote
  #968  
Old 02-28-2014, 05:35 PM
SafeBoy63 SafeBoy63 is offline
Junior Member
 
Join Date: Feb 2014
Posts: 1
SafeBoy63 is on a distinguished road
Exclamation

Re: How to use iView (ABC Australia) downloaders


With reference to the new version of iview napper {thank you MCE!} ... we get this error:

************** Exception Text **************
System.Xml.XmlException: Reference to undeclared entity 'nbsp'. Line 184, position 11.
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.HandleGeneralEntityRe ference(String name, Boolean isInAttributeValue, Boolean pushFakeEntityIfNullResolver, Int32 entityStartLinePos)
at System.Xml.XmlTextReaderImpl.ResolveEntity()
at System.Xml.XmlLoader.LoadEntityReferenceNode(Boole an direct)
at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.LoadXml(String xml)
at iViewNapper.Form1.ProcessiView()
at iViewNapper.Form1.Form1_Shown(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnShown(EventArgs e)
at System.Windows.Forms.Control.InvokeMarshaledCallba ckHelper(Object obj)
at System.Threading.ExecutionContext.runTryCode(Objec t userData)
at System.Runtime.CompilerServices.RuntimeHelpers.Exe cuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.Run(ExecutionCon text executionContext, ContextCallback callback, Object state)
at System.Windows.Forms.Control.InvokeMarshaledCallba ck(ThreadMethodEntry tme)
at System.Windows.Forms.Control.InvokeMarshaledCallba cks()


************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5477 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
iViewNapper
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///S:/Napper%20Downloads/iViewNapper_20140222.exe
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5467 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5468 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5467 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Runtime.Remoting
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
System.Configuration
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5476 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5476 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Web.Extensions
Assembly Version: 3.5.0.0
Win32 Version: 3.5.30729.5458
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Web.Extensions/3.5.0.0__31bf3856ad364e35/System.Web.Extensions.dll
----------------------------------------
System.Web.Abstractions
Assembly Version: 3.5.0.0
Win32 Version: 3.5.30729.5420
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Web.Abstractions/3.5.0.0__31bf3856ad364e35/System.Web.Abstractions.dll
----------------------------------------
System.Web
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5479 (Win7SP1GDR.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_64/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll
----------------------------------------
System.Core
Assembly Version: 3.5.0.0
Win32 Version: 3.5.30729.5420 built by: Win7SP1
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.




What did we do wrong ?
Reply With Quote
  #969  
Old 03-03-2014, 08:48 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


'Napper, latest: ABC News series has an error, ShowPicture

************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
at iViewNapper.Form1.ShowPicture()
at iViewNapper.Form1.ListBox1_SelectedIndexChanged(Ob ject sender, EventArgs e)
Reply With Quote
  #970  
Old 03-04-2014, 06:29 AM
m4rk01 m4rk01 is offline
Junior Member
 
Join Date: Jan 2013
Location: Central Coast, NSW
Posts: 29
m4rk01 is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Quote:
Originally Posted by WesternWombat View Post
... iView seems to miss out days at a time ... Has anyone else noticed this?
Yes, QI was missing every Friday for awhile. Even now, Series 7 has started at Episode 3. It requires pressing them via http://www2b.abc.net.au/tmb/Client/M...8&t=7&te=False
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 08:46 AM.


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