3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

androidで操作を記録して爆速で再生するのをやってみた

3
Posted at

この記事のコピーです。

昔、monkeyrunnerでkittingしようとしてたのでなんか興味があったのでやってみました。
基本、
Android の操作を記録して爆速で再生する
とか
Continuous swipe two directions
これをみてやりました。

テスト対象に今ハマっているabyssriumを使ってみました。

上記の投稿を単純に実行するだけだと、どうもうまく行かず、他の投稿などを参考にobsサイズを指定するとうまくいきました。
(チート非推奨のためパラメータは隠しておきます)

dd if=/dev/input/eventX of=/sdcard/event.log obs=XXXXXXXXXX
i=1; while [ $i -le 100 ] ; do echo $i; dd if=/sdcard/event.log of=/dev/input/eventX obs=XXXXXXXXXX; i=`expr $i + 1`; done

結果がこちらです。
https://twitter.com/bhind13/status/767252875147747328?lang=en

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?