如何缩放嵌入的 Flash 视频而不裁剪它?

发布于 2024-09-29 18:22:50 字数 551 浏览 2 评论 0原文

我在我的网站上嵌入了 Flash 视频。

我遇到的问题是,它在 Mac 上的 Firefox 中似乎可以很好地重新缩放,但在 Windows 上的 Firefox 中它只会裁剪视频。

这是我的 HTML

<object width="650" height="500">
<param name="movie" value="How To Add A Location">
<embed src="http://www.fribblesoft.com/zs-content/How_To_Add_A_Location.swf" 
 width="650" 
 height="500" 
 allowfullscreen="true" 
 bgcolor="#000000" 
 scale="tofit" 
 type="application/x-shockwave-flash" 
 pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>

I have embedded a flash video on my website.

I am having the problem that it seems to rescale fine in Firefox on the Mac, but in Firefox in Windows it just crops the video.

Here it my HTML

<object width="650" height="500">
<param name="movie" value="How To Add A Location">
<embed src="http://www.fribblesoft.com/zs-content/How_To_Add_A_Location.swf" 
 width="650" 
 height="500" 
 allowfullscreen="true" 
 bgcolor="#000000" 
 scale="tofit" 
 type="application/x-shockwave-flash" 
 pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷鸟归林 2024-10-06 18:22:50

问题出在 Flash 上,而不是 HTML 上。影片首次加载时会正确缩放,但几秒钟后它会改变尺寸。这表明 Flash 可能会根据像素值动态调整所有元素的大小,而不是相对于舞台的大小。

The problem is going to be with the Flash, not the HTML. The movie is scaled correctly when it first loads, but after a few seconds it changes dimensions. This indicates that the Flash is probably resizing all of the elements dynamically based upon pixel values, rather than relative to the size of the stage.

牛↙奶布丁 2024-10-06 18:22:50

我想这可能就是Jing视频的一个特点。以下 html 似乎适用于其他 shockwave 文件。

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
        codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" 
        width="100%" 
        height="100%">
<param name="movie" value="How_To_Add_A_Location.swf" />
<param name="quality" value="high" />
<param name="scale" value="exactfit" />
<embed src="How_To_Add_A_Location.swf" quality="best" type="application/x-shockwave-flash" width="100%" height="100%" allowfullscreen="true" scale="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>

I think this just might be a property of the Jing video. The following html seems to work for other shockwave files.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
        codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" 
        width="100%" 
        height="100%">
<param name="movie" value="How_To_Add_A_Location.swf" />
<param name="quality" value="high" />
<param name="scale" value="exactfit" />
<embed src="How_To_Add_A_Location.swf" quality="best" type="application/x-shockwave-flash" width="100%" height="100%" allowfullscreen="true" scale="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文