Quote:
Originally Posted by Anywho
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.