ios-minicap安装使用指南

时间:2020-12-18 04:29:23

minicap 是开源项目 STF 中的高速截图工具。STF利用此工具不断的传输图片信息并在web端绘制实现
以前只有Android版本,最近有新的ios版本,现在就安装过程中遇到的一些问题进行分享(ps:感谢sorccu 在issue里面给我的指点)
首先上地址:https://github.com/openstf/ios-minicap
你可以git clone或者直接下载zip包。
在README.MD中请注意下面的安装需求:
ios-minicap安装使用指南
我最开始没能注意这个要求,就直接./build.sh 当然是各种报错
首先安装 libjpeg-turbo
安装方式:brew install libjpeg-turbo
然后./build.sh是报这个错误

./open_xcode.sh: line 5: cmake: command not found
make: *** No targets specified and no makefile found. Stop.

然后我就去点击那个cmake的链接。。。最坑的来了,官网下载的都是APP文件,而.build.sh 里面内容如下:

#!/usr/bin/env bash

mkdir build
cd build
cmake ../
make

因为安装的cmake是APP,根本无法从脚本直接启动CMakeLists.txt,我就去issue里面提问题,才发现原来可以通过brew直接安装。。。
安装方法:brew install cmake
安装完成之后,再次运行./build.sh,cmake会自动编译配置文件,然后运行./run.sh

$ ./run.sh 

++ system_profiler SPUSBDataType
++ sed -n -E -e '/(iPhone|iPad)/,/Serial/s/ *Serial Number: *(.+)/\1/p'

UDID=0c6cxxxxxxxxxxe76dfdc55b57e0d1502ab92aab
PORT=12345
RESOLUTION=400x600
./build/ios_minicap --udid 0c6cxxxxxxxxxxe76dfdc55b57e0d1502ab92aab --port 12345 --resolution 400x600
EnableDALDevices
2017-07-31 12:24:26.081 ios_minicap[80709:3237274] Available devices:
2017-07-31 12:24:26.081 ios_minicap[80709:3237274] 0c6cxxxxxxxxxxe76dfdc55b57e0d1502ab92aab
2017-07-31 12:24:26.081 ios_minicap[80709:3237274] CC24414NH0XF9T9C7

由于个人隐私原因,将udid部分进行加密(就是用x去替代一部分而已啦)

我以为这个已经是启用成功
重新开启一个终端:
一步一步运行一下代码:

cd example

npm install

node app.js

运行到最后一步开始报错:

Listening on port 9002
Got a client
{ Error: connect ECONNREFUSED 127.0.0.1:12345
at Object.exports._errnoException (util.js:1026:11)
at exports._exceptionWithHostPort (util.js:1049:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1136:14)
code: 'ECONNREFUSED',
errno: 'ECONNREFUSED',
syscall: 'connect',
address: '127.0.0.1',
port: 12345 }
Be sure to run ios-minicap on port 12345

最开始我也不知道怎么回事,后面才发现,或许是其他终端处理干净,12345端口未被启动或者被占用。
kill掉所有的进程(或者强制退出终端)
再次在ios-minicap的目录下/run.sh 启动12345端口号:
启动信息如下

++ sed -n -E -e '/(iPhone|iPad)/,/Serial/s/ *Serial Number: *(.+)/\1/p'
++ system_profiler SPUSBDataType
+ UDID=0c6cxxxxxxxxxxe76dfdc55b57e0d1502ab92aab
+ PORT=12345
+ RESOLUTION=400x600
+ ./build/ios_minicap --udid 0c6cxxxxxxxxxxe76dfdc55b57e0d1502ab92aab --port 12345 --resolution 400x600
EnableDALDevices
2017-07-31 14:43:46.851 ios_minicap[82104:3332798] Available devices:
2017-07-31 14:43:46.851 ios_minicap[82104:3332798] 0c6cxxxxxxxxxxe76dfdc55b57e0d1502ab92aab
2017-07-31 14:43:46.851 ios_minicap[82104:3332798] CC24414NH0XF9T9C7
resolution: 400x600
Allocating 731648 bytes for JPEG encoder
== Banner ==
version: 1
size: 24
pid: 82104
real width: 400
real height: 600
desired width: 400
desired height: 600
orientation:
quirks: 1
banner: 118b840109010058200901005820001
New client connection

重开一个终端窗口,定位到ios-minicap里面的example文件夹(就是cd到里面那个文件夹中)运行node app.js
提示:

Listening on port 9002
Got a client

在浏览器中打开http://localhost:9002
即可实时录制屏幕
ios-minicap安装使用指南
希望我的指南能帮助你们成功安装ios-minicap。