Jasper

Results 16 comments of Jasper

I assume the Youtube API that Espera tries to query is not supported anymore. Espera makes an HTTP request like this: https://gdata.youtube.com/feeds/api/videos?q=foobar&max-results=50&safeSearch=none&orderby=relevance Youtube responds with HTTP/1.1 410 Gone

I'm working on it: https://github.com/jasper-d/Espera/commit/9e63e47d255effebc37f5ad6fb3f796669a89610 (you will need to provide a proper API key to test it). Searching videos works, but playback does not (downloading does though). Not sure what...

Well, this looks bad. MediaElement doesn't support HTTPS and Youtube requires HTTPS. Could possibly work by using OWIN inbetween.

As a workaround, one can specify credential helpers for private registries explicitly. I did that because the default credential store does not support AWS ECR tokens (they are to long):...

I'm facing the same issue (at least the symptoms are identical). I used mTLS for the repro, it's documented here: https://github.com/jasper-d/nack/commit/bc5d472a8f49a684031d1b33a59654617d017328 Each directory is essentially one step and after applying...

After debugging the controller, turned out I was missing the `--crd-connect` flag when starting the controller. After adding it, streams and consumers are created as expected. :) ~~Maybe that something...