facebook / flipper

A desktop debugging platform for mobile developers.
https://fbflipper.com/
MIT License
13.32k stars 954 forks source link

Discussion: Live preview of screen recording #3844

Open mieszko4 opened 2 years ago

mieszko4 commented 2 years ago

There is an awesome feature on Flipper that takes a screenshot and even video screen recording of both iOS and Android 🚀

I was just just wondering how difficult it would be to include a live preview while the recording is ongoing in a separate small window. Would be awesome to use it when demoing the app during a live video call!

mieszko4 commented 2 years ago

I see that for Android screenrecord is used. So that would be possible to do with adb shell screenrecord --output-format=h264 - | ffplay -framerate 60 -probesize 32 -sync video - but requires ffplay.

Perhaps it would be possible to redirect stream from stdout (that adb shell screenrecord --output-format=h264 - produces) and use <video /> to reproduce that stream.

Killdaneighbor187 commented 2 years ago

Lol