Martin Trobäck
Martin Trobäck
``` /** * When playing a recording, the time the video started * (used for labeling with an absolute time) formatted * as an ISO time, e.g.: 2021-02-03T12:21:57.465715Z */ readonly...
The [WsRtspVideo](https://github.com/AxisCommunications/media-stream-player-js/blob/main/lib/WsRtspVideo.tsx) has a `muted` property which you can set to `true` or `false`. You could attach a state to a button which changes that property.
Make a request to an API that requires login and you should be prompted with a digest auth login. Example: ```javascript try { await window.fetch('/axis-cgi/usergroup.cgi', { credentials: 'include', mode: 'no-cors',...
This PR also removes the unused `aspectRatio` property from the interface.
All valid concerns. We'll take a look at this.
Are you not getting an error trying this? First of all, you should use `myJimp.read` and `myJimp.shadow()` instead of `Jimp`. And second, the example in the documentation is wrong. There...
Applogies. Of course it’s const img = myJimp.read ... And then img.shadow().
Strange, I got it to work just fine yesterday, thanks to you actually. I found this issue while Googling how to use plugins. :)
> in case you still wonder why the shadow plugin doesn't work, you've gotta use a .png image w/ transparent borders around. just my 2 cents. ;-) Doh! Of course!...
As a complete `nwb` newb, but a Typescript lover, how would I use your boilerplate @omerman ?