任何人都可以帮助解决https修复问题。我可以使用stop()停止视频流,但相机指示灯仍然亮着。无法在其他帖子中找到任何修复
mediaStream.stop();
// or
mediaStream.getAudioTracks()[0].stop();
mediaStream.getVideoTracks()[0].stop();
答案 0 :(得分:-2)
不推荐使用Stream.stop。
Dim PvtFld As PivotField
With MyPivot
On Error Resume Next
Set PvtFld = .PivotFields("GuidelinePercent")
On Error GoTo 0
If PvtFld Is Nothing Then
MsgBox "Error in setting the PivotField"
Else
.AddDataField PvtFld, "Count of " & PvtFld.Name, xlCount
End If
End With