transcoder
transcoder copied to clipboard
404
I keep getting a 404 when I attempt to open a video file using your server:
10.7.7.80 - - [17/Jul/2017 23:27:54] "GET /library/Movies%2Mv1184_watts_sd.mp4 HTTP/1.1" 404 -
Any ideas?
How do you get that link? Through the browser?
Thats the error that gets thrown on the cli in on the server when I try and click on a video in the browser.
Hey,
I was getting the same error. If you remove the try: except block in @app.route("/library/<path:path>")
you can see where it fails if you have debug mode enabled. Then you'll see that the app wants to write to a file in cache/ but gets a No such file or directory
error. So just create a directory named cache inside the library directory and you're good.
Maybe @derolf can add an empty folder to the repository so in the future people can just clone the app and start using it.