7 lines
173 B
Fish
7 lines
173 B
Fish
|
#!/usr/bin/env fish
|
||
|
#
|
||
|
|
||
|
function android-cast
|
||
|
adb shell "while true; do screenrecord --output-format=h264 -; done" | ffplay -framerate 60 -probesize 32 -sync video -
|
||
|
end
|