Jonathan Pentecost
Jonathan Pentecost
Due to legacy reasons, we try and detect the content type of the media file we are trying to load. This was originally because we always used to transcode the...
At the moment each application has it's own http server to serve media to the chromecast. If there is a `httpserver` running, it should use that instead of each application...
At the moment `--debug -v` is a catch all for verbose and debug output. A cleanup should be done to ensure that --debug is only used for cast debugging and...
Currently the description of the `--cache` flag is very unhelpful. This should be better documented in the cmd flags and possibly the readme. There should also be a command to...
Create a docker image that includes ffmpeg, ideally based off alpine, but debian is probably fine. The http server runs using a random port, this may need to be specified...
There is `LoadMediaCommand.CurrentTime` which _could_ be used to start playing the loaded media from a starting time.
I may be doing something wrong, or using it wrong, but I am getting errors when generating the HTTP client with the following openapi spec: ``` # openapi.yaml openapi: 3.0.0...
The following will cause errors with the proto parser we are using: ``` // example.proto syntax = "proto3"; package pokemon.example; ``` results in ``` go run main.go convert example.proto --overwrite...
At the moment we either ignore or error on all proto options when converting proto to gunk. We should attempt to convert the proto options to gunk options if possible.