Hi! Thank you for signing up for Streamasaurus! Please use the following information to configure your streaming software for Streamasaurus:
rtmp://rtmp.streamasaurus.com:1935/streamasaurus
?password=yourchosenpassword
Example for OBS Studio
Additionally, you may embed streamasaurus on your website with the following code:
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<video controls="" id="video" width="parent" height="parent"></video>
<script>
varvideo=document.getElementById('video');
if (Hls.isSupported()) {
varhls=newHls();
hls.loadSource('https://scaler.streamasaurus.com:8080/hls/[user_login].m3u8');
hls.attachMedia(video);
hls.on(Hls.Events.MANIFEST_PARSED, function() {
video.play();
});
}
elseif (video.canPlayType('application/vnd.apple.mpegurl')) {
video.src='https://scaler.streamasaurus.com:8080/hls/[user_login].m3u8';
video.addEventListener('loadedmetadata', function() {
video.play();
});
}
</script>