Issac Trotts
Issac Trotts
Sure, I'm learning PropEr now so I'm off to a start on it. On Sat, Dec 31, 2016 at 5:17 PM Joseph Wayne Norton < [email protected]> wrote: > Thank you...
Sure. I wanted it to tell me the file and line number where the problem occurred.
Ah, okay. How would you change the slider example to sync across tabs?
Okay, I see there's a section in the README, but I still think it would be more convincing with a benchmark.
@Soykertje , I changed the exec line to this (just added "-threads", "1") and it worked: await ffmpeg.exec(["-threads", "1", "-f", "mov", "-i", "input.mov", "-vf", "scale=-2:480", "output.mov"]);
I added those headers and confirmed that they are being added in the Chrome dev console. However, I still get the "SharedArrayBuffer is not defined" error. Update: I cleared the...
Any comment on this? Are you still actively maintaining this project?
Hi Matt, Thanks, I'm glad you like it. As far as adding the functionality directly to the slice typewriter, that's what I tried first but I figured it made more...
Here's examples/chat-completion-streaming-tool-calling/main.go in my repo, for reference: ```go package main import ( "context" "encoding/json" "fmt" "github.com/openai/openai-go" ) func main() { client := openai.NewClient() ctx := context.Background() question := "What is...