Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Ant Media Server 中使用不同的纵横比进行 WebRTC 发布。
如何改变它?
可以打开/usr/local/antmedia/WebRTCAppEE/WEB-INF/index.html下的index.html文件
并更改下面的行
var mediaConstraints = { video : true, audio : true };
至
var mediaConstraints = { video : { aspectRatio: 16/9 }, audio : true };
您也可以使用 4/3 作为纵横比。