Chromecast 接收器 session_error LOAD_CANCELLED
Chromecast receiver session_error LOAD_CANCELLED
我在尝试向 chromecast 接收器发送第二个视频时收到 session_error LOAD_CANCELLED
。
我正在尝试实现一个自定义接收器来从我的网站投射视频。
此时应用程序工作正常,所有消息都按预期交换,除了如果我有视频广播,我无法将第二个视频加载到接收器上,因为上述错误。
根据文档,这是预期的行为 (https://developers.google.com/cast/docs/reference/receiver/cast.receiver.media.ErrorType#.LOAD_CANCELLED)。
static cast.receiver.media.ErrorType.LOAD_CANCELLED
Returned when the LOAD request is cancelled by a second incoming LOAD
request
然而,我检查了一些其他更简单的应用程序,它们在播放第二个视频时都完全相同:从发送者再次调用 Load,它按预期工作。
这是我的 onLoad
覆盖:
/* Start onLoad event processing */
Receiver.prototype.mediaOnLoadEvent_ = function(event) {
console.debug('Receiver.js: mediaOnLoadEvent_()');
var playListener = function(e) {
document.removeEventListener('video-READY', playListener);
// BUILDING MEDIAINFO and METADATA HERE
// .....
// .....
console.debug('Receiver.js: sending load complete');
this.mediaManager_.setMediaInformation(mediaInformation, true, {});
this.mediaManager_['mediaOrigOnLoad'](event);
}.bind(this);
document.addEventListener('video-READY', playListener);
window.CustomPlayer.loadVideo(event.data.media.contentId,
event.data.currentTime, function({});
};
这是我在发送第二个 LOAD 请求时在接收方的控制台中收到的消息:
[ 86.580s] [cast.receiver.IpcChannel] Received message: {"data":"{\"type\":\"LOAD\",\"requestId\":54589218,\"sessionId\":\"1B476387-AE78-4F07-BD06-A8CFEF4509A0\",\"media\":{\"contentId\":\"2365405980\",\"streamType\":\"BUFFERED\",\"contentType\":\"\"},\"autoplay\":true,\"currentTime\":0}","namespace":"urn:x-cast:com.google.cast.media","senderId":"243:client-50611"} cast_receiver.js:13
[ 86.585s] [cast.receiver.CastMessageBus] Dispatching CastMessageBus message cast_receiver.js:13
[ 86.591s] [cast.receiver.MediaManager] MediaManager message received cast_receiver.js:13
[ 86.595s] [cast.receiver.MediaManager] Dispatching MediaManager load event cast_receiver.js:13
[ 86.602s] [cast.receiver.MediaManager] Sending error message to 243:client-50611 cast_receiver.js:13
[ 86.606s] [cast.receiver.IpcChannel] IPC message sent: {"namespace":"urn:x-cast:com.google.cast.media","senderId":"243:client-50611","data":"{\"requestId\":54589182,\"type\":\"LOAD_CANCELLED\"}"} receiver.js?v=0.2:117
Receiver.js: mediaOnLoadEvent_()
如您所见,我的 mediaOnLoadEvent
在 load_cancelled
事件发送后被调用,所以我无能为力。
谢谢。
我是 WAI。
在您的 LOAD 请求中,您有这个。
requestId:54589218
在 LOAD_CANCELLED 响应中,您有这个。
requestId:54589182
请求 ID 不同。
您的第二次加载成功。 上一个 LOAD 正在 LOAD_CANCELLED.
我在尝试向 chromecast 接收器发送第二个视频时收到 session_error LOAD_CANCELLED
。
我正在尝试实现一个自定义接收器来从我的网站投射视频。 此时应用程序工作正常,所有消息都按预期交换,除了如果我有视频广播,我无法将第二个视频加载到接收器上,因为上述错误。
根据文档,这是预期的行为 (https://developers.google.com/cast/docs/reference/receiver/cast.receiver.media.ErrorType#.LOAD_CANCELLED)。
static cast.receiver.media.ErrorType.LOAD_CANCELLED
Returned when the LOAD request is cancelled by a second incoming LOAD request
然而,我检查了一些其他更简单的应用程序,它们在播放第二个视频时都完全相同:从发送者再次调用 Load,它按预期工作。
这是我的 onLoad
覆盖:
/* Start onLoad event processing */
Receiver.prototype.mediaOnLoadEvent_ = function(event) {
console.debug('Receiver.js: mediaOnLoadEvent_()');
var playListener = function(e) {
document.removeEventListener('video-READY', playListener);
// BUILDING MEDIAINFO and METADATA HERE
// .....
// .....
console.debug('Receiver.js: sending load complete');
this.mediaManager_.setMediaInformation(mediaInformation, true, {});
this.mediaManager_['mediaOrigOnLoad'](event);
}.bind(this);
document.addEventListener('video-READY', playListener);
window.CustomPlayer.loadVideo(event.data.media.contentId,
event.data.currentTime, function({});
};
这是我在发送第二个 LOAD 请求时在接收方的控制台中收到的消息:
[ 86.580s] [cast.receiver.IpcChannel] Received message: {"data":"{\"type\":\"LOAD\",\"requestId\":54589218,\"sessionId\":\"1B476387-AE78-4F07-BD06-A8CFEF4509A0\",\"media\":{\"contentId\":\"2365405980\",\"streamType\":\"BUFFERED\",\"contentType\":\"\"},\"autoplay\":true,\"currentTime\":0}","namespace":"urn:x-cast:com.google.cast.media","senderId":"243:client-50611"} cast_receiver.js:13
[ 86.585s] [cast.receiver.CastMessageBus] Dispatching CastMessageBus message cast_receiver.js:13
[ 86.591s] [cast.receiver.MediaManager] MediaManager message received cast_receiver.js:13
[ 86.595s] [cast.receiver.MediaManager] Dispatching MediaManager load event cast_receiver.js:13
[ 86.602s] [cast.receiver.MediaManager] Sending error message to 243:client-50611 cast_receiver.js:13
[ 86.606s] [cast.receiver.IpcChannel] IPC message sent: {"namespace":"urn:x-cast:com.google.cast.media","senderId":"243:client-50611","data":"{\"requestId\":54589182,\"type\":\"LOAD_CANCELLED\"}"} receiver.js?v=0.2:117
Receiver.js: mediaOnLoadEvent_()
如您所见,我的 mediaOnLoadEvent
在 load_cancelled
事件发送后被调用,所以我无能为力。
谢谢。
我是 WAI。
在您的 LOAD 请求中,您有这个。 requestId:54589218
在 LOAD_CANCELLED 响应中,您有这个。 requestId:54589182
请求 ID 不同。
您的第二次加载成功。 上一个 LOAD 正在 LOAD_CANCELLED.