ReCast is a multi platform restreaming tool, you can stream with one servers to multiple services
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

56 lines
1.2 KiB

<?php
namespace App\Component\Services;
use App\Entity\Endpoint;
/**
* Class Youtube
* @author Soner Sayakci <shyim@posteo.de>
*/
class StreamMe extends AbstractService
{
/**
* @return string
* @author Soner Sayakci <shyim@posteo.de>
*/
public function getName(): string
{
return 'Stream.me';
}
/**
* @return bool
* @author Soner Sayakci <shyim@posteo.de>
*/
public function hasServerList(): bool
{
return true;
}
/**
* @return array
* @author Soner Sayakci <shyim@posteo.de>
*/
public function getServerList(): array
{
return [
'US, Central' => 'rtmp://uc-origin.stream.me/origin',
'US, East' => 'rtmp://ue-origin.stream.me/origin',
'US, West' => 'rtmp://uw-origin.stream.me/origin',
'Europe, West' => 'rtmp://ew-origin.stream.me/origin',
'Asia, East' => 'rtmp://ae-origin.stream.me/origin'
];
}
/**
* @param Endpoint $endpoint
* @return string
* @author Soner Sayakci <shyim@posteo.de>
*/
public function buildStreamUrl(Endpoint $endpoint): string
{
return $endpoint->getServer() . '/' . $endpoint->getStreamKey();
}
}