1
0
mirror of https://github.com/r4sas/recastin-panel synced 2025-08-31 07:52:13 +00:00

Fixed stream url on mixer

This commit is contained in:
Shyim 2018-04-25 20:33:00 +02:00
parent 18bdb8049c
commit e6225c71d8

View File

@ -45,6 +45,6 @@ class Mixer extends AbstractService
*/
public function buildStreamUrl(Endpoint $endpoint): string
{
return 'rtmp://' . $endpoint->getServer() . '/' . $endpoint->getStreamKey();
return 'rtmp://' . $endpoint->getServer() . ':1935/beam' . $endpoint->getStreamKey();
}
}