iameli-streams

Results 17 comments of iameli-streams

Here's the command I found that works for generating a secp256r1 key/cert pair; took me about 45 minutes to figure this out and I had to reference this GitHub issue...

i think i also ran into this bug the other day

Fixed by deleting `"type": "module"` from maker-appimage's `package.json` and then everything just worked. Isn't modern JavaScript fun?

I hear you, and I don't disagree, ESM is definitely the way to go. I'm just unsure what to do to make it work. `forge.config.mts` seems to not work for...

> However if you want to use the go-gst element in a golang application there is a simpler way: just call the register function after `gst.Init`. This registers the element...

Documenting my attempts here... I'm using `gofilesink` unmodified from [here](https://github.com/go-gst/go-gst/blob/7bc995c4f5783470255577bdd9c1c888989f486c/examples/plugins/gofilesink/filesink.go), except I changed the package to `gofilesink` from `main` so I can import it. ### Attempt 1 I modified the...

Ah, confirmed it was https://github.com/go-gst/go-glib/pull/16 causing my problems, updating to v1.3.0 got it working!

Hah, thank you for this, I had a moment the other day where I was staring at all my mainloops going... wait, do these do anything?

> it sounds like the problem is already here? > > ```go > pipeline, err := gst.NewPipelineFromString("appsrc name=src ! appsink name=sink") > if err != nil { > return err...

Another curious clue... I implemented a self-exec to try and automatically fix the error if the self-test failed. It just ran for the first time, and it worked but this...