Jean-Pierre Coetzee

Results 35 comments of Jean-Pierre Coetzee

This `server = osc_server.ThreadingOSCUDPServer(("127.0.0.1", 5006), dispatcher)` needs to be `server = osc_server.ThreadingOSCUDPServer(("0.0.0.0", 5006), dispatcher)` when not on the same host, 127.0.0.1 means you are specifically only listening for messages originating...

Will try to think of a way to make it clearer. Want to say that in the pre-built Qt 5.14.2 binaries installer that that option should be ticked. It's not...

I have updated the commit, hopefully it makes more sense now.

Second commit seems to allow the other two threads to cleanly end. Still not sure if this is the correct solution. I also suspect this case will never happen ```...

Thinking about this code a bit more, if feels like it is pointless to keep in, also move the eof=true into the catch. Let me know if this should be...

Looking at https://github.com/CasparCG/server/issues/1460 again... This would prevent the crash but would also end the video playback. Adding a new try catch in the loop would prevent that, the question is...

https://github.com/CasparCG/server/issues/1444 is also solved by this. Would be great for @ronag to give some feedback here. https://github.com/CasparCG/server/issues/1444 https://github.com/CasparCG/server/issues/1451 https://github.com/CasparCG/server/issues/1460 are all related to the changes in commit [b657428](https://github.com/CasparCG/server/commit/b657428db652a2ef43601fc3923934498506a916). Before that...

Should we be catching `catch (ffmpeg::ffmpeg_error_t& ex) {` here instead of all since we really only are looking for the ffmpeg errors?

> Hi @jpc0 thank you for looking into this. > > Few days ago I tried commit 8a4befd (which now isn't in commit history) and it worked well for me....