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.
 
 
 
 
 

53 lines
1.1 KiB

<?php
namespace App\Component\Services;
use App\Entity\Endpoint;
/**
* Class Youtube
* @author Soner Sayakci <shyim@posteo.de>
*/
class CyberGameTV extends AbstractService
{
/**
* @return string
* @author Soner Sayakci <shyim@posteo.de>
*/
public function getName(): string
{
return 'CyberGame.TV';
}
/**
* @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 [
'RU Origin' => 'rtmp://st.cybergame.tv:1953/live',
'RU Premium' => 'rtmp://premium.cybergame.tv:1953/premium'
];
}
/**
* @param Endpoint $endpoint
* @return string
* @author Soner Sayakci <shyim@posteo.de>
*/
public function buildStreamUrl(Endpoint $endpoint): string
{
return $endpoint->getServer() . '/' . $endpoint->getStreamKey();
}
}