Jonathan Pentecost

Results 117 comments of Jonathan Pentecost

This sometimes happens when `go-chromecast` is looking on a different network interface than what the chromecast is connected to. Can you confirm that `go-chromecast` has access to the network interface...

`$ go-chromecast ls --iface wlp3s0` is the correct format. Does that work for you?

The other thing would be to check if you have any firewall rules setup on Xubuntu that might be dropping the traffic. `go-chromecast` uses [mDNS](https://en.wikipedia.org/wiki/Multicast_DNS) to discover devices on the...

That would be quite cool. I don't know how to do it, or if it is even possible, but if you come across some resources or anything I'd be keen...

I didn't realise `ffmpeg` could do that! You're correct, we should be able to use `ffmpeg` to cast the desktop since we already use it for transcoding. When I find...

This sounds like a good addition. I think this could be added to the [playlist](https://github.com/vishen/go-chromecast/blob/master/cmd/playlist.go) command. Currently if the `playlist` command gets an argument that isn't a directory it fails,...

> I implemented this, more or less, in #180. I can change it to be integrated with `playlist` instead ? I think it's fine to leave as is, this should...

Hello @kimasplund, if I'm understanding correctly, you should be able to use `go-chromecast playlist ` https://github.com/vishen/go-chromecast#playlist-1. However I haven't used this functionality in a while so it may not work...

@alexballas at the moment you need to call `app.Update()` to populate the media: https://github.com/vishen/go-chromecast/blob/master/ui/update_status.go#L41-L45 This probably isn't the best API, but for now it is how it works.

Hmm, I don't think anything is exposed at the moment. There is a private field to track whether the media is playing or not https://github.com/vishen/go-chromecast/blob/master/application/application.go#L119 (although I am not 100%...