我在Chrome扩展程序中尝试chrome.desktopCapture.chooseDesktopMedia
,我可以很好地获得桌面流。
我使用以下内容将流转换为后台脚本中的blob:
- URL,如下所示:
var objectUrl = URL.createObjectURL(stream);
我似乎无法解决的问题是如何将其设置为注入页面上视频元素的src属性。
我尝试了以下各项,但每项都不起作用:
var video = document.getElementById("video");
var objectUrl = URL.createObjectURL(stream);
video.src = objectUrl;
//objectUrl is a string received in a message from the background page by the content page
var video = document.getElementById("video");
video.src = objectUrl;
我在javascript控制台中获得以下内容:
不允许加载本地资源:blob:chrome-extension:// panahgiakgfjeioddhenaabbacfmkclm / 48ff3e53-ff6a-4bee-a1dd-1b8844591a91
如果我将消息中的URL一直发布到注入页面,我也会得到相同的结果。这有用吗?我真的很感激这里有任何建议。
在我的清单中我也有
"web_accessible_resources": [ "*" ]
但这只是为了看它是否解决了这个问题(事实并非如此)。
答案 0 :(得分:5)
在内容脚本中,DOM与页面共享,因此任何DOM操作(例如设置视频src
)都取决于页面的same-origin policy,而不是扩展名。 / p>
如果要显示标签的内容,则必须将tab.Tab
对象传递给chrome.desktopCapture.chooseDesktopMedia
。可以通过多种方式获取此对象,包括message passing和tabs API。以下是使用extension button:
background.js
chrome.browserAction.onClicked.addListener(function(tab) {
// NOTE: If you want to use the media stream in an iframe on an origin
// different from the top-level frame (e.g. http://example.com), set
// tab.url = 'http://example.com'; before calling chooseDesktopMedia!
// (setting tab.url only works in Chrome 40+)
chrome.desktopCapture.chooseDesktopMedia([
'screen', 'window'//, 'tab'
], tab, function(streamId) {
if (chrome.runtime.lastError) {
alert('Failed to get desktop media: ' +
chrome.runtime.lastError.message);
return;
}
// I am using inline code just to have a self-contained example.
// You can put the following code in a separate file and pass
// the stream ID to the extension via message passing if wanted.
var code = '(' + function(streamId) {
navigator.webkitGetUserMedia({
audio: false,
video: {
mandatory: {
chromeMediaSource: 'desktop',
chromeMediaSourceId: streamId
}
}
}, function onSuccess(stream) {
var url = URL.createObjectURL(stream);
var vid = document.createElement('video');
vid.src = url;
document.body.appendChild(vid);
}, function onError() {
alert('Failed to get user media.');
});
} + ')(' + JSON.stringify(streamId) + ')';
chrome.tabs.executeScript(tab.id, {
code: code
}, function() {
if (chrome.runtime.lastError) {
alert('Failed to execute script: ' +
chrome.runtime.lastError.message);
}
});
});
});
的manifest.json
{
"name": "desktopCapture.chooseDesktopMedia for a tab",
"version": "1",
"manifest_version": 2,
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_title": "Show desktop capture request"
},
"permissions": [
"desktopCapture",
"activeTab"
]
}
答案 1 :(得分:0)
ObjectURL不能跨域共享。如果数据网址适用于您的视频流,则可以跨域共享数据网址(我不确定)。