当我使用事件处理程序时:
video.on(“loadedmetadata”,function(){...})
在调用回调时,Firefox似乎没有正确设置视频尺寸。 Chrome非常适合。有没有办法在firefox上正确获取视频尺寸?
编辑: 如果我放置一个调试器并手动运行代码,它似乎有效。这让我相信这是某种竞争条件。但这对我来说没有意义,因为调用该方法意味着事件应该正确发生=应该设置尺寸。
以下是代码段:
$("document").ready () ->
# Setup variables
video = $("#video")
toolbar = $("#toolbar")
canvas = $("#filter")
context = canvas.get(0).getContext('2d')
# Setup webcam
# I have a separate webcam module that simply wraps the behavior of
# navigator.getMediaStream. Works fine in chrome.
webcam.setup(() -> alert("Browser Unsupported."))
webcam.getMedia({video:true}, (localMediaStream) ->
video.attr("src", window.URL.createObjectURL(localMediaStream))
# Video loaded event
video.on "loadedmetadata", (e) ->
# Turn on video controls
video.prop("controls", true)
# Setup canvas dimensions and add border
width = video.width()
height = video.height()
canvas
.css("border", "solid")
.css("border-width", "1px")
.attr("width", width)
.attr("height", height)
# In firefox, the width and height are 0! In chrome, they
# are correct. I tested videoWidth/videoHeight and most other
# variables. Does not work.
答案 0 :(得分:0)
解决方案摘要:
bugzilla.mozilla.org/show_bug.cgi?id=926753
Firefox bug,目前看来,如果与网络摄像头一起使用,它不会正确调用视频事件。即使相机没有正确初始化并设置正确的尺寸,很可能会对视频进行“加载”,因此所有内容都会调用不正确的值。