adbkit icon indicating copy to clipboard operation
adbkit copied to clipboard

A pure Node.js client for the Android Debug Bridge.

Results 8 adbkit issues
Sort by recently updated
recently updated
newest added

`scrcpy.on('frame', (data) => ffmpeg.stdin.write(data.data))` will always **fail** because config packets are **never** passed to ffmpeg, while there is no way to pipe the config packets to ffmpeg since it has...

enhancement

I don't know how to decode/encdoe from h264 to jpeg without write to mp4 first and then call ffmpeg to get frame snapshot here is my code ``` const scrcpy...

hello,我添加了以下代码, minicap可以正常工作 ``` const minicap = deviceClient.minicap({}); await minicap.start(); minicap.on('data', (buf) => { let aa=cv.imdecode(buf) cv.imshow("aa",aa) cv.waitKey(1) }) ``` scrcpy卡在 start()地方 ``` const deviceClient = devices[0].getClient(); const scrcpy = deviceClient.scrcpy({})...

Hi I cannot seem to successfully get the progress on a push or the syncservice push. It seems like the promise is not returned before the push is complete or...

I got this error when try get screenshot. return new errors_1.AdbFailError(error, this.lastMessage); ^ AdbFailError: Failure: '' lastMessage:DONE 1688539188 at Parser.readError (D:\nodeuiandroid\node_modules\@u4\adbkit\dist\adb\parser.js:233:16) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async Parser.readCode (D:\nodeuiandroid\node_modules\@u4\adbkit\dist\adb\parser.js:106:19) at async...

Hello everyone , I want to use this libray to get the video live stream (h264) and control stream. When i get the encode video stream, i will use h264-decoder...

Hello my friend ```js import pkg from "@u4/adbkit"; const { createClient,Utils,} = pkg const utilRead = new Utils(); const adbClient = createClient(); (async () => { const devices = await...

question

Hello everyone, i get this error : "TypeError: client.shell is not a function". Here is my node server: const express = require('express'); const { Readable } = require('stream'); const Adb...