tl;dr
- アーカイブされた生放送のコメントはapi経由では取得できない
- 画面には表示されているので、動画再生しながら一定時間ごとにスクレイピングすれば一応保存できる
コード(2019/04/13現在のUIの場合)
setInterval(() => {
chat_list = document.getElementsByTagName("yt-live-chat-text-message-renderer")
for(var i = 0; i < chat_list.length; i++){
node = chat_list[i].children[1]
timestamp = node.children[0].textContent
name = node.children[1].children[0].textContent
content = node.children[2].textContent
console.log(timestamp + "\t" + name + "\t" + content)
}
}, 60*1000);