Conversation
…rror type error message in ws client.
fix docker file causing install errors
|
@Tomshiii Besides a lot of missing documentation, some human review, and some finalization and quality of life improvements (see progress list in the PR description) the new implementation in this PR is ready to be used already. All servers (HTTP with swagger, WS, and MCP) are functional. With half-decent AI-support, this should already be totally usable. Just tested it against Premiere 26.5.1. |
|
I should be able to have a play around next week. I'll let you know how I go 🫡 |
|
Have been able to get it up and running on two machines without a hitch (also 26.5.1). I'll keep using it and keep my eyes open but so far so good. Additionally I wanted to recommend a change to the usage instructions (for when you get that far) - at least for the ahk portion. Run('curl "http://localhost:8081/isPanelOpen"')I think it would be beneficial to also show usage using a comobject; v := httpGet("http://localhost:8081/isPanelOpen")
httpGet(url) {
static cobj := ComObject("WinHttp.WinHttpRequest.5.1")
cobj.Open("GET", url, false)
cobj.Send()
return cobj.ResponseText
}I say this for two reasons;
Just wanted to send that over as a consideration! I figured it might be useful to those that aren't aware of how to retrieve a response back using ahk but having the ability to do so obviously opens up a lot more possibilities in scripting things together. Thank you as always, this has come together great so far edit: also, random question, is installing via a ccx ever going to be possible? or does the whole docker situation make it a bit too complicated? |
This PR contains a full rewrite of PremiereRemote from scratch to support the modern UXP environment. This means a full replacement of any PremiereRemote logic, basically a new product.
New architecture, new Premiere API, more usage possibilities. Supporting HTTP, WS, and MCP servers. This PR is finished once the client/server architecture has been implemented and documented. Detailed action implementations will follow in a subsequent PR.
Progress: