R4SAS
6 years ago
8 changed files with 320 additions and 2 deletions
Binary file not shown.
@ -0,0 +1,53 @@ |
|||||||
|
<?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(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,52 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
|
||||||
|
namespace App\Component\Services; |
||||||
|
|
||||||
|
use App\Entity\Endpoint; |
||||||
|
|
||||||
|
/** |
||||||
|
* Class Youtube |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
class GoodGame extends AbstractService |
||||||
|
{ |
||||||
|
/** |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function getName(): string |
||||||
|
{ |
||||||
|
return 'GoodGame'; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @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 [ |
||||||
|
'Moscow' => 'rtmp://msk.goodgame.ru:1940/live' |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @param Endpoint $endpoint |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function buildStreamUrl(Endpoint $endpoint): string |
||||||
|
{ |
||||||
|
return $endpoint->getServer() . '/' . $endpoint->getStreamKey(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,52 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
|
||||||
|
namespace App\Component\Services; |
||||||
|
|
||||||
|
use App\Entity\Endpoint; |
||||||
|
|
||||||
|
/** |
||||||
|
* Class Youtube |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
class Livestream extends AbstractService |
||||||
|
{ |
||||||
|
/** |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function getName(): string |
||||||
|
{ |
||||||
|
return 'Livestream'; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @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 [ |
||||||
|
'Default' => 'rtmp://rtmpin.livestreamingest.com/rtmpin' |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @param Endpoint $endpoint |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function buildStreamUrl(Endpoint $endpoint): string |
||||||
|
{ |
||||||
|
return $endpoint->getServer() . '/' . $endpoint->getStreamKey(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,52 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
|
||||||
|
namespace App\Component\Services; |
||||||
|
|
||||||
|
use App\Entity\Endpoint; |
||||||
|
|
||||||
|
/** |
||||||
|
* Class Youtube |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
class StreamLive extends AbstractService |
||||||
|
{ |
||||||
|
/** |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function getName(): string |
||||||
|
{ |
||||||
|
return 'Stream.Live'; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @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 [ |
||||||
|
'Default' => 'rtmp://media.stream.live:1935/live' |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @param Endpoint $endpoint |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function buildStreamUrl(Endpoint $endpoint): string |
||||||
|
{ |
||||||
|
return $endpoint->getServer() . '/' . $endpoint->getStreamKey(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
<?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(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,52 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
|
||||||
|
namespace App\Component\Services; |
||||||
|
|
||||||
|
use App\Entity\Endpoint; |
||||||
|
|
||||||
|
/** |
||||||
|
* Class Youtube |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
class Vimeo extends AbstractService |
||||||
|
{ |
||||||
|
/** |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function getName(): string |
||||||
|
{ |
||||||
|
return 'Vimeo'; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @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 [ |
||||||
|
'Default' => 'rtmp://rtmp.cloud.vimeo.com/live' |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @param Endpoint $endpoint |
||||||
|
* @return string |
||||||
|
* @author Soner Sayakci <shyim@posteo.de> |
||||||
|
*/ |
||||||
|
public function buildStreamUrl(Endpoint $endpoint): string |
||||||
|
{ |
||||||
|
return $endpoint->getServer() . '/' . $endpoint->getStreamKey(); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue