Results 4 comments of Justin

Did you check https://github.com/mediacms-io/mediacms/blob/main/docs/admins_docs.md#12-video-transcoding ?

Activated Debug Mode and found this in a debug.log: ``` root@0dc592633793:/home/mediacms.io/mediacms/logs# cat debug.log Internal Server Error: /fu/upload/ Traceback (most recent call last): File "/home/mediacms.io/lib/python3.8/site-packages/django/core/handlers/exception.py", line 47, in inner response =...

Adjusted "helpers.py" in "files" folder and added the replacement on line 446. ``` stdout = run_command(cmd).get("out") stdout = stdout.replace("|","") stream_size = sum([int(line) for line in stdout.split("\n") if line != ""])...

The issue: API Specification (swagger) and API Implementation are different. Possible Solution: Generate API Specification automatically from the Implementation code.