make it work
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-12-08 21:10:27 +01:00
parent abdbda191b
commit e45be47feb
1 changed files with 3 additions and 3 deletions

View File

@ -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()