在linux中,我使用以下代码将android屏幕投射到pc上,效果很好
adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" | ffplay -
所以我认为存在将screenrecord输出重定向到PC存储的方法,所以我尝试以下代码
adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" >> /tmp/t.mp4
但是无法通过vlc和google-chrome打开输出视频文件,如何解决?
ffplay属于ffmpeg,所以我猜ffmpeg中存在类似的cli,用于将输入视频流输出到视频文件中
答案 0 :(得分:0)
我找到了解决方法,使用默认的ffmpeg,在最新的Linux mint中,它使用avconv
代替ffmpeg
,但是2 clis语法相同,以下是我的代码
adb shell "screenrecord --time-limit 1 --output-format=h264 -; screenrecord --time-limit 180 --output-format=h264 -" | avconv -i - /tmp/t.mp4