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.
我需要将我的相机连接到 VideoDisplay,例如 640x480 分辨率,并将其以 320x240 分辨率流式传输到 NetStream。任何想法如何做到这一点?
尝试这个:
var cam:Camera = Camera.getCamera(); cam.setMode(320, 240, 15); var video:Video = new Video(640, 480); //video.attachCamera(cam); ns.attachCamera(cam);