Page 1 of 1

Live streaming in Chrome

Posted: Sat Feb 23, 2013 3:15 am
by pwiseman
As others have reported, live streaming does not work in Chrome. I took a look at the source code for the feed page, and noticed this:

var canStreamNative = false;

I searched for canStreamNative in functions.php, and found its eponymous function, preventing Chrome from streaming:

function canStreamNative()
{
// Chrome can display the stream, but then it blocks everything else (Chrome bug 5876)
// return( ZM_WEB_CAN_STREAM == "yes" || ( ZM_WEB_CAN_STREAM == "auto" && (!isInternetExplorer() && !isChrome()) ) );
return( ZM_WEB_CAN_STREAM == "yes" || ( ZM_WEB_CAN_STREAM == "auto" && (!isInternetExplorer()) ) );
}

I edited it, as you see, commenting out the original line and replacing it with one removing the isChrome() test. I did no research on the referenced bug, but my streaming is now working and Chrome seems otherwise unaffected.

Patrick

Re: Live streaming in Chrome

Posted: Fri Mar 01, 2013 12:05 pm
by axelm
Works for me. Thanks :)

Google Chrome Version 25.0.1364.97 m running on Windows 8