Hana
Hana
Successful implementation of the 2022 bid. ```ts import { env } from "process"; import { ApolloServer } from "apollo-server-fastify"; import { ApolloServerPluginDrainHttpServer } from "apollo-server-core"; import { ApolloServerPlugin } from...
I modified the package.json because I had to use esm only modules(ex: unified, remark ...) ``` // package.json ... "type": "module", ``` a detour by applying it like this in...
```ts const editor = useEditor(); useEffect(() => { editor.addListener("frame", () => { const { x, y } = editor.camera; if (x !== 0 || y !== 0) { editor.setCamera({ x:...
example code for limit camera range to specific range ```ts const editor = useEditor(); useEffect(() => { const limit = 4096; editor.addListener("frame", () => { const { x, y }...
I was also looking for a way to fix this constantly. I merged the two egress tracks using the command below to merge audio.ogg and video.mp4 with different timestamp starting...
I need a solution that can reduce the cost of streaming and exporting data. @boolw stream of frames that do not overlap at the end of each egress track is...
> @boolw it would be great to have a pass through mode for ParticipantEgress and TrackCompositeEgress. > > I think you've outlined the right steps. When we considered this in...
@anjiann It seems like it hasn't merged for a long time due to something else. you separate the helm chart part and provide this like the https://github.com/pintoinc/hyperdx-helm repository. make a...
@davidliu Audio session may complicate the processing of events for the stop button in PIP, but the idea is to add an area for processing the PIP so that the...
See. https://dev.to/forasoft/picture-in-picture-mode-on-ios-implementation-and-peculiarities-mog and https://stackoverflow.com/a/72470968 > To achieve this, you need to: > > 1. Create an AVPictureInPictureController object. > 2. Obtain the RTCVideoFrame. > 3. Retrieve and populate CMSampleBuffer based...