JSFiddle - React, Tailwind, and code Playground
by arjuncc
HTML
<!Doctype HTML>
<html>
<head>
<title>Test</title>
</head>
<body>
<div >
<embed id="tvtplayer" height="300" name="MediaPlayer" src="http://www.bloomberg.com/streams/video/LiveBTV56.asxx" ShowControls="1" ShowDisplay="0" ShowStatusBar="0" type="application/x-mplayer2" width="420" autostart="1" stretchToFit="true" uiMode="mini"> </embed>
</div>
<p>
<input type="button" value="Bloombreg TV" onclick="stream('http://www.bloomberg.com/streams/video/LiveBTV56.asxx')">
<input type="button" value="BBC Arabic" onclick="stream('http://www.bbc.co.uk/arabic/meta/tx/nb/atv_live_16x9_nb.asx')">
<p>
</body>
</html>
JavaScript
function stream(url)
{
document.getElementById('tvtplayer').src = url;
}