我只是以正常方式播放视频文件:
var nc = new NetConnection();
nc.connect(null);
ns = new NetStream(nc);
var vid = new Video();
this.addChild(vid);
vid.attachNetStream(ns);
ns.play(videofile);
我的 flv 文件实际上是 600x678,但在舞台上按比例缩小显示,跟踪宽度和高度我得到 320x240。我不会在任何地方设置它。为什么越来越缩水?