Clint Lombard
Clint Lombard
The only solution I could come up with using `appsink` was: ```golang buffer.Map(gst.MapRead).Bytes() ``` which makes a copy. However, if you use an `identity` element and use it's `handoff` signal...
I'm having a similar issue with setting the `active-pad` property (requires `*GstPad`) of an `input-selector` element. ```golang package main import ( "fmt" "log" "time" "github.com/tinyzimmer/go-gst/gst" ) func main(){ gst.Init(nil) pipeline,...
Have you manually installed tpm or used the [automatic installation](https://github.com/tmux-plugins/tpm/blob/master/docs/automatic_tpm_installation.md)?
`gcc -v` output: ```shell ~$ gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/aarch64-linux-gnu/7/lto-wrapper Target: aarch64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=aarch64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext...
I had no luck with #820, but pinning the scikit-build version in `pyproject.toml` to 0.17.1 everything worked again (without this 0.17.3 is installed): ```diff --- "scikit-build>=0.13.2", +++ "scikit-build==0.17.1", ``` I...
You can try install using pip's legacy dependency resolver ```shell pip3 install --use-deprecated=legacy-resolver onnxsim ``` As there are no aarch64/arm64 wheels, pip will attempt to build the wheel. For me...
@paleomoon install cmake using pip to solve that
@ali-raza-zaidi I had a similar issue, and ended up switching to [msgspec](https://github.com/jcrist/msgspec) to solve it.
@fujitatomoya I didn't find any applicable issues this was just based on a need I had for a tangential project. I could also look at adding `PublishOptions`. Should I make...
> Just some minor comments, looks good to me ! Thanks for catching those. All sorted