「補助ミュート機能」の再点検
JavaScriptはしたたかに動作するので、エラーが致命的でなければ表面上は無問題に見えます。 こちらは何もしていないのにページ上でエラーが頻発していて、これで問題ないのかと思ってしまう事もあります。 やはりノンエラーのページが理想です。
スクリプトエラーが「溜まる」ことで、しまいにページ上のスクリプト動作の問題になる場合があるのでは? 特別な条件が重なった時に、何度もエラーを出していた処理が、他に影響するエラーのきっかけにならないと断言できないのでは。
いずれにせよ、「抑止できるエラーは抑止すべし」というのは間違いない方針だと思います。
CMチェックコードのエラー抑止
今回、「補助ミュート機能」のチェックでスクリプトエラーを調べると、以下のエラーが時々生じる事に気付きました。
上図の2個とも同じエラーで、内容は以下です。
TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLCanvasElement or HTMLImageElement or HTMLVideoElement or ImageBitmap or OffscreenCanvas or SVGImageElement or VideoFrame)'.
at capture (userscript.html?name=AmbTV-OnAir.user.js
at cm_check (userscript.html?name=AmbTV-OnAir.user.js)
……以下略……
だいたいの訳
データ型のエラー:
「CanvasRenderingContext2D」のコードで「drawImage」の実行に失敗した。 与えられた値は以下の型ではないため。
CSSImageValue
HTMLCanvasElement
HTMLImageElement
HTMLVideoElement
ImageBitmap
OffscreenCanvas
SVGImageElement
VideoFrame
作った側としては、与える値の型は「HTMLVideoElement」のコードです。
で、このエラーが発生したコードの部分は以下でした。
「 AmbTV OnAir」ver.1.3 89行~
太字の「drawImage」が不成功で、赤波線の「getImageData」に適切な値を出力しなかったので、ここでエラーが発生したという事でしょう。 きっかけは「drawImage」の不成功、つまりキャプチャの失敗が引き金になったわけで、そこまで判読して原因に気付きました。
この関数の最初で「video要素」を取得しています。
しかし、チャンネル切替え時や、「動画コンテンツ」⇄「CM」の切換えの瞬間に、この取得が一時的に失敗する事があり、その場合にキャプチャ操作自体が失敗してこのエラーが出ると思われます。
この種の取得失敗に起因するエラーは良くあるエラーです。 ただ、安易に見過ごしていると、最初に書いた様に想定外のエラーの原因になるかも知れません。
「 AmbTV OnAir」ver.1.4 89行~
「video要素」が取得出来なかった場合を除外する事で、今回のエラーは完全に抑止できました。
「 AmbTV OnAir」の操作マニュアル
このツールは「 AmbTV Comfy」のサブツールで、両方を同時に併用できます。
「ミュート」機能の設定方法は、以下のページを参照ください。
「 AmbTV OnAir」を利用するには
このツールは Chrome / Edge / Firefox版の拡張機能「Tampermonkey」上で動作します。 以下に、このツールの導入手順を簡単に説明します。
❶「Tampermonkey」を導入します
◎ 使用しているブラウザに拡張機能「Tampermonkey」を導入する事が必要です。
既に「Tampermonkey」を導入している場合は、この手順 ❶ は不要です。
拡張機能の導入については、以下のページに簡単な説明があるので参照ください。
❷「Tampermonkey」にスクリプトを登録します
◎「Tampermonkey」の「+」マークの「新規スクリプト」タブを開きます。
◎「新規スクリプト」には、最初からテンプレートが記入されています。 これは全て削除して、完全に空白の編集枠に 下のコードをコピー&ペーストします。
〔コピー方法〕 軽量シンプルなツール「PreBox Button 」を使うと
コード枠内を「Ctrl+左Click」➔「Copy code 」を「左Click」
の操作で、掲載コードのコピーが可能になります。
◎ 最後に「ファイル」メニューの「保存」を押すと、ツールが使用可能になります。
〔 AmbTV OnAir 〕 ver. 1.4
// ==UserScript== // @name AmbTV OnAir // @namespace http://tampermonkey.net/ // @version 1.4 // @description AbemaTV ユーティリティ // @author Ameba User // @match https://abema.tv/* // @icon https://www.google.com/s2/favicons?sz=64&domain=abema.tv // @noframes // @grant none // ==/UserScript== let oa_mute; let oa_size; let oa_opac; let target=document.querySelector('head > title'); let monitor0=new MutationObserver(tv_player_env); monitor0.observe(target, { childList: true }); tv_player_env(); function tv_player_env(){ let retry=0; let interval=setInterval(wait_target, 20); function wait_target(){ retry++; if(retry>100){ // リトライ制限 100回 2secまで clearInterval(interval); } let TP=document.querySelector('.com-tv-TVScreen__player'); if(TP){ clearInterval(interval); player_vol(TP); }} } // tv_player_env() function player_vol(TP){ let monitor1=new MutationObserver(con_vol); monitor1.observe( TP, { childList: true }); con_vol(); function con_vol(){ // ABEMAロゴによるミュート let LF=document.querySelector('.com-tv-LinearFooter__feed-super'); if(TP.querySelector('.com-tv-TVScreen__eyecatch')){ if(LF.textContent){ v_vol(1); }} else{ if(!LF.textContent){ v_vol(0); }}} let LF=document.querySelector('.com-tv-LinearFooter__feed-super'); let monitor2=new MutationObserver(con_vol2); monitor2.observe( LF, { childList: true }); function con_vol2(){ // 動画タイトルによるミュート if(LF.textContent){ v_vol(1); } else{ setTimeout(()=>{ ad_check(); }, 200); }} function ad_check(){ let cvs= '<canvas id="cvs" style="position: fixed; z-index: -1; visibility: hidden;">'+ '</canvas>'; if(!document.querySelector('#cvs')){ document.body.insertAdjacentHTML('beforeend', cvs); } let canvas=document.querySelector('#cvs'); let retry_s=0; let interval_s=setInterval(cm_check, 1000); function cm_check(){ retry_s++; if(retry_s>15){ // リトライ制限 15sec clearInterval(interval_s); } capture(canvas); } function capture(canvas){ let video= document.querySelector('.com-a-Video__video video[src]'); canvas.width=1; canvas.height=1; if(video){ canvas.getContext('2d').drawImage(video, 0, 0, canvas.width, canvas.height); if(canvas.getContext('2d')){ let imageData=canvas.getContext('2d').getImageData(0, 0, 1, 1); let data=imageData.data; if(data[0]+data[1]+data[2]!=0){ v_vol(0); } }}} // player_capture() } // ad_check() setTimeout(()=>{ let LCLI=document.querySelector('.com-tv-LinearChannelListItem--active a'); if(LCLI){ let monitor3=new MutationObserver(con_vol3); monitor3.observe( LCLI, { attributes: true }); con_vol3(); function con_vol3(){ v_vol(1); con_vol2(); }} }, 200 ); setTimeout(()=>{ let side=document.querySelector('.com-tv-FeedSidePanel__close-button'); if(side){ side.click(); } }, 600); setTimeout(()=>{ let HM=document.querySelector('.com-m-HeaderMenu'); let SNc=document.querySelector('.c-application-SideNavigation--collapsed'); if(HM && !SNc){ HM.click(); } }, 700); check_cookie(); cm_setting(); } // player_vol(TP) function v_vol(n){ // 0: ミュート 1: 通常 oa_mute=get_cookie('oa_mute'); let button=document.querySelector('.com-playback-Volume__icon-button'); if(button){ let label=button.getAttribute('aria-label'); if(n==0 && label=='音声をオフにする'){ if(oa_mute==0){ button.click(); }} else if(n==1 && label=='音声をオンにする'){ button.click(); } setTimeout(()=>{ let label_=button.getAttribute('aria-label'); if(label_=='音声をオフにする'){ // 音声ON view(1); } else{ view(0); } }, 20); } // button } // v_vol() function view(n){ // 0: ミュート 1: 通常 oa_opac=get_cookie('oa_opac'); oa_size=get_cookie('oa_size'); let TVS=document.querySelector('.com-tv-TVScreen__player-container'); if(TVS){ if(n==0){ TVS.style.transition='opacity .5s, transform .5s'; if(oa_opac==0){ TVS.style.opacity='0.5'; } else if(oa_opac==1){ TVS.style.opacity='0'; } else{ TVS.style.opacity=''; } if(oa_size==0){ TVS.style.transform='scale(0.5)'; } else{ TVS.style.transform=''; }} else{ TVS.style.transition=''; TVS.style.opacity=''; TVS.style.transform=''; }} } // view() function get_cookie(name){ let cookie_req=document.cookie.split('; ').find(row=>row.startsWith(name)); if(cookie_req){ if(cookie_req.split('=')[1]==null){ return 0; } else{ return cookie_req.split('=')[1]; }} if(!cookie_req){ return 0; }} function check_cookie(){ oa_mute=get_cookie('oa_mute'); if(oa_mute!=1){ oa_mute=0; } document.cookie='oa_mute='+oa_mute+'; path=/; Max-Age=2592000'; oa_size=get_cookie('oa_size'); if(oa_size!=1){ oa_size=0; } document.cookie='oa_size='+oa_size+'; path=/; Max-Age=2592000'; oa_opac=get_cookie('oa_opac'); if(oa_opac!=0 && oa_opac!=1 && oa_opac!=2){ oa_opac=0; } document.cookie='oa_opac='+oa_opac+'; path=/; Max-Age=2592000'; } // check_cookie() function cm_setting(){ let help_url="https://ameblo.jp/personwritep/entry-12856628930.html"; let help_SVG= '<svg class="oa_help" width="20" height="20" viewBox="0 0 150 150">'+ '<path fill="#fff" d="M66 13C56 15 47 18 39 24C-12 60 18 146 82 137C92 '+ '135 102 131 110 126C162 90 128 4 66 13M68 25C131 17 145 117 81 '+ '125C16 133 3 34 68 25M69 40C61 41 39 58 58 61C66 63 73 47 82 57C84 '+ '60 83 62 81 65C77 70 52 90 76 89C82 89 82 84 86 81C92 76 98 74 100 66'+ 'C105 48 84 37 69 40M70 94C58 99 66 118 78 112C90 107 82 89 70 94z">'+ '</path></svg>'; let TVS=document.querySelector('.com-tv-TVScreen__player-container'); if(TVS){ TVS.onclick=function(event){ if(event.ctrlKey){ let panel= '<div id="amboa">'+ '<div id="oa_head"> CMのミュート設定 '+ '<a href="'+ help_url +'" rel="noopener noreferrer" target="_blank">'+ help_SVG +'</a> '+ '<input type="button" id="oa_close" value="×"></div>'+ '<div class="oa_p">ミュート機能の有効 / 無効</div>'+ '<div> ミュート機能(音声): '+ '<input name="mute" type="radio" id="m0">有効 '+ '<input name="mute" type="radio" id="m1">無効'+ '</div>'+ '<div class="oa_p">ミュート時の画面の設定</div>'+ '<div> 画面サイズ: '+ '<input name="size" type="radio" id="s0">縮小 '+ '<input name="size" type="radio" id="s1">通常'+ '</div>'+ '<div> 画面の明度: '+ '<input name="opacity" type="radio" id="o0">0% '+ '<input name="opacity" type="radio" id="o1">50% '+ '<input name="opacity" type="radio" id="o2">100%'+ '</div>'+ '<style>#amboa { position: fixed; top: 60px; left: calc(50% - 190px); '+ 'font: 16px/24px Meiryo; color: #000; padding: 16px 16px 8px; width: 380px; '+ 'border: 1px solid #aaa; border-radius: 6px; background: #fff; z-index: 100; } '+ '#oa_head { margin: 0 0 15px; padding: 5px 15px 3px; '+ 'font-weight: bold; color: #fff; background: #2196f3; text-align: center; } '+ '.oa_help { vertical-align: -5px; } '+ '#oa_close { padding: 0 2px; height: 20px; line-height: 16px; } '+ '.oa_p { padding: 2px 8px 0; margin: 8px 0 4px; border: 1px solid #aaa; '+ 'line-height: 22px; } '+ 'input[type="radio"]{ margin: 0 .2em; }'+ '</style>'+ '</div>'; if(!document.querySelector('#amboa')){ document.body.insertAdjacentHTML('beforeend', panel); } live_mute(); set_radio(); function set_radio(){ oa_mute=get_cookie('oa_mute'); let m0=document.querySelector('#m0'); let m1=document.querySelector('#m1'); if(oa_mute==0){ m0.checked=true; mute(0); } else{ oa_mute=1; m1.checked=true; mute(1); } document.cookie='oa_mute='+oa_mute+'; path=/; Max-Age=2592000'; m0.onchange=function(){ mute(0); document.cookie='oa_mute=0; path=/; Max-Age=2592000'; live_mute(); } m1.onchange=function(){ mute(1); document.cookie='oa_mute=1; path=/; Max-Age=2592000'; live_mute(); } oa_size=get_cookie('oa_size'); let s0=document.querySelector('#s0'); let s1=document.querySelector('#s1'); if(oa_size==0){ s0.checked=true; } else{ oa_size=1; s1.checked=true; } document.cookie='oa_size='+oa_size+'; path=/; Max-Age=2592000'; s0.onchange=function(){ document.cookie='oa_size=0; path=/; Max-Age=2592000'; live_mute(); } s1.onchange=function(){ document.cookie='oa_size=1; path=/; Max-Age=2592000'; live_mute(); } oa_opac=get_cookie('oa_opac'); let o0=document.querySelector('#o0'); let o1=document.querySelector('#o1'); let o2=document.querySelector('#o2'); if(oa_opac==0){ o1.checked=true; } else if(oa_opac==1){ o0.checked=true; } else{ oa_opac=2; o2.checked=true; } document.cookie='oa_opac='+oa_opac+'; path=/; Max-Age=2592000'; o0.onchange=function(){ document.cookie='oa_opac=1; path=/; Max-Age=2592000'; live_mute(); } o1.onchange=function(){ document.cookie='oa_opac=0; path=/; Max-Age=2592000'; live_mute(); } o2.onchange=function(){ document.cookie='oa_opac=2; path=/; Max-Age=2592000'; live_mute(); } function mute(n){ let s0=document.querySelector('#s0'); let s1=document.querySelector('#s1'); let o0=document.querySelector('#o0'); let o1=document.querySelector('#o1'); let o2=document.querySelector('#o2'); if(n==0){ s0.disabled=false; s1.disabled=false; o0.disabled=false; o1.disabled=false; o2.disabled=false; } else{ s0.disabled=true; s1.disabled=true; o0.disabled=true; o1.disabled=true; o2.disabled=true; }} } // set_radio() let amboa=document.querySelector('#amboa'); let oa_close=document.querySelector('#oa_close'); if(amboa && oa_close){ oa_close.onclick=function(event){ event.preventDefault(); amboa.remove(); }} }}} } // cm_setting() function live_mute(){ let LF=document.querySelector('.com-tv-LinearFooter__feed-super'); if(!LF.textContent){ setTimeout(()=>{ oa_mute=get_cookie('oa_mute'); v_vol(oa_mute); }, 200); }}
「AmbTV OnAir」最新版について
旧いバージョンの JavaScriptツールは、アメーバのページ構成の変更で動作しない場合があり、導入する場合は最新バージョンをお勧めします。
●「AmbTV OnAir 」の最新バージョンへのリンクは、以下のページのリンクリストから探せます。