View Single Post
  #459  
Old 03-03-2011, 09:22 PM
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 Anywho View Post
Darn it... Still busted for me.

v1.2.0 was the last one that works for me. This one (and v1.2.2) gets to the "Save To..." dialog, you click "OK" and then the dialog closes. RTMPdump doesn't start (and testing shows it never gets executed).

Sorry
Bummer.

I'm stumped as to why it's not working for some people. The only thing different I guess is that I'm testing under Windows inside a VirtualBox on OSX. But I don't think that would make a difference.

If you can be bothered, could you try a little experiment for me? Open the iv.jsm file in the iviewfox extensions folder in the Firefox profiile directory and change this code around line 343:
Code:
let fileCC = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);	
fileCC.initWithPath(iViewFox.getrtDump);
process.init(fileCC);
process.run(false, args, args.length);
to
Code:
let fileCC = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);	
fileCC.initWithPath("C:\\WINDOWS\\NOTEPAD.EXE");	//assuming that's where it is on your system
process.init(fileCC);
process.run(false, [], 0);
Save the file then restart Firefox. That should then open notepad on windows when you try to watch a show on iView.

Last edited by Yansky : 03-03-2011 at 10:42 PM. Reason: meh
Reply With Quote