diff --git a/src/resources.py b/src/resources.py index 29a9d08..6ffd296 100644 --- a/src/resources.py +++ b/src/resources.py @@ -202,7 +202,7 @@ class CreateIngestResource(Resource): abort(417, INVALID_JSON_SCHEMA_MSG) ingest = StreamResource(resource_type=StreamResourceTypeEnum['INGEST'], - url="rtmp://zelenka.tormakristof.eu:6969/origin/asdasd", x=ingestobj['x'], + url="rtmp://zelenka.tormakristof.eu/origin", x=ingestobj['x'], y=ingestobj['y']) username = get_jwt_identity() @@ -255,7 +255,7 @@ class CreateRestreamResource(Resource): abort(417, INVALID_JSON_SCHEMA_MSG) restream = StreamResource(resource_type=StreamResourceTypeEnum['RESTREAM'], - url="rtmp://zelenka.tormakristof.eu:6969/origin/asdasd", x=restreamobj['x'], + url="rtmp://zelenka.tormakristof.eu/origin", x=restreamobj['x'], y=restreamobj['y']) username = get_jwt_identity() @@ -307,7 +307,7 @@ class CreateEncodeResource(Resource): abort(417, INVALID_JSON_SCHEMA_MSG) encoder = StreamResource(resource_type=StreamResourceTypeEnum['ENCODE'], - url="rtmp://zelenka.tormakristof.eu:6969/origin/asdasd", x=encoderobj['x'], + url="rtmp://zelenka.tormakristof.eu/origin", x=encoderobj['x'], y=encoderobj['y']) username = get_jwt_identity()