我正在使用ffmpeg - 将本地文件流式传输到crtmpserver(或其他服务器):
ffmpeg.exe -re -i file.avi -vcodec libx264 -preset veryfast -acodec aac -strict experimental -f flv rtmp://256.257.0.0:1935/flvplayback/live
如何更改分辨率?文件具有1920x1080
分辨率,但我只想发送640x360
。
-s 640x360
不起作用。
使用 -vf scale=640:360
.
ffmpeg.exe -re -i file.avi -vf scale=640:360 -vcodec libx264 -preset veryfast -acodec aac -strict experimental -f flv rtmp://256.257.0.0:1935/flvplayback/live