Live streaming in Chrome

Forum for questions and support relating to the 1.25.x releases only.
Locked
pwiseman
Posts: 3
Joined: Sat Feb 23, 2013 3:04 am

Live streaming in Chrome

Post 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
axelm
Posts: 46
Joined: Wed Feb 06, 2013 1:50 pm

Re: Live streaming in Chrome

Post by axelm »

Works for me. Thanks :)

Google Chrome Version 25.0.1364.97 m running on Windows 8
Locked