diff --git a/tests/test_arcparam.py b/tests/test_arcparam.py index 2c359e7..dc9be28 100644 --- a/tests/test_arcparam.py +++ b/tests/test_arcparam.py @@ -7,26 +7,13 @@ from pytchat.parser.live import Parser def test_arcparam_0(mocker): param = arcparam.getparam("01234567890", -1) - assert param == "op2w0wQmGhxDZzhLRFFvTE1ERXlNelExTmpjNE9UQWdBUT09SARgAXICCAE%3D" + assert param == "op2w0wSDARpsQ2pnYURRb0xNREV5TXpRMU5qYzRPVEFxSndvWVgxOWZYMTlmWDE5ZlgxOWZYMTlmWDE5ZlgxOWZYMTlmRWdzd01USXpORFUyTnpnNU1Cb1Q2cWpkdVFFTkNnc3dNVEl6TkRVMk56ZzVNQ0FCKOgHMAA4AEAASARSAiAAcgIIAXgA" def test_arcparam_1(mocker): param = arcparam.getparam("01234567890", seektime=100000) - assert param == "op2w0wQtGhxDZzhLRFFvTE1ERXlNelExTmpjNE9UQWdBUT09KIDQ28P0AkgDYAFyAggB" - - -def test_arcparam_2(mocker): - param = arcparam.getparam("SsjCnHOk-Sk", seektime=100) - url = f"https://www.youtube.com/live_chat_replay/get_live_chat_replay?continuation={param}&pbj=1" - resp = httpx.Client(http2=True).get(url, headers=config.headers) - jsn = json.loads(resp.text) - parser = Parser(is_replay=True) - contents = parser.get_contents(jsn) - _, chatdata = parser.parse(contents) - test_id = chatdata[0]["addChatItemAction"]["item"]["liveChatTextMessageRenderer"]["id"] - assert test_id == "CjoKGkNMYXBzZTdudHVVQ0Zjc0IxZ0FkTnFnQjVREhxDSnlBNHV2bnR1VUNGV0dnd2dvZDd3NE5aZy0w" - + assert param == "op2w0wSHARpsQ2pnYURRb0xNREV5TXpRMU5qYzRPVEFxSndvWVgxOWZYMTlmWDE5ZlgxOWZYMTlmWDE5ZlgxOWZYMTlmRWdzd01USXpORFUyTnpnNU1Cb1Q2cWpkdVFFTkNnc3dNVEl6TkRVMk56ZzVNQ0FCKIDQ28P0AjAAOABAAEgDUgIgAHICCAF4AA%3D%3D" def test_arcparam_3(mocker): param = arcparam.getparam("01234567890") - assert param == "op2w0wQmGhxDZzhLRFFvTE1ERXlNelExTmpjNE9UQWdBUT09SARgAXICCAE%3D" + assert param == "op2w0wSDARpsQ2pnYURRb0xNREV5TXpRMU5qYzRPVEFxSndvWVgxOWZYMTlmWDE5ZlgxOWZYMTlmWDE5ZlgxOWZYMTlmRWdzd01USXpORFUyTnpnNU1Cb1Q2cWpkdVFFTkNnc3dNVEl6TkRVMk56ZzVNQ0FCKOgHMAA4AEAASARSAiAAcgIIAXgA" diff --git a/tests/test_calculator_parse.py b/tests/test_calculator_parse.py index be0c1bf..73d7955 100644 --- a/tests/test_calculator_parse.py +++ b/tests/test_calculator_parse.py @@ -6,50 +6,55 @@ parse = SuperchatCalculator()._parse def _open_file(path): - with open(path,mode ='r',encoding = 'utf-8') as f: + with open(path, mode='r', encoding='utf-8') as f: return f.read() + def load_chatdata(filepath): parser = Parser(is_replay=True) - #print(json.loads(_open_file(filepath))) - contents = parser.get_contents( json.loads(_open_file(filepath))) + # print(json.loads(_open_file(filepath))) + contents = parser.get_contents(json.loads(_open_file(filepath)))[0] return parser.parse(contents)[1] - def test_parse_1(): - renderer ={"purchaseAmountText":{"simpleText":"¥2,000"}} - symbol ,amount = parse(renderer) + renderer = {"purchaseAmountText": {"simpleText": "¥2,000"}} + symbol, amount = parse(renderer) assert symbol == '¥' assert amount == 2000.0 + def test_parse_2(): - renderer ={"purchaseAmountText":{"simpleText":"ABC\x0a200"}} - symbol ,amount = parse(renderer) + renderer = {"purchaseAmountText": {"simpleText": "ABC\x0a200"}} + symbol, amount = parse(renderer) assert symbol == 'ABC\x0a' assert amount == 200.0 + def test_process_0(): """ parse superchat data - """ + """ chat_component = { - 'video_id':'', - 'timeout':10, - 'chatdata':load_chatdata(r"tests/testdata/calculator/superchat_0.json") + 'video_id': '', + 'timeout': 10, + 'chatdata': load_chatdata(r"tests/testdata/calculator/superchat_0.json") } - assert SuperchatCalculator().process([chat_component])=={'¥': 6800.0, '€': 2.0} + assert SuperchatCalculator().process([chat_component]) == { + '¥': 6800.0, '€': 2.0} + def test_process_1(): """ parse no superchat data """ chat_component = { - 'video_id':'', - 'timeout':10, - 'chatdata':load_chatdata(r"tests/testdata/calculator/text_only.json") + 'video_id': '', + 'timeout': 10, + 'chatdata': load_chatdata(r"tests/testdata/calculator/text_only.json") } - assert SuperchatCalculator().process([chat_component])=={} + assert SuperchatCalculator().process([chat_component]) == {} + def test_process_2(): """ @@ -57,12 +62,11 @@ def test_process_2(): """ try: chat_component = { - 'video_id':'', - 'timeout':10, - 'chatdata':load_chatdata(r"tests/testdata/calculator/replay_end.json") + 'video_id': '', + 'timeout': 10, + 'chatdata': load_chatdata(r"tests/testdata/calculator/replay_end.json") } assert False SuperchatCalculator().process([chat_component]) except ChatParseException: assert True - diff --git a/tests/test_compatible_processor.py b/tests/test_compatible_processor.py index a06fe88..8d6573b 100644 --- a/tests/test_compatible_processor.py +++ b/tests/test_compatible_processor.py @@ -11,7 +11,7 @@ def test_textmessage(mocker): _json = _open_file("tests/testdata/compatible/textmessage.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -51,7 +51,7 @@ def test_newsponcer(mocker): _json = _open_file("tests/testdata/compatible/newSponsor.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -88,7 +88,7 @@ def test_newsponcer_rev(mocker): _json = _open_file("tests/testdata/compatible/newSponsor_rev.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -125,7 +125,7 @@ def test_superchat(mocker): _json = _open_file("tests/testdata/compatible/superchat.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -164,7 +164,7 @@ def test_unregistered_currency(mocker): _json = _open_file("tests/testdata/unregistered_currency.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", diff --git a/tests/test_default_processor.py b/tests/test_default_processor.py index c0fc5b9..ba48c75 100644 --- a/tests/test_default_processor.py +++ b/tests/test_default_processor.py @@ -18,7 +18,7 @@ def test_textmessage(mocker): parser = Parser(is_replay=False) _json = _open_file("tests/testdata/default/textmessage.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -47,7 +47,7 @@ def test_textmessage_replay_member(mocker): parser = Parser(is_replay=True) _json = _open_file("tests/testdata/default/replay_member_text.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -79,7 +79,7 @@ def test_superchat(mocker): parser = Parser(is_replay=False) _json = _open_file("tests/testdata/default/superchat.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -121,7 +121,7 @@ def test_supersticker(mocker): parser = Parser(is_replay=False) _json = _open_file("tests/testdata/default/supersticker.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -162,7 +162,7 @@ def test_sponsor(mocker): parser = Parser(is_replay=False) _json = _open_file("tests/testdata/default/newSponsor_current.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, @@ -195,7 +195,7 @@ def test_sponsor_legacy(mocker): parser = Parser(is_replay=False) _json = _open_file("tests/testdata/default/newSponsor_lagacy.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 7, diff --git a/tests/test_extract_duplcheck.py b/tests/test_extract_duplcheck.py index c432302..e02976e 100644 --- a/tests/test_extract_duplcheck.py +++ b/tests/test_extract_duplcheck.py @@ -64,7 +64,7 @@ def test_duplicate_head(): )[1] """ - test duplicate head data + test duplicate head data operation : [0] , [1] -> discard [0] [1] , [2] -> discard [1] [2] , [3] -> append [2] @@ -72,7 +72,7 @@ def test_duplicate_head(): [4] , [5] -> append [4] append [5] - result : [2] , [4] , [5] + result : [2] , [4] , [5] """ # chat data offsets are ignored. @@ -98,7 +98,7 @@ def test_duplicate_head(): def test_duplicate_tail(): """ - test duplicate tail data + test duplicate tail data operation : append [0] [0] , [1] -> discard [1] [1] , [2] -> append [2] @@ -106,7 +106,7 @@ def test_duplicate_tail(): [3] , [4] -> append [4] [4] , [5] -> discard [5] - result : [0] , [2] , [4] + result : [0] , [2] , [4] """ def load_chatdata(filename): return parser.parse( diff --git a/tests/test_extract_patch.py b/tests/test_extract_patch.py index 6e41ebf..bb1c7ec 100644 --- a/tests/test_extract_patch.py +++ b/tests/test_extract_patch.py @@ -40,18 +40,18 @@ def test_split_0(): | | - V + V ~~~~~~ after ~~~~~~ @parent_block - first last end (after split) + first last end (after split) |########------------| @child_block - first last end + first last end |###########---------------| @fetched patch @@ -79,11 +79,11 @@ def test_split_1(): """patch.first <= parent_block.last While awaiting at run()->asyncdl._fetch() - fetching parent_block proceeds, + fetching parent_block proceeds, and parent.block.last exceeds patch.first. In this case, fetched patch is all discarded, - and worker searches other processing block again. + and worker searches other processing block again. ~~~~~~ before ~~~~~~ @@ -101,7 +101,7 @@ def test_split_1(): | | - V + V ~~~~~~ after ~~~~~~ @@ -152,21 +152,21 @@ def test_split_2(): | | - V + V ~~~~~~ after ~~~~~~ @parent_block - first last end (after split) + first last end (after split) |########------------| - @child_block old patch.end + @child_block old patch.end first last=end | |#################|...... cut extra data. ^ continuation : None (extract complete) - @fetched patch + @fetched patch |-------- patch --------| """ parent = Block(first=0, last=4000, end=33500, continuation='parent', during_split=True) @@ -190,7 +190,7 @@ def test_split_none(): """patch.last <= parent_block.last While awaiting at run()->asyncdl._fetch() - fetching parent_block proceeds, + fetching parent_block proceeds, and parent.block.last exceeds patch.first. In this case, fetched patch is all discarded, @@ -208,11 +208,11 @@ def test_split_none(): @fetched patch |-- patch --| - patch.last < parent_block.last . + patch.last < parent_block.last. | | - V + V ~~~~~~ after ~~~~~~ diff --git a/tests/test_extract_video_id.py b/tests/test_extract_video_id.py index 7d97851..3983c1d 100644 --- a/tests/test_extract_video_id.py +++ b/tests/test_extract_video_id.py @@ -1,4 +1,4 @@ -from pytchat.util.extract_video_id import extract_video_id +from pytchat.util import extract_video_id from pytchat.exceptions import InvalidVideoIdException VALID_TEST_PATTERNS = ( diff --git a/tests/test_liveparam.py b/tests/test_liveparam.py index e40a29b..66d59be 100644 --- a/tests/test_liveparam.py +++ b/tests/test_liveparam.py @@ -5,5 +5,5 @@ def test_liveparam_0(mocker): _ts1= 1546268400 param = liveparam._build("01234567890", *([_ts1*1000000 for i in range(5)]), topchat_only=False) - test_param="0ofMyANcGhxDZzhLRFFvTE1ERXlNelExTmpjNE9UQWdBUT09KIC41tWqyt8CQAFKC1CAuNbVqsrfAlgDUIC41tWqyt8CWIC41tWqyt8CaAGCAQIIAZoBAKABgLjW1arK3wI%3D" + test_param="0ofMyAN1GhxDZzhLRFFvTE1ERXlNelExTmpjNE9UQWdBUT09KIC41tWqyt8CMAA4AEABShsIABAAGAAgADoAQABKAFCAuNbVqsrfAlgDeABQgLjW1arK3wJYgLjW1arK3wJoAYIBAggBiAEAmgECCACgAYC41tWqyt8C" assert test_param == param \ No newline at end of file diff --git a/tests/test_parser.py b/tests/test_parser.py index 86755cc..150c547 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -12,29 +12,23 @@ def _open_file(path): def test_finishedlive(*mock): - '''配信が終了した動画を正しく処理できるか''' _text = _open_file('tests/testdata/finished_live.json') _text = json.loads(_text) try: - parser.parse(parser.get_contents(_text)) + parser.parse(parser.get_contents(_text)[0]) assert False except NoContents: assert True def test_parsejson(*mock): - '''jsonを正常にパースできるか''' _text = _open_file('tests/testdata/paramgen_firstread.json') _text = json.loads(_text) try: - parser.parse(parser.get_contents(_text)) - jsn = _text - timeout = jsn["response"]["continuationContents"]["liveChatContinuation"]["continuations"][0]["timedContinuationData"]["timeoutMs"] - continuation = jsn["response"]["continuationContents"]["liveChatContinuation"][ - "continuations"][0]["timedContinuationData"]["continuation"] - assert timeout == 5035 - assert continuation == "0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%3D" + s, _ = parser.parse(parser.get_contents(_text)[0]) + assert s['timeoutMs'] == 5035 + assert s['continuation'] == "0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%3D" except Exception: assert False diff --git a/tests/test_speed_calculator.py b/tests/test_speed_calculator.py index 86496cc..debff78 100644 --- a/tests/test_speed_calculator.py +++ b/tests/test_speed_calculator.py @@ -15,7 +15,7 @@ def test_speed_1(mocker): _json = _open_file("tests/testdata/speed/speedtest_normal.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 10, @@ -32,7 +32,7 @@ def test_speed_2(mocker): _json = _open_file("tests/testdata/speed/speedtest_undefined.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 10, @@ -49,7 +49,7 @@ def test_speed_3(mocker): _json = _open_file("tests/testdata/speed/speedtest_empty.json") - _, chatdata = parser.parse(parser.get_contents(json.loads(_json))) + _, chatdata = parser.parse(parser.get_contents(json.loads(_json))[0]) data = { "video_id": "", "timeout": 10, diff --git a/tests/testdata/calculator/superchat_0.json b/tests/testdata/calculator/superchat_0.json index dc903e2..a0811a7 100644 --- a/tests/testdata/calculator/superchat_0.json +++ b/tests/testdata/calculator/superchat_0.json @@ -1,3324 +1,3322 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "10000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10192" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "10192" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10384" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "10384" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10576" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "10576" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10768" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "10768" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10960" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥6,000" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4290910299, - "headerTextColor": 4294967295, - "bodyBackgroundColor": 4293467747, - "bodyTextColor": 4294967295, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3019898879, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "10960" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥6,000" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4290910299, + "headerTextColor": 4294967295, + "bodyBackgroundColor": 4293467747, + "bodyTextColor": 4294967295, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3019898879, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2164260863, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "timestampColor": 2164260863, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } } } } - ], - "videoOffsetTimeMsec": "11152" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addLiveChatTickerItemAction": { - "item": { - "liveChatTickerPaidMessageItemRenderer": { - "id": "dummy_id", - "amount": { - "simpleText": "¥6,000" - }, - "amountTextColor": 4294967295, - "startBackgroundColor": 4293467747, - "endBackgroundColor": 4290910299, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "durationSec": 1800, - "showItemEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "11152" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addLiveChatTickerItemAction": { + "item": { + "liveChatTickerPaidMessageItemRenderer": { + "id": "dummy_id", + "amount": { + "simpleText": "¥6,000" + }, + "amountTextColor": 4294967295, + "startBackgroundColor": 4293467747, + "endBackgroundColor": 4290910299, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "showLiveChatItemEndpoint": { - "renderer": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥6,000" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4290910299, - "headerTextColor": 4294967295, - "bodyBackgroundColor": 4293467747, - "bodyTextColor": 4294967295, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3019898879, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "durationSec": 1800, + "showItemEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "showLiveChatItemEndpoint": { + "renderer": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥6,000" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4290910299, + "headerTextColor": 4294967295, + "bodyBackgroundColor": 4293467747, + "bodyTextColor": 4294967295, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3019898879, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2164260863, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "timestampColor": 2164260863, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } } } - }, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "fullDurationSec": 1800 - } - }, - "durationSec": "1800" - } - } - ], - "videoOffsetTimeMsec": "11344" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" } - } - }, - "clientId": "dummy_client_id" - } + }, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "fullDurationSec": 1800 + } + }, + "durationSec": "1800" } - ], - "videoOffsetTimeMsec": "11536" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "€2" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4278237396, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4278248959, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3003121664, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "11344" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11536" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "€2" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4278237396, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4278248959, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3003121664, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } } } } - ], - "videoOffsetTimeMsec": "11728" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "11728" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "11920" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "11920" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12112" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "12112" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12304" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "12304" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12496" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "12496" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12688" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "12688" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12880" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "12880" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "13072" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "13072" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "13264" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "13264" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "13456" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "13456" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "13648" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "13648" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "13840" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "13840" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "14032" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "14032" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "14224" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "14224" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "14416" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "14416" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "14608" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "14608" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "14800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "14800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "14992" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "14992" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "15184" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "15184" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "15376" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "15376" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "15568" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "15568" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "15760" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "15760" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "15952" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "15952" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "16144" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "16144" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "16336" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "16336" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "16528" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "16528" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "16720" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "16720" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "16912" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "16912" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "17104" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "17104" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "17296" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "17296" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "17488" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥300" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4278237396, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4278248959, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3003121664, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "17488" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥300" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4278237396, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4278248959, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3003121664, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } } } } - ], - "videoOffsetTimeMsec": "17680" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "17680" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "17872" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "17872" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "18064" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "18064" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "18256" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "18256" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "18448" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥500" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4278239141, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4280150454, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 2315255808, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "18448" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥500" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4278239141, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4280150454, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 2315255808, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } } } } - ], - "videoOffsetTimeMsec": "18640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addLiveChatTickerItemAction": { - "item": { - "liveChatTickerPaidMessageItemRenderer": { - "id": "dummy_id", - "amount": { - "simpleText": "¥500" - }, - "amountTextColor": 4278190080, - "startBackgroundColor": 4280150454, - "endBackgroundColor": 4278239141, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "durationSec": 120, - "showItemEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "videoOffsetTimeMsec": "18640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addLiveChatTickerItemAction": { + "item": { + "liveChatTickerPaidMessageItemRenderer": { + "id": "dummy_id", + "amount": { + "simpleText": "¥500" + }, + "amountTextColor": 4278190080, + "startBackgroundColor": 4280150454, + "endBackgroundColor": 4278239141, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "showLiveChatItemEndpoint": { - "renderer": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥500" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4278239141, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4280150454, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 2315255808, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "durationSec": 120, + "showItemEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "showLiveChatItemEndpoint": { + "renderer": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥500" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4278239141, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4280150454, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 2315255808, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" } } } - }, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "fullDurationSec": 120 - } - }, - "durationSec": "120" - } - } - ], - "videoOffsetTimeMsec": "18832" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" } - } - }, - "clientId": "dummy_client_id" - } + }, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "fullDurationSec": 120 + } + }, + "durationSec": "120" } - ], - "videoOffsetTimeMsec": "19024" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "19216" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "19408" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "19600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20000" - } + } + ], + "videoOffsetTimeMsec": "18832" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "19024" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "19216" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "19408" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "19600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20000" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/calculator/text_only.json b/tests/testdata/calculator/text_only.json index d83bbc3..e1e4727 100644 --- a/tests/testdata/calculator/text_only.json +++ b/tests/testdata/calculator/text_only.json @@ -1,89 +1,87 @@ { - "response": { "responseContext": { - "webResponseContextExtensionData": "" + "webResponseContextExtensionData": "" }, "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } - } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ + "liveChatContinuation": { + "continuations": [ { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } + "timeoutMs": 10000, + "continuation": "___continuation___" + } } - ], - "videoOffsetTimeMsec": "10000" - } - } - ] - } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10000" + } + } + ] + } } - } -} \ No newline at end of file +} diff --git a/tests/testdata/chatreplay.json b/tests/testdata/chatreplay.json index 21a553f..b29aa02 100644 --- a/tests/testdata/chatreplay.json +++ b/tests/testdata/chatreplay.json @@ -1,3104 +1,3102 @@ { - "timing": { - "info": { - "st": 485 - } + "timing": { + "info": { + "st": 485 + } + }, + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat_replay/get_live_chat_replay?continuation=op2w0wRyGjxDZzhhRFFvTFUzTnFRMjVJVDJzdFUyc2FFLXFvM2JrQkRRb0xVM05xUTI1SVQyc3RVMnNnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAHIECAEQAHgA", + "rootVe": 83769 + } }, - "endpoint": { - "commandMetadata": { - "webCommandMetadata": { - "url": "/live_chat_replay/get_live_chat_replay?continuation=op2w0wRyGjxDZzhhRFFvTFUzTnFRMjVJVDJzdFUyc2FFLXFvM2JrQkRRb0xVM05xUTI1SVQyc3RVMnNnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAHIECAEQAHgA", - "rootVe": 83769 - } + "urlEndpoint": { + "url": "/live_chat_replay/get_live_chat_replay?continuation=op2w0wRyGjxDZzhhRFFvTFUzTnFRMjVJVDJzdFUyc2FFLXFvM2JrQkRRb0xVM05xUTI1SVQyc3RVMnNnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAHIECAEQAHgA" + } + }, + "responseContext": { + "serviceTrackingParams": [ + { + "service": "CSI", + "params": [ + { + "key": "GetLiveChatReplay_rid", + "value": "0x914bb287d65159a8" + }, + { + "key": "c", + "value": "WEB" + }, + { + "key": "cver", + "value": "2.20191108.05.00" + }, + { + "key": "yt_li", + "value": "0" + } + ] + }, + { + "service": "GFEEDBACK", + "params": [ + { + "key": "e", + "value": "23744176,23748146,23768780,23788852,23804281,23836605,23837040,23837772,23837993,23839597,23840216,23842630,23842986,23845648,23846545,23848795,23856555,23858320,9449243,9471235" + }, + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "GUIDED_HELP", + "params": [ + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "ECATCHER", + "params": [ + { + "key": "client.name", + "value": "WEB" + }, + { + "key": "client.version", + "value": "2.20191108" + }, + { + "key": "innertube.build.changelist", + "value": "279110845" + }, + { + "key": "innertube.build.experiments.source_version", + "value": "279412129" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_20191107_5_RC0" + }, + { + "key": "innertube.build.timestamp", + "value": "1573150496" + }, + { + "key": "innertube.build.variants.checksum", + "value": "2f195780d2d4220c295f73ab388f3fd5" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] + } + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "CAXIXa-uHZnC4wL5nZ7oBQ", + "visitorData": "Cgsydml5dDBXN2VMayiIiqDuBQ%3D%3D" + } + } + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "timeUntilLastMessageMsec": 5000, + "continuation": "op2w0wSKARpQQ2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUIo0cHd-g0wADgAQABIA1IcCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtQABYA2ABaAByBAgBEAB4AA%3D%3D" + } }, - "urlEndpoint": { - "url": "/live_chat_replay/get_live_chat_replay?continuation=op2w0wRyGjxDZzhhRFFvTFUzTnFRMjVJVDJzdFUyc2FFLXFvM2JrQkRRb0xVM05xUTI1SVQyc3RVMnNnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAHIECAEQAHgA" + { + "playerSeekContinuationData": { + "continuation": "op2w0wSKARpQQ2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUIo0cHd-g0wADgAQABIBFIcCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtQABYA2ABaAByBAgBEAB4AA%3D%3D" + } } - }, - "response": { - "responseContext": { - "serviceTrackingParams": [ - { - "service": "CSI", - "params": [ - { - "key": "GetLiveChatReplay_rid", - "value": "0x914bb287d65159a8" + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "や" + } + ] + }, + "authorName": { + "simpleText": "だにょぉぉーん Frisk" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-7FouCu9_oqM/AAAAAAAAAAI/AAAAAAAAAAA/yvN3lB__FTk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-7FouCu9_oqM/AAAAAAAAAAI/AAAAAAAAAAA/yvN3lB__FTk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } }, - { - "key": "c", - "value": "WEB" - }, - { - "key": "cver", - "value": "2.20191108.05.00" - }, - { - "key": "yt_li", - "value": "0" + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMHhoY0hObE4yNTBkVlZEUm1OelFqRm5RV1JPY1dkQ05WRVNIRU5LZVVFMGRYWnVkSFZWUTBaWFIyZDNaMjlrTjNjMFRscG5MVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWMkZXTWtWVE9UbHRkMjFMVFRsWlNrUlpkM0pKUVElM0QlM0Q=" } - ] - }, - { - "service": "GFEEDBACK", - "params": [ - { - "key": "e", - "value": "23744176,23748146,23768780,23788852,23804281,23836605,23837040,23837772,23837993,23839597,23840216,23842630,23842986,23845648,23846545,23848795,23856555,23858320,9449243,9471235" - }, - { - "key": "logged_in", - "value": "0" + }, + "id": "CjoKGkNMYXBzZTdudHVVQ0Zjc0IxZ0FkTnFnQjVREhxDSnlBNHV2bnR1VUNGV0dnd2dvZDd3NE5aZy0w", + "timestampUsec": "1571985910682806", + "authorExternalChannelId": "UCWaV2ES99mwmKM9YJDYwrIA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } - ] - }, - { - "service": "GUIDED_HELP", - "params": [ - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "ECATCHER", - "params": [ - { - "key": "client.name", - "value": "WEB" - }, - { - "key": "client.version", - "value": "2.20191108" - }, - { - "key": "innertube.build.changelist", - "value": "279110845" - }, - { - "key": "innertube.build.experiments.source_version", - "value": "279412129" - }, - { - "key": "innertube.build.label", - "value": "youtube.ytfe.innertube_20191107_5_RC0" - }, - { - "key": "innertube.build.timestamp", - "value": "1573150496" - }, - { - "key": "innertube.build.variants.checksum", - "value": "2f195780d2d4220c295f73ab388f3fd5" - }, - { - "key": "innertube.run.job", - "value": "ytfe-innertube-replica-only.ytfe" - } - ] + }, + "timestampText": { + "simpleText": "1:41" + } + } + }, + "clientId": "CJyA4uvntuUCFWGgwgod7w4NZg-0" } + } ], - "webResponseContextExtensionData": { - "ytConfigData": { - "csn": "CAXIXa-uHZnC4wL5nZ7oBQ", - "visitorData": "Cgsydml5dDBXN2VMayiIiqDuBQ%3D%3D" - } - } + "videoOffsetTimeMsec": "101308" + } }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "timeUntilLastMessageMsec": 5000, - "continuation": "op2w0wSKARpQQ2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUIo0cHd-g0wADgAQABIA1IcCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtQABYA2ABaAByBAgBEAB4AA%3D%3D" + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "こんにちは" + } + ] + }, + "authorName": { + "simpleText": "ユロ" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-pGpp73yndNs/AAAAAAAAAAI/AAAAAAAAAAA/gLRYv3bUhlE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-pGpp73yndNs/AAAAAAAAAAI/AAAAAAAAAAA/gLRYv3bUhlE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHR0TTJkMWNuQjBkVlZEUmxKVWFIZFJiMlExY0RSQ1pFRVNKME5PYW5sMGRVUndkSFZWUTBaa1JuUkxaMjlrTFVKelIybG5NVFUzTVRrNE5qUXpOams1TlJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU16UkZkVVVIazBlSGxtYVhWNlRIVXRjbUo2WkZwMw==" } - }, - { - "playerSeekContinuationData": { - "continuation": "op2w0wSKARpQQ2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUIo0cHd-g0wADgAQABIBFIcCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtQABYA2ABaAByBAgBEAB4AA%3D%3D" + }, + "id": "CkUKGkNLbTNndXJwdHVVQ0ZSVGh3UW9kNXA0QmRBEidDTmp5dHVEcHR1VUNGZEZ0S2dvZC1Cc0dpZzE1NzE5ODY0MzY5OTU%3D", + "timestampUsec": "1571986438396841", + "authorExternalChannelId": "UC3DWTPy4xyfiuzLu-rbzdZw", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "10:29" + } } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "や" - } - ] - }, - "authorName": { - "simpleText": "だにょぉぉーん Frisk" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-7FouCu9_oqM/AAAAAAAAAAI/AAAAAAAAAAA/yvN3lB__FTk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-7FouCu9_oqM/AAAAAAAAAAI/AAAAAAAAAAA/yvN3lB__FTk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMHhoY0hObE4yNTBkVlZEUm1OelFqRm5RV1JPY1dkQ05WRVNIRU5LZVVFMGRYWnVkSFZWUTBaWFIyZDNaMjlrTjNjMFRscG5MVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWMkZXTWtWVE9UbHRkMjFMVFRsWlNrUlpkM0pKUVElM0QlM0Q=" - } - }, - "id": "CjoKGkNMYXBzZTdudHVVQ0Zjc0IxZ0FkTnFnQjVREhxDSnlBNHV2bnR1VUNGV0dnd2dvZDd3NE5aZy0w", - "timestampUsec": "1571985910682806", - "authorExternalChannelId": "UCWaV2ES99mwmKM9YJDYwrIA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:41" - } - } - }, - "clientId": "CJyA4uvntuUCFWGgwgod7w4NZg-0" - } - } - ], - "videoOffsetTimeMsec": "101308" + }, + "clientId": "CNjytuDptuUCFdFtKgod-BsGig1571986436995" + } + } + ], + "videoOffsetTimeMsec": "629420" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "шалом🕎" + } + ] + }, + "authorName": { + "simpleText": "Максим Пушкин" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-R6Xg7yZdebQ/AAAAAAAAAAI/AAAAAAAAAAA/uZSuW6TEu1c/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-R6Xg7yZdebQ/AAAAAAAAAAI/AAAAAAAAAAA/uZSuW6TEu1c/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDFNU1drdFRISjBkVlZEUmxKUVkzZFJiMlF5T1dORk9GRVNKME5LUkRNNU9YcHlkSFZWUTBaUlNrbHRkMjlrUjNCblFWZEJNVFUzTVRrNE5qazFPREl3T1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5VWW5RM1VYUkNSVEJwTkZwdFlsaDFOa1pETFVWMw==" } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "こんにちは" - } - ] - }, - "authorName": { - "simpleText": "ユロ" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-pGpp73yndNs/AAAAAAAAAAI/AAAAAAAAAAA/gLRYv3bUhlE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-pGpp73yndNs/AAAAAAAAAAI/AAAAAAAAAAA/gLRYv3bUhlE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHR0TTJkMWNuQjBkVlZEUmxKVWFIZFJiMlExY0RSQ1pFRVNKME5PYW5sMGRVUndkSFZWUTBaa1JuUkxaMjlrTFVKelIybG5NVFUzTVRrNE5qUXpOams1TlJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU16UkZkVVVIazBlSGxtYVhWNlRIVXRjbUo2WkZwMw==" - } - }, - "id": "CkUKGkNLbTNndXJwdHVVQ0ZSVGh3UW9kNXA0QmRBEidDTmp5dHVEcHR1VUNGZEZ0S2dvZC1Cc0dpZzE1NzE5ODY0MzY5OTU%3D", - "timestampUsec": "1571986438396841", - "authorExternalChannelId": "UC3DWTPy4xyfiuzLu-rbzdZw", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "10:29" - } - } - }, - "clientId": "CNjytuDptuUCFdFtKgod-BsGig1571986436995" - } - } - ], - "videoOffsetTimeMsec": "629420" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "шалом🕎" - } - ] - }, - "authorName": { - "simpleText": "Максим Пушкин" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-R6Xg7yZdebQ/AAAAAAAAAAI/AAAAAAAAAAA/uZSuW6TEu1c/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-R6Xg7yZdebQ/AAAAAAAAAAI/AAAAAAAAAAA/uZSuW6TEu1c/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDFNU1drdFRISjBkVlZEUmxKUVkzZFJiMlF5T1dORk9GRVNKME5LUkRNNU9YcHlkSFZWUTBaUlNrbHRkMjlrUjNCblFWZEJNVFUzTVRrNE5qazFPREl3T1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5VWW5RM1VYUkNSVEJwTkZwdFlsaDFOa1pETFVWMw==" - } - }, - "id": "CkUKGkNNTElpLUxydHVVQ0ZSUGN3UW9kMjljRThREidDSkQzOTl6cnR1VUNGUUpJbXdvZEdwZ0FXQTE1NzE5ODY5NTgyMDk%3D", - "timestampUsec": "1571986958640194", - "authorExternalChannelId": "UCTbt7QtBE0i4ZmbXu6FC-Ew", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "19:09" - } - } - }, - "clientId": "CJD399zrtuUCFQJImwodGpgAWA1571986958209" - } - } - ], - "videoOffsetTimeMsec": "1149440" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "hi~" - } - ] - }, - "authorName": { - "simpleText": "[H i _ playlist ] _me" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-6sY04x8MH7g/AAAAAAAAAAI/AAAAAAAAAAA/ePmqYR26K-4/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-6sY04x8MH7g/AAAAAAAAAAI/AAAAAAAAAAA/ePmqYR26K-4/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMDFmVjJnNWRuTjBkVlZEUmxwTVluZFJiMlJTUmpoSFpGRVNHME5KUzFWeFkxOXpkSFZWUTBaVk9XVlpRVzlrWWtaWlVIQjNNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTkRXVFZxU1hSSWNFSm9UVmRKYmpSQ1dHRlllV3hS" - } - }, - "id": "CjkKGkNNX1doOXZzdHVVQ0ZaTGJ3UW9kUkY4R2RREhtDSUtVcWNfc3R1VUNGVTllWUFvZGJGWVBwdzA%3D", - "timestampUsec": "1571987212331855", - "authorExternalChannelId": "UCCY5jItHpBhMWIn4BXaXylQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "23:23" - } - } - }, - "clientId": "CIKUqc_stuUCFU9eYAodbFYPpw0" - } - } - ], - "videoOffsetTimeMsec": "1403752" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "hi in Bangkok" - } - ] - }, - "authorName": { - "simpleText": "Bangrak House" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-9nyHyYIJyxA/AAAAAAAAAAI/AAAAAAAAAAA/vipyPpGCwSQ/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-9nyHyYIJyxA/AAAAAAAAAAI/AAAAAAAAAAA/vipyPpGCwSQ/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDlQWmpKd2VuVjBkVlZEUm1SaWFIZFJiMlJWV2tsR1VuY1NKME5PUnpaMWNFeDFkSFZWUTBaa1ZFaGpkMFZrWjJ4SlNrNTNNVFUzTVRrNE56WXhOemt4TWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU00V1hsTVgxaHZSVkJSTXpKd2VqYzVkalJtWWkxbg==" - } - }, - "id": "CkUKGkNPT2YycHp1dHVVQ0ZkYmh3UW9kVVpJRlJ3EidDTkc2dXBMdXR1VUNGZFRIY3dFZGdsSUpOdzE1NzE5ODc2MTc5MTI%3D", - "timestampUsec": "1571987618435043", - "authorExternalChannelId": "UC8YyL_XoEPQ32pz79v4fb-g", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "30:08" - } - } - }, - "clientId": "CNG6upLutuUCFdTHcwEdglIJNw1571987617912" - } - } - ], - "videoOffsetTimeMsec": "1808926" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Thank you" - } - ] - }, - "authorName": { - "simpleText": "melvin hamilton" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-6d3V4yG9txk/AAAAAAAAAAI/AAAAAAAAAAA/Tcfg_kI5qU4/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-6d3V4yG9txk/AAAAAAAAAAI/AAAAAAAAAAA/Tcfg_kI5qU4/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMHhUYkRFdFluZDBkVlZEUmxKWVluZFJiMlJKTFZsTFpsRVNIRU5KTTA0eVRqZDNkSFZWUTBaUk9HWkJkMjlrYTJKclRUSkJMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRaRXRWWTFkTE5VdEJaMDV6VVVaYVJYRjFTVkpmVVElM0QlM0Q=" - } - }, - "id": "CjoKGkNMU2wxLWJ3dHVVQ0ZSWGJ3UW9kSS1ZS2ZREhxDSTNOMk43d3R1VUNGUThmQXdvZGtia00yQS0w", - "timestampUsec": "1571988310446772", - "authorExternalChannelId": "UCdKUcWK5KAgNsQFZEquIR_Q", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "41:41" - } - } - }, - "clientId": "CI3N2N7wtuUCFQ8fAwodkbkM2A-0" - } - } - ], - "videoOffsetTimeMsec": "2501844" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "🦋❤️👍" - } - ] - }, - "authorName": { - "simpleText": "σ ε" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-pDzS0FXknDY/AAAAAAAAAAI/AAAAAAAAAAA/LswHvFvF1V8/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-pDzS0FXknDY/AAAAAAAAAAI/AAAAAAAAAAA/LswHvFvF1V8/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMGw2ZWpJdGFuZDBkVlZEUmxsTU1YZFJiMlF3UTJOSVZtY1NKME5LWWtwbk9GQjNkSFZWUTBaWmNVZ3paMjlrZHkxQlEwTkJNVFUzTVRrNE9ETXhORFk1T0JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5QUTI1UlVqTnVZak5NY2tOTE5GbG9TblUyZERCMw==" - } - }, - "id": "CkUKGkNJenoyLWp3dHVVQ0ZZTDF3UW9kMENjSFZnEidDSmJKZzhQd3R1VUNGWXFIM2dvZHctQUNDQTE1NzE5ODgzMTQ2OTg%3D", - "timestampUsec": "1571988314716556", - "authorExternalChannelId": "UCOCnQR3nb3LrCK4YhJu6t0w", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "41:45" - } - } - }, - "clientId": "CJbJg8PwtuUCFYqH3godw-ACCA1571988314698" - } - } - ], - "videoOffsetTimeMsec": "2505715" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "안녕~" - } - ] - }, - "authorName": { - "simpleText": "이경민" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-9SOY3L3h55s/AAAAAAAAAAI/AAAAAAAAAAA/tTO-Mg44Tbs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-9SOY3L3h55s/AAAAAAAAAAI/AAAAAAAAAAA/tTO-Mg44Tbs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMGwyU205YU4zaDBkVlZEUm1NM2VYZFJiMlJyZWxWTGFVRVNHME5MZG1nNVNUZDRkSFZWUTBaU1VrRm9VVzlrYTNoTlIwWm5NQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTnVWakJpYUdGRGNGTlNWVkJQUnkxZmMzVnhlREZS" - } - }, - "id": "CjkKGkNJdkpvWjd4dHVVQ0ZjN3l3UW9ka3pVS2lBEhtDS3ZoOUk3eHR1VUNGUlJBaFFvZGt4TUdGZzA%3D", - "timestampUsec": "1571988427007115", - "authorExternalChannelId": "UCnV0bhaCpSRUPOG-_suqx1Q", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "43:38" - } - } - }, - "clientId": "CKvh9I7xtuUCFRRAhQodkxMGFg0" - } - } - ], - "videoOffsetTimeMsec": "2618354" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "こんにちは!" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMUJVVUc1dk4zbDBkVlZEUmxJMFFURm5RV1IyYkRSTVZVRVNKME5RTTFKek5IcDVkSFZWUTBaalowMVhRVzlrUkdSUlJXaG5NVFUzTVRrNE9EWTJNVE14TVJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNQVFBubzd5dHVVQ0ZSNEExZ0Fkdmw0TFVBEidDUDNSczR6eXR1VUNGY2dNV0FvZERkUUVoZzE1NzE5ODg2NjEzMTE%3D", - "timestampUsec": "1571988661839860", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "47:33" - } - } - }, - "clientId": "CP3Rs4zytuUCFcgMWAodDdQEhg1571988661311" - } - } - ], - "videoOffsetTimeMsec": "2853340" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "woooow" - } - ] - }, - "authorName": { - "simpleText": "츄" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-SnlGRP-oThI/AAAAAAAAAAI/AAAAAAAAAAA/4AuU7O6i-58/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-SnlGRP-oThI/AAAAAAAAAAI/AAAAAAAAAAA/4AuU7O6i-58/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHR4Tkd4MFZIbDBkVlZEUmxKUVRuZFJiMlJhZEd0S1ZVRVNKME5MY2xCNGMzSjVkSFZWUTBabGExaDBkMEZrZEZkWlIzcG5NVFUzTVRrNE9EZ3dPRGN3TUJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hVG5kUlYzWjBXVWhXVkRKdmJrWldlbXBzTmkxUg==" - } - }, - "id": "CkUKGkNLcTRsdFR5dHVVQ0ZSUE53UW9kWnRrSlVBEidDS3JQeHNyeXR1VUNGZWtYdHdBZHRXWUd6ZzE1NzE5ODg4MDg3MDA%3D", - "timestampUsec": "1571988808506410", - "authorExternalChannelId": "UCZNwQWvtYHVT2onFVzjl6-Q", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "50:00" - } - } - }, - "clientId": "CKrPxsrytuUCFekXtwAdtWYGzg1571988808700" - } - } - ], - "videoOffsetTimeMsec": "3000275" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "音楽を聴いていると気持ちいい。" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDh0WkhsMVdIbDBkVlZEUmxWMlNuZFJiMlJ2V0dOSmNuY1NKME5OZVVWdkxWUjVkSFZWUTBaWk1XUkxaMjlrWWpCSlQwZG5NVFUzTVRrNE9EZzBORFE0T1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNPLWR5dVh5dHVVQ0ZVdkp3UW9kb1hjSXJ3EidDTXlFby1UeXR1VUNGWTFkS2dvZGIwSU9HZzE1NzE5ODg4NDQ0ODk%3D", - "timestampUsec": "1571988845006575", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "50:36" - } - } - }, - "clientId": "CMyEo-TytuUCFY1dKgodb0IOGg1571988844489" - } - } - ], - "videoOffsetTimeMsec": "3036293" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "아령" - } - ] - }, - "authorName": { - "simpleText": "Andy R" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMGszTVc5YWRucDBkVlZEUmxacWRYZFJiMlIyWlZGTkxXY1NIRU5QZG1WM1QycDVkSFZWUTBaU2RHcFpRVzlrVGtGTlFrWkJMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRaR1F0WTAxMk9HZ3hSVXBDYjA1cFozQllWWEptVVElM0QlM0Q=" - } - }, - "id": "CjoKGkNJNzFvWnZ6dHVVQ0ZWanV3UW9kdmVRTS1nEhxDT3Zld09qeXR1VUNGUnRqWUFvZE5BTUJGQS0w", - "timestampUsec": "1571988957592206", - "authorExternalChannelId": "UCdd-cMv8h1EJBoNigpXUrfQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "52:28" - } - } - }, - "clientId": "COvewOjytuUCFRtjYAodNAMBFA-0" - } - } - ], - "videoOffsetTimeMsec": "3148639" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "나는 한국어를 배우고 있다" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHgyWjIwMldIcDBkVlZEUmxkNldYZFJiMlE0YmxGSGFGRVNKME5PV0ZNMVgxOTVkSFZWUTBaYVdXTlpRVzlrUVU1SlRYQm5NVFUzTVRrNE9EazNOemczTmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNMdmdtNlh6dHVVQ0ZXell3UW9kOG5RR2hREidDTlhTNV9feXR1VUNGWlljWUFvZEFOSU1wZzE1NzE5ODg5Nzc4NzY%3D", - "timestampUsec": "1571988978462779", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "52:49" - } - } - }, - "clientId": "CNXS5__ytuUCFZYcYAodANIMpg1571988977876" - } - } - ], - "videoOffsetTimeMsec": "3169427" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "今は4:37分だ" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDlMZEd4TmFucDBkVlZEUm1SaWFIZFJiMlJyV0UxS1RYY1NKME5PZFc4MVkySjZkSFZWUTBaYVRWUlpRVzlrZGt0elRYSm5NVFUzTVRrNE9UQTFNVEU0TXhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNPS3RsTWp6dHVVQ0ZkYmh3UW9ka1hNSk13EidDTnVvNWNienR1VUNGWk1UWUFvZHZLc01yZzE1NzE5ODkwNTExODM%3D", - "timestampUsec": "1571989051741922", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "54:02" - } - } - }, - "clientId": "CNuo5cbztuUCFZMTYAodvKsMrg1571989051183" - } - } - ], - "videoOffsetTimeMsec": "3242989" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "ChwKGkNJZTl5ODN6dHVVQ0ZVcGRGUW9kT0ZjR01R", - "timestampUsec": "1571989077775669", - "authorName": { - "simpleText": "Svatopluk Čech" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "CZK 20.00" - }, - "message": { - "runs": [ - { - "text": "Hello from Czech Republic" - } - ] - }, - "headerBackgroundColor": 4278237396, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4278248959, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "UCXpFDJR-iw7NQ_nbj3wx0cQ", - "authorNameTextColor": 3003121664, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2g0S0hBb2FRMGxsT1hrNE0zcDBkVlZEUmxWd1pFWlJiMlJQUm1OSFRWRVFBQm80R2cwS0MxTnpha051U0U5ckxWTnJLaWNLR0ZWRFNtaHFSVGQzWW1SWlFXRmxNVWN5Tlcwd2RFaEJRUklMVTNOcVEyNUlUMnN0VTJzZ0FTZ0JNaG9LR0ZWRFdIQkdSRXBTTFdsM04wNVJYMjVpYWpOM2VEQmpVUSUzRCUzRA==" - } - }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "54:29" - } - } - } - } - } - ], - "videoOffsetTimeMsec": "3269119" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "나두" - } - ] - }, - "authorName": { - "simpleText": "Andy R" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMGszYTJkMGJucDBkVlZEUmxKVlF6Rm5RV1JuY0d0RlYzY1NIRU5QZG1WM1QycDVkSFZWUTBaU2RHcFpRVzlrVGtGTlFrWkJMVEVRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRaR1F0WTAxMk9HZ3hSVXBDYjA1cFozQllWWEptVVElM0QlM0Q=" - } - }, - "id": "CjoKGkNJN2tndG56dHVVQ0ZSVUMxZ0FkZ3BrRVd3EhxDT3Zld09qeXR1VUNGUnRqWUFvZE5BTUJGQS0x", - "timestampUsec": "1571989087105550", - "authorExternalChannelId": "UCdd-cMv8h1EJBoNigpXUrfQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "54:38" - } - } - }, - "clientId": "COvewOjytuUCFRtjYAodNAMBFA-1" - } - } - ], - "videoOffsetTimeMsec": "3278021" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "😍" - } - ] - }, - "authorName": { - "simpleText": "Yennie Srihandayanie" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-3iFq975mVjw/AAAAAAAAAAI/AAAAAAAAAAA/YOibd2zD1QU/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-3iFq975mVjw/AAAAAAAAAAI/AAAAAAAAAAA/YOibd2zD1QU/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMUJ0YnpoUGFucDBkVlZEUm1SRWQzZFJiMlJ1YUZsUVdVRVNHME5MVjNocFRXcDVkSFZWUTBabFRGWmpkMFZrVG1KM1N6bDNNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTnhhbEk1YlVkU1IwNXRRMUZsWjNwNlMwZFVPR2wz" - } - }, - "id": "CjkKGkNQbW84T2p6dHVVQ0ZkRHd3UW9kbmhZUFlBEhtDS1d4aU1qeXR1VUNGZUxWY3dFZE5id0s5dzA%3D", - "timestampUsec": "1571989120357497", - "authorExternalChannelId": "UCqjR9mGRGNmCQegzzKGT8iw", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "55:11" - } - } - }, - "clientId": "CKWxiMjytuUCFeLVcwEdNbwK9w0" - } - } - ], - "videoOffsetTimeMsec": "3311340" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "영어는 어렵다" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHhVV25NdE4zcDBkVlZEUmxsNWIzZFJiMlIxWjFWQ2FWRVNKME5KTm5odVQySjZkSFZWUTBaV1NXaExaMjlrVDBoelFtUlJNVFUzTVRrNE9URXpNVE13TXhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNMVFpzLTd6dHVVQ0ZZeW93UW9kdWdVQmlREidDSTZ4bk9ienR1VUNGVkloS2dvZE9Ic0JkUTE1NzE5ODkxMzEzMDM%3D", - "timestampUsec": "1571989131947188", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "55:22" - } - } - }, - "clientId": "CI6xnObztuUCFVIhKgodOHsBdQ1571989131303" - } - } - ], - "videoOffsetTimeMsec": "3322922" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Music" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDF0TW5aZmNucDBkVlZEUmxGaGFuZFJiMlJLWkZGRWVuY1NKME5NYVdWcVVHNTZkSFZWUTBaVk5VSm9VVzlrYlZaVlJHZG5NVFUzTVRrNE9URTFOamMwTWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNNbTJ2X3J6dHVVQ0ZRYWp3UW9kSmRRRHp3EidDTGllalBuenR1VUNGVTVCaFFvZG1WVURnZzE1NzE5ODkxNTY3NDI%3D", - "timestampUsec": "1571989157305161", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "55:48" - } - } - }, - "clientId": "CLiejPnztuUCFU5BhQodmVUDgg1571989156742" - } - } - ], - "videoOffsetTimeMsec": "3348698" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "한국어 잘하세요" - } - ] - }, - "authorName": { - "simpleText": "이희진" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDFsTW01UWRucDBkVlZEUm1GbVZYZFJiMlJJZFRCR1pVRVNKME5KWmxaMFQySjZkSFZWUTBaU2NGSlhRVzlrZEV0M1EzWm5NVFUzTVRrNE9URTFPREl5TWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0zUkdKS1NtaDBkME5pVUZkcGJIQnpTbll0UWpWbg==" - } - }, - "id": "CkUKGkNNZTJuUHZ6dHVVQ0ZhZlV3UW9kSHUwRmVBEidDSWZWdE9ienR1VUNGUnBSV0FvZHRLd0N2ZzE1NzE5ODkxNTgyMjI%3D", - "timestampUsec": "1571989158828871", - "authorExternalChannelId": "UC7DbJJhtwCbPWilpsJv-B5g", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "55:50" - } - } - }, - "clientId": "CIfVtObztuUCFRpRWAodtKwCvg1571989158222" - } - } - ], - "videoOffsetTimeMsec": "3350222" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "おつかれさま〜" - }, - { - "text": "😊😊😊" - } - ] - }, - "authorName": { - "simpleText": "Smile Smile" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMHBIY25kWlNEQjBkVlZEUmxGWVVuZFJiMlE0VUc5RFoxRVNIRU5PVjJWdkxWOTZkSFZWUTBaVk1IRkxaMjlrVVRCTlRrTjNMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWVlJYTm5oYVEwNURiakoyYzNaWlRHdzJaVlY1VVElM0QlM0Q=" - } - }, - "id": "CjoKGkNKR3J3WUgwdHVVQ0ZRWFJ3UW9kOFBvQ2dREhxDTldlby1fenR1VUNGVTBxS2dvZFEwTU5Ddy0w", - "timestampUsec": "1571989172016529", - "authorExternalChannelId": "UCUTW6xZCNCn2vsvYLl6eUyQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "56:03" - } - } - }, - "clientId": "CNWeo-_ztuUCFU0qKgodQ0MNCw-0" - } - } - ], - "videoOffsetTimeMsec": "3363790" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "한국어 연습" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDVpY0RWSmJqQjBkVlZEUm1GVWVuZFJiMlJMYm1OSVpGRVNKME5NYVdWcVVHNTZkSFZWUTBaVk5VSm9VVzlrYlZaVlJHZG5NVFUzTVRrNE9URTRPRGM1TmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNOYnA1SW4wdHVVQ0ZhVHp3UW9kS25jSGRREidDTGllalBuenR1VUNGVTVCaFFvZG1WVURnZzE1NzE5ODkxODg3OTY%3D", - "timestampUsec": "1571989189375190", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "56:20" - } - } - }, - "clientId": "CLiejPnztuUCFU5BhQodmVUDgg1571989188796" - } - } - ], - "videoOffsetTimeMsec": "3380905" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Hello from Armenia" - } - ] - }, - "authorName": { - "simpleText": "J Geo" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-UVjQg88jmQ8/AAAAAAAAAAI/AAAAAAAAAAA/7t5nT7P8vag/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-UVjQg88jmQ8/AAAAAAAAAAI/AAAAAAAAAAA/7t5nT7P8vag/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMDlMWTJrMGVqQjBkVlZEUm1GMlIzZFJiMlJ5ZURST1FVRVNHME5MZG1adE5HWXdkSFZWUTBaWmNVTXpaMjlrVWpCM1FqQkJNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTnVkVXRpV0V0dVpGODFNa1pXTVdwMVUxWlhWRGgz" - } - }, - "id": "CjkKGkNPS2NpNHowdHVVQ0Zhdkd3UW9kcng0TkFBEhtDS3ZmbTRmMHR1VUNGWXFDM2dvZFIwd0IwQTA%3D", - "timestampUsec": "1571989194198626", - "authorExternalChannelId": "UCnuKbXKnd_52FV1juSVWT8w", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "56:25" - } - } - }, - "clientId": "CKvfm4f0tuUCFYqC3godR0wB0A0" - } - } - ], - "videoOffsetTimeMsec": "3385750" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "hiii" - } - ] - }, - "authorName": { - "simpleText": "فتاة الاوتاكو كيوكا كيو" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHRtZG5ad2JqQjBkVlZEUmxWMlZuZFJiMlF5TkVWUE5tY1NKME5LWWpkclNsUXdkSFZWUTBaVlZFdFZVVzlrYm14QlNVNUJNVFUzTVRrNE9USXlNRGsyTnhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5zUmpGWWRGSjRaMVZMY0Rsd1pXTm1XVzlGYVRkUg==" - } - }, - "id": "CkUKGkNLZnZ2cG4wdHVVQ0ZVdlZ3UW9kMjRFTzZnEidDSmI3a0pUMHR1VUNGVVRLVVFvZG5sQUlOQTE1NzE5ODkyMjA5Njc%3D", - "timestampUsec": "1571989222307751", - "authorExternalChannelId": "UClF1XtRxgUKp9pecfYoEi7Q", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "56:53" - } - } - }, - "clientId": "CJb7kJT0tuUCFUTKUQodnlAINA1571989220967" - } - } - ], - "videoOffsetTimeMsec": "3413529" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "ありがとうございます。" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHgxVkhwd2JqQjBkVlZEUmxGeGQzZFJiMlJUVGpoQmNYY1NKME5OVDFaMVNtb3dkSFZWUTBaUlZrZFhRVzlrTkhNMFRGTlJNVFUzTVRrNE9USXlNVGsyTVJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNMdVR6cG4wdHVVQ0ZRcXd3UW9kU044QXF3EidDTU9WdUpqMHR1VUNGUVZHV0FvZDRzNExTUTE1NzE5ODkyMjE5NjE%3D", - "timestampUsec": "1571989222558139", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "56:53" - } - } - }, - "clientId": "CMOVuJj0tuUCFQVGWAod4s4LSQ1571989221961" - } - } - ], - "videoOffsetTimeMsec": "3413779" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "from korea" - } - ] - }, - "authorName": { - "simpleText": "이희진" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHh0V1c1eFREQjBkVlZEUmxWMlZuZFJiMlJXWW05TGRXY1NKME5KWmxaMFQySjZkSFZWUTBaU2NGSlhRVzlrZEV0M1EzWm5NVFUzTVRrNE9USTBNREE0TUJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0zUkdKS1NtaDBkME5pVUZkcGJIQnpTbll0UWpWbg==" - } - }, - "id": "CkUKGkNMbVlucUwwdHVVQ0ZVdlZ3UW9kVmJvS3VnEidDSWZWdE9ienR1VUNGUnBSV0FvZHRLd0N2ZzE1NzE5ODkyNDAwODA%3D", - "timestampUsec": "1571989240646713", - "authorExternalChannelId": "UC7DbJJhtwCbPWilpsJv-B5g", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "57:12" - } - } - }, - "clientId": "CIfVtObztuUCFRpRWAodtKwCvg1571989240080" - } - } - ], - "videoOffsetTimeMsec": "3432051" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "雨スゴい〜" - }, - { - "text": "😨💦💦" - } - ] - }, - "authorName": { - "simpleText": "Smile Smile" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMDVYVTIxTFZEQjBkVlZEUmxKTVkzZFJiMlJCY0hkUWFsRVNIRU5PVjJWdkxWOTZkSFZWUTBaVk1IRkxaMjlrVVRCTlRrTjNMVEVRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWVlJYTm5oYVEwNURiakoyYzNaWlRHdzJaVlY1VVElM0QlM0Q=" - } - }, - "id": "CjoKGkNOV1NtS1QwdHVVQ0ZSTGN3UW9kQXB3UGpREhxDTldlby1fenR1VUNGVTBxS2dvZFEwTU5Ddy0x", - "timestampUsec": "1571989244741973", - "authorExternalChannelId": "UCUTW6xZCNCn2vsvYLl6eUyQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "57:16" - } - } - }, - "clientId": "CNWeo-_ztuUCFU0qKgodQ0MNCw-1" - } - } - ], - "videoOffsetTimeMsec": "3436068" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Hi from indonesia 🙌😊" - } - ] - }, - "authorName": { - "simpleText": "Waliyuddin sisila" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDVmYmw4MlpqQjBkVlZEUm1OTVVYZFJiMlJNUjI5SVNYY1NKME5RYlc5dlNYb3dkSFZWUTBaUmEwRXhVVzlrUTJWelRsUlJNVFUzTVRrNE9USTFNakExTmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0xUlhKUGFsZEhRMk5oVWxoNGJraE9jRVZVVWtKbg==" - } - }, - "id": "CkUKGkNOX25fNmYwdHVVQ0ZjTFF3UW9kTEdvSEl3EidDUG1vb0l6MHR1VUNGUWtBMVFvZENlc05UUTE1NzE5ODkyNTIwNTY%3D", - "timestampUsec": "1571989252731871", - "authorExternalChannelId": "UC5ErOjWGCcaRXxnHNpETRBg", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "57:23" - } - } - }, - "clientId": "CPmooIz0tuUCFQkA1QodCesNTQ1571989252056" - } - } - ], - "videoOffsetTimeMsec": "3443547" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "bye💔😖😭" - } - ] - }, - "authorName": { - "simpleText": "فتاة الاوتاكو كيوكا كيو" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMGxxYmkxeVdEQjBkVlZEUmxWdWNuZFJiMlJPYUZGTGJGRVNKME5LWWpkclNsUXdkSFZWUTBaVlZFdFZVVzlrYm14QlNVNUJNVFUzTVRrNE9USTRNRE0yTWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5zUmpGWWRGSjRaMVZMY0Rsd1pXTm1XVzlGYVRkUg==" - } - }, - "id": "CkUKGkNJam4tclgwdHVVQ0ZVbnJ3UW9kTmhRS2xREidDSmI3a0pUMHR1VUNGVVRLVVFvZG5sQUlOQTE1NzE5ODkyODAzNjI%3D", - "timestampUsec": "1571989282009992", - "authorExternalChannelId": "UClF1XtRxgUKp9pecfYoEi7Q", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "57:53" - } - } - }, - "clientId": "CJb7kJT0tuUCFUTKUQodnlAINA1571989280362" - } - } - ], - "videoOffsetTimeMsec": "3473764" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "ciao mondo.... 👋👋😁" - } - ] - }, - "authorName": { - "simpleText": "da re" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-YgZDF6KKE4c/AAAAAAAAAAI/AAAAAAAAAAA/yeahlcY42pc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-YgZDF6KKE4c/AAAAAAAAAAI/AAAAAAAAAAA/yeahlcY42pc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMUJYU0RCTVlqQjBkVlZEUm1OUVJYZFJiMlJJWWtWT1NIY1NKME5KWVhBNE5YWXdkSFZWUTBaalprd3hVVzlrVG1KUlJIbEJNVFUzTVRrNE9USTROREkzTnhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5EV2kxaFpFVXdVMFJZWDBwSmJDMVlTMHhxUW05bg==" - } - }, - "id": "CkUKGkNQV0gwTGIwdHVVQ0ZjUEV3UW9kSGJFTkh3EidDSWFwODV2MHR1VUNGY2ZMMVFvZE5iUUR5QTE1NzE5ODkyODQyNzc%3D", - "timestampUsec": "1571989283406837", - "authorExternalChannelId": "UCCZ-adE0SDX_JIl-XKLjBog", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "57:55" - } - } - }, - "clientId": "CIap85v0tuUCFcfL1QodNbQDyA1571989284277" - } - } - ], - "videoOffsetTimeMsec": "3475221" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "雨が降る" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDF4VTNCaVh6QjBkVlZEUmxKbWRIZFJiMlJmVm10TlQxRVNKME5MZGxjelltSXdkSFZWUTBaWlowNVpRVzlrUkdkclJtOUJNVFUzTVRrNE9UTXdNRGs0T1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNNcVNwYl8wdHVVQ0ZSZnR3UW9kX1ZrTU9REidDS3ZXM2JiMHR1VUNGWWdOWUFvZERna0ZvQTE1NzE5ODkzMDA5ODk%3D", - "timestampUsec": "1571989301578058", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "58:12" - } - } - }, - "clientId": "CKvW3bb0tuUCFYgNYAodDgkFoA1571989300989" - } - } - ], - "videoOffsetTimeMsec": "3492968" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "bye koko san 😢😭" - } - ] - }, - "authorName": { - "simpleText": "Waliyuddin sisila" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDVNUld3NFREQjBkVlZEUmxsVGNYZFJiMlJEWldkS00xRVNKME5RYlc5dlNYb3dkSFZWUTBaUmEwRXhVVzlrUTJWelRsUlJNVFUzTVRrNE9UTXdOVEkzTmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0xUlhKUGFsZEhRMk5oVWxoNGJraE9jRVZVVWtKbg==" - } - }, - "id": "CkUKGkNOTEVsOEwwdHVVQ0ZZU3F3UW9kQ2VnSjNREidDUG1vb0l6MHR1VUNGUWtBMVFvZENlc05UUTE1NzE5ODkzMDUyNzY%3D", - "timestampUsec": "1571989307646546", - "authorExternalChannelId": "UC5ErOjWGCcaRXxnHNpETRBg", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "58:18" - } - } - }, - "clientId": "CPmooIz0tuUCFQkA1QodCesNTQ1571989305276" - } - } - ], - "videoOffsetTimeMsec": "3498945" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "da gusto" - } - ] - }, - "authorName": { - "simpleText": "Khastro J" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-vZNn-PLHKNw/AAAAAAAAAAI/AAAAAAAAAAA/rslpoFfthoA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-vZNn-PLHKNw/AAAAAAAAAAI/AAAAAAAAAAA/rslpoFfthoA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMHBpYzNFNE56QjBkVlZEUmxGaFUzZFJiMlJLVGpCUFdIY1NHME5LVUdNNVgzWjZkSFZWUTBaU2FXUkdVVzlrZVZWSlJrZDNNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlhRVXM0UjJkclExUm5UVXhyUzFsSFJtVllRMDlS" - } - }, - "id": "CjkKGkNKYnNxODcwdHVVQ0ZRYVN3UW9kSk4wT1h3EhtDSlBjOV92enR1VUNGUmlkRlFvZHlVSUZHdzA%3D", - "timestampUsec": "1571989333145110", - "authorExternalChannelId": "UCWAK8GgkCTgMLkKYGFeXCOQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "58:44" - } - } - }, - "clientId": "CJPc9_vztuUCFRidFQodyUIFGw0" - } - } - ], - "videoOffsetTimeMsec": "3524495" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Hello" - }, - { - "text": "〜" - }, - { - "text": "(^" - }, - { - "text": "。" - }, - { - "text": "^)" - } - ] - }, - "authorName": { - "simpleText": "Smile Smile" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMHRQZW5wME56QjBkVlZEUmxweGIzZFJiMlJ1UkZWR1NrRVNIRU5PVjJWdkxWOTZkSFZWUTBaVk1IRkxaMjlrVVRCTlRrTjNMVE1RQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWVlJYTm5oYVEwNURiakoyYzNaWlRHdzJaVlY1VVElM0QlM0Q=" - } - }, - "id": "CjoKGkNLT3p6dDcwdHVVQ0ZacW93UW9kbkRVRkpBEhxDTldlby1fenR1VUNGVTBxS2dvZFEwTU5Ddy0z", - "timestampUsec": "1571989367265699", - "authorExternalChannelId": "UCUTW6xZCNCn2vsvYLl6eUyQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "59:18" - } - } - }, - "clientId": "CNWeo-_ztuUCFU0qKgodQ0MNCw-3" - } - } - ], - "videoOffsetTimeMsec": "3558710" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "私は東京にいる。" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMUJFUXpST1h6QjBkVlZEUmxObVZuZFJiMlJmY0ZWQ2EzY1NKME5NYWw5M09UY3dkSFZWUTBaUk5HOUxaMjlrZFRBMFJIWkJNVFUzTVRrNE9UTTJPVEE0TUJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNQREM0Tl8wdHVVQ0ZTZlZ3UW9kX3BVQmt3EidDTGpfdzk3MHR1VUNGUTRvS2dvZHUwNER2QTE1NzE5ODkzNjkwODA%3D", - "timestampUsec": "1571989369659760", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "59:20" - } - } - }, - "clientId": "CLj_w970tuUCFQ4oKgodu04DvA1571989369080" - } - } - ], - "videoOffsetTimeMsec": "3560750" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Good morning my dear friends! This weekend jazz makes me relaxing. Very good music 😀🎹🥁" - } - ] - }, - "authorName": { - "simpleText": "Djordje Lainovic" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMDVxYldsMU16QjBkVlZEUmxSWVluZFJiMlJwWTI5RlRWRVNHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" - } - }, - "id": "CjkKGkNOam1pdTMwdHVVQ0ZUWGJ3UW9kaWNvRU1REhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzA%3D", - "timestampUsec": "1571989397615448", - "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "59:48" - } - } - }, - "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g0" - } - } - ], - "videoOffsetTimeMsec": "3588722" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Hi smile - smile 😊" - } - ] - }, - "authorName": { - "simpleText": "Waliyuddin sisila" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDVRWVhkUE56QjBkVlZEUmxwWFQzZFJiMlJLYW10RGJVRVNKME5RYlc5dlNYb3dkSFZWUTBaUmEwRXhVVzlrUTJWelRsUlJNVFUzTVRrNE9UTTVPVGsyT1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0xUlhKUGFsZEhRMk5oVWxoNGJraE9jRVZVVWtKbg==" - } - }, - "id": "CkUKGkNOUGF3TzcwdHVVQ0ZaV093UW9kSmprQ21BEidDUG1vb0l6MHR1VUNGUWtBMVFvZENlc05UUTE1NzE5ODkzOTk5Njk%3D", - "timestampUsec": "1571989400595795", - "authorExternalChannelId": "UC5ErOjWGCcaRXxnHNpETRBg", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "59:52" - } - } - }, - "clientId": "CPmooIz0tuUCFQkA1QodCesNTQ1571989399969" - } - } - ], - "videoOffsetTimeMsec": "3592213" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "🙂" - } - ] - }, - "authorName": { - "simpleText": "Larry Jones" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-VKNGDODN-mg/AAAAAAAAAAI/AAAAAAAAAAA/2_ac0U2lQbE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-VKNGDODN-mg/AAAAAAAAAAI/AAAAAAAAAAA/2_ac0U2lQbE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2p3S09nb2FRMDVJVW5kZlJEQjBkVlZEUmxKWE0zZFJiMlJmVkRSQ1EzY1NIRU5QUTBRNGRISXdkSFZWUTBaaVRVSXhaMEZrVkZsUlExcEJMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRNM1V0V2xCR1JYUTBPREkzWTFKSmFsUlVRWE5GWnclM0QlM0Q=" - } - }, - "id": "CjoKGkNOSFJ3X0QwdHVVQ0ZSVzN3UW9kX1Q0QkN3EhxDT0NEOHRyMHR1VUNGYk1CMWdBZFRZUUNaQS0w", - "timestampUsec": "1571989404838097", - "authorExternalChannelId": "UC3u-ZPFEt4827cRIjTTAsEg", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "59:55" - } - } - }, - "clientId": "COCD8tr0tuUCFbMB1gAdTYQCZA-0" - } - } - ], - "videoOffsetTimeMsec": "3595737" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Good morning my dear friends! This weekend jazz makes me relaxing. Very good music 😀🎹🥁" - } - ] - }, - "authorName": { - "simpleText": "Djordje Lainovic" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMDlmU1cxZlZEQjBkVlZEUmxsTVpYZFJiMlF6YlVsR09IY1NHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NUkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" - } - }, - "id": "CjkKGkNPX0ltX1QwdHVVQ0ZZTGV3UW9kM21JRjh3EhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzE%3D", - "timestampUsec": "1571989412570223", - "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:00:04" - } - } - }, - "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g1" - } - } - ], - "videoOffsetTimeMsec": "3604722" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "why so many japanese here?" - } - ] - }, - "authorName": { - "simpleText": "YYH" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMHhxWWpSZllqQjBkVlZEUmxGaFUzZFJiMlJ5ZFhkS1oxRVNHME5MYVVGNU5GUXdkSFZWUTBaVE1VUm9VVzlrYnpWdlJtOVJNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlBNMFpMTkRkVFoxSTBaMVpOYjJwcllYVkdWVTlu" - } - }, - "id": "CjkKGkNMamI0X2IwdHVVQ0ZRYVN3UW9kcnV3SmdREhtDS2lBeTRUMHR1VUNGUzFEaFFvZG81b0ZvUTA%3D", - "timestampUsec": "1571989417946552", - "authorExternalChannelId": "UCO3FK47SgR4gVMojkauFUOg", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:00:08" - } - } - }, - "clientId": "CKiAy4T0tuUCFS1DhQodo5oFoQ0" - } - } - ], - "videoOffsetTimeMsec": "3608795" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "ハロ" - } - ] - }, - "authorName": { - "simpleText": "Soixanteneuf" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHg1TmpaSlNERjBkVlZEUmxWVWVYZFJiMlJXTjI5TldFRVNKME5QTWpBd1puSXdkSFZWUTBaamFEbGhRVzlrZERKalExSlJNVFUzTVRrNE9UUXpPVE0yT0JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hZEZoU1JXZFdXRmhFU1dWUVpVRkdiR2RWVEhOQg==" - } - }, - "id": "CkUKGkNMeTY2SUgxdHVVQ0ZVVHl3UW9kVjdvTVhBEidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk0MzkzNjg%3D", - "timestampUsec": "1571989441092924", - "authorExternalChannelId": "UCZtXREgVXXDIePeAFlgULsA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:00:32" - } - } - }, - "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989439368" - } - } - ], - "videoOffsetTimeMsec": "3632585" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPlaceholderItemRenderer": { - "id": "CkUKGkNMT2NfSTcxdHVVQ0ZXdmhPQW9kbGRRSGVBEidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk0NjY5NzQ%3D", - "timestampUsec": "1571989468679731" - } - }, - "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989466974" - } - } - ], - "videoOffsetTimeMsec": "3659848" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "Hello Japanese dear friends! 😀" - } - ] - }, - "authorName": { - "simpleText": "Djordje Lainovic" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMHBEUzNsd1NERjBkVlZEUm1FelVuZFJiMlJ3YTJOUGNWRVNHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NaEFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" - } - }, - "id": "CjkKGkNKQ0t5cEgxdHVVQ0ZhM1J3UW9kcGtjT3FREhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzI%3D", - "timestampUsec": "1571989474149648", - "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:01:05" - } - } - }, - "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g2" - } - } - ], - "videoOffsetTimeMsec": "3665409" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "私はこのチャンネルにいい音楽を聴くために来た" - } - ] - }, - "authorName": { - "simpleText": "まふまふ愛してる" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDF4YW1wd2NqRjBkVlZEUmxGbE9IZFJiMlJ2ZEVGT09XY1NKME5RYWswNFdtb3hkSFZWUTBaWFRrUm9VVzlrVm5OalJYQkJNVFUzTVRrNE9UUTVNVFExT1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" - } - }, - "id": "CkUKGkNNcWpqcHIxdHVVQ0ZRZTh3UW9kb3RBTjlnEidDUGpNOFpqMXR1VUNGV05EaFFvZFZzY0VwQTE1NzE5ODk0OTE0NTk%3D", - "timestampUsec": "1571989492044234", - "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:01:23" - } - } - }, - "clientId": "CPjM8Zj1tuUCFWNDhQodVscEpA1571989491459" - } - } - ], - "videoOffsetTimeMsec": "3683359" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "coz us japanese like jazz" - } - ] - }, - "authorName": { - "simpleText": "Soixanteneuf" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMHBJV0hoYWRqRjBkVlZEUmxwVVdYZFJiMlE0YkhkTFRYY1NKME5QTWpBd1puSXdkSFZWUTBaamFEbGhRVzlrZERKalExSlJNVFUzTVRrNE9UUTVNek0yTXhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hZEZoU1JXZFdXRmhFU1dWUVpVRkdiR2RWVEhOQg==" - } - }, - "id": "CkUKGkNKSFh4WnYxdHVVQ0ZaVFl3UW9kOGx3S013EidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk0OTMzNjM%3D", - "timestampUsec": "1571989495049105", - "authorExternalChannelId": "UCZtXREgVXXDIePeAFlgULsA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:01:26" - } - } - }, - "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989493363" - } - } - ], - "videoOffsetTimeMsec": "3686141" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "ohhhhh naruhoto~" - } - ] - }, - "authorName": { - "simpleText": "YYH" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMHhFTkhaaE56RjBkVlZEUmxNelZYZFJiMlJuVDFGR1ZrRVNHME5MYVVGNU5GUXdkSFZWUTBaVE1VUm9VVzlrYnpWdlJtOVJNUkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlBNMFpMTkRkVFoxSTBaMVpOYjJwcllYVkdWVTlu" - } - }, - "id": "CjkKGkNMRDR2YTcxdHVVQ0ZTM1V3UW9kZ09RRlZBEhtDS2lBeTRUMHR1VUNGUzFEaFFvZG81b0ZvUTE%3D", - "timestampUsec": "1571989534768176", - "authorExternalChannelId": "UCO3FK47SgR4gVMojkauFUOg", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:02:06" - } - } - }, - "clientId": "CKiAy4T0tuUCFS1DhQodo5oFoQ1" - } - } - ], - "videoOffsetTimeMsec": "3726156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "we meet again mafumafu san" - } - ] - }, - "authorName": { - "simpleText": "Soixanteneuf" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2tjS1JRb2FRMDVoZFRaaVJERjBkVlZEUmxVelkzZFJiMlIxY1hkTmFrRVNKME5QTWpBd1puSXdkSFZWUTBaamFEbGhRVzlrZERKalExSlJNVFUzTVRrNE9UVXpOemszTnhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hZEZoU1JXZFdXRmhFU1dWUVpVRkdiR2RWVEhOQg==" - } - }, - "id": "CkUKGkNOYXU2YkQxdHVVQ0ZVM2N3UW9kdXF3TWpBEidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk1Mzc5Nzc%3D", - "timestampUsec": "1571989539673942", - "authorExternalChannelId": "UCZtXREgVXXDIePeAFlgULsA", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:02:11" - } - } - }, - "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989537977" - } - } - ], - "videoOffsetTimeMsec": "3731100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "World is great! Be happy!🌍🌎🌏 😁😀" - } - ] - }, - "authorName": { - "simpleText": "Djordje Lainovic" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMHRYVG5aaVNERjBkVlZEUm1OaWVuZFJiMlJzVGtGTFptY1NHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NeEFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" - } - }, - "id": "CjkKGkNLV052YkgxdHVVQ0ZjYnp3UW9kbE5BS2ZnEhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzM%3D", - "timestampUsec": "1571989541045925", - "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:02:12" - } - } - }, - "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g3" - } - } - ], - "videoOffsetTimeMsec": "3732472" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "because everybody love good music" - } - ] - }, - "authorName": { - "simpleText": "Svatopluk Čech" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMDFZWVhNM2FqRjBkVlZEUmxNek5IZFJiMlJZWVhkSFdtY1NHME5QWVhadlgxaDVkSFZWUTBaVlpVUkdVVzlrTTFSRlEwVkJNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlljRVpFU2xJdGFYYzNUbEZmYm1KcU0zZDRNR05S" - } - }, - "id": "CjkKGkNNWGFzN2oxdHVVQ0ZTMzR3UW9kWGF3R1pnEhtDT2F2b19YeXR1VUNGVWVERlFvZDNURUNFQTA%3D", - "timestampUsec": "1571989555572037", - "authorExternalChannelId": "UCXpFDJR-iw7NQ_nbj3wx0cQ", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:02:27" - } - } - }, - "clientId": "COavo_XytuUCFUeDFQod3TECEA0" - } - } - ], - "videoOffsetTimeMsec": "3747045" + }, + "id": "CkUKGkNNTElpLUxydHVVQ0ZSUGN3UW9kMjljRThREidDSkQzOTl6cnR1VUNGUUpJbXdvZEdwZ0FXQTE1NzE5ODY5NTgyMDk%3D", + "timestampUsec": "1571986958640194", + "authorExternalChannelId": "UCTbt7QtBE0i4ZmbXu6FC-Ew", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "19:09" + } } - ] - } + }, + "clientId": "CJD399zrtuUCFQJImwodGpgAWA1571986958209" + } + } + ], + "videoOffsetTimeMsec": "1149440" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "hi~" + } + ] + }, + "authorName": { + "simpleText": "[H i _ playlist ] _me" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-6sY04x8MH7g/AAAAAAAAAAI/AAAAAAAAAAA/ePmqYR26K-4/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-6sY04x8MH7g/AAAAAAAAAAI/AAAAAAAAAAA/ePmqYR26K-4/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMDFmVjJnNWRuTjBkVlZEUmxwTVluZFJiMlJTUmpoSFpGRVNHME5KUzFWeFkxOXpkSFZWUTBaVk9XVlpRVzlrWWtaWlVIQjNNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTkRXVFZxU1hSSWNFSm9UVmRKYmpSQ1dHRlllV3hS" + } + }, + "id": "CjkKGkNNX1doOXZzdHVVQ0ZaTGJ3UW9kUkY4R2RREhtDSUtVcWNfc3R1VUNGVTllWUFvZGJGWVBwdzA%3D", + "timestampUsec": "1571987212331855", + "authorExternalChannelId": "UCCY5jItHpBhMWIn4BXaXylQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "23:23" + } + } + }, + "clientId": "CIKUqc_stuUCFU9eYAodbFYPpw0" + } + } + ], + "videoOffsetTimeMsec": "1403752" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "hi in Bangkok" + } + ] + }, + "authorName": { + "simpleText": "Bangrak House" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-9nyHyYIJyxA/AAAAAAAAAAI/AAAAAAAAAAA/vipyPpGCwSQ/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-9nyHyYIJyxA/AAAAAAAAAAI/AAAAAAAAAAA/vipyPpGCwSQ/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDlQWmpKd2VuVjBkVlZEUm1SaWFIZFJiMlJWV2tsR1VuY1NKME5PUnpaMWNFeDFkSFZWUTBaa1ZFaGpkMFZrWjJ4SlNrNTNNVFUzTVRrNE56WXhOemt4TWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU00V1hsTVgxaHZSVkJSTXpKd2VqYzVkalJtWWkxbg==" + } + }, + "id": "CkUKGkNPT2YycHp1dHVVQ0ZkYmh3UW9kVVpJRlJ3EidDTkc2dXBMdXR1VUNGZFRIY3dFZGdsSUpOdzE1NzE5ODc2MTc5MTI%3D", + "timestampUsec": "1571987618435043", + "authorExternalChannelId": "UC8YyL_XoEPQ32pz79v4fb-g", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "30:08" + } + } + }, + "clientId": "CNG6upLutuUCFdTHcwEdglIJNw1571987617912" + } + } + ], + "videoOffsetTimeMsec": "1808926" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Thank you" + } + ] + }, + "authorName": { + "simpleText": "melvin hamilton" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-6d3V4yG9txk/AAAAAAAAAAI/AAAAAAAAAAA/Tcfg_kI5qU4/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-6d3V4yG9txk/AAAAAAAAAAI/AAAAAAAAAAA/Tcfg_kI5qU4/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMHhUYkRFdFluZDBkVlZEUmxKWVluZFJiMlJKTFZsTFpsRVNIRU5KTTA0eVRqZDNkSFZWUTBaUk9HWkJkMjlrYTJKclRUSkJMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRaRXRWWTFkTE5VdEJaMDV6VVVaYVJYRjFTVkpmVVElM0QlM0Q=" + } + }, + "id": "CjoKGkNMU2wxLWJ3dHVVQ0ZSWGJ3UW9kSS1ZS2ZREhxDSTNOMk43d3R1VUNGUThmQXdvZGtia00yQS0w", + "timestampUsec": "1571988310446772", + "authorExternalChannelId": "UCdKUcWK5KAgNsQFZEquIR_Q", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "41:41" + } + } + }, + "clientId": "CI3N2N7wtuUCFQ8fAwodkbkM2A-0" + } + } + ], + "videoOffsetTimeMsec": "2501844" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "🦋❤️👍" + } + ] + }, + "authorName": { + "simpleText": "σ ε" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-pDzS0FXknDY/AAAAAAAAAAI/AAAAAAAAAAA/LswHvFvF1V8/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-pDzS0FXknDY/AAAAAAAAAAI/AAAAAAAAAAA/LswHvFvF1V8/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMGw2ZWpJdGFuZDBkVlZEUmxsTU1YZFJiMlF3UTJOSVZtY1NKME5LWWtwbk9GQjNkSFZWUTBaWmNVZ3paMjlrZHkxQlEwTkJNVFUzTVRrNE9ETXhORFk1T0JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5QUTI1UlVqTnVZak5NY2tOTE5GbG9TblUyZERCMw==" + } + }, + "id": "CkUKGkNJenoyLWp3dHVVQ0ZZTDF3UW9kMENjSFZnEidDSmJKZzhQd3R1VUNGWXFIM2dvZHctQUNDQTE1NzE5ODgzMTQ2OTg%3D", + "timestampUsec": "1571988314716556", + "authorExternalChannelId": "UCOCnQR3nb3LrCK4YhJu6t0w", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "41:45" + } + } + }, + "clientId": "CJbJg8PwtuUCFYqH3godw-ACCA1571988314698" + } + } + ], + "videoOffsetTimeMsec": "2505715" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "안녕~" + } + ] + }, + "authorName": { + "simpleText": "이경민" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-9SOY3L3h55s/AAAAAAAAAAI/AAAAAAAAAAA/tTO-Mg44Tbs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-9SOY3L3h55s/AAAAAAAAAAI/AAAAAAAAAAA/tTO-Mg44Tbs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMGwyU205YU4zaDBkVlZEUm1NM2VYZFJiMlJyZWxWTGFVRVNHME5MZG1nNVNUZDRkSFZWUTBaU1VrRm9VVzlrYTNoTlIwWm5NQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTnVWakJpYUdGRGNGTlNWVkJQUnkxZmMzVnhlREZS" + } + }, + "id": "CjkKGkNJdkpvWjd4dHVVQ0ZjN3l3UW9ka3pVS2lBEhtDS3ZoOUk3eHR1VUNGUlJBaFFvZGt4TUdGZzA%3D", + "timestampUsec": "1571988427007115", + "authorExternalChannelId": "UCnV0bhaCpSRUPOG-_suqx1Q", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "43:38" + } + } + }, + "clientId": "CKvh9I7xtuUCFRRAhQodkxMGFg0" + } + } + ], + "videoOffsetTimeMsec": "2618354" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "こんにちは!" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMUJVVUc1dk4zbDBkVlZEUmxJMFFURm5RV1IyYkRSTVZVRVNKME5RTTFKek5IcDVkSFZWUTBaalowMVhRVzlrUkdSUlJXaG5NVFUzTVRrNE9EWTJNVE14TVJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNQVFBubzd5dHVVQ0ZSNEExZ0Fkdmw0TFVBEidDUDNSczR6eXR1VUNGY2dNV0FvZERkUUVoZzE1NzE5ODg2NjEzMTE%3D", + "timestampUsec": "1571988661839860", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "47:33" + } + } + }, + "clientId": "CP3Rs4zytuUCFcgMWAodDdQEhg1571988661311" + } + } + ], + "videoOffsetTimeMsec": "2853340" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "woooow" + } + ] + }, + "authorName": { + "simpleText": "츄" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-SnlGRP-oThI/AAAAAAAAAAI/AAAAAAAAAAA/4AuU7O6i-58/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-SnlGRP-oThI/AAAAAAAAAAI/AAAAAAAAAAA/4AuU7O6i-58/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHR4Tkd4MFZIbDBkVlZEUmxKUVRuZFJiMlJhZEd0S1ZVRVNKME5MY2xCNGMzSjVkSFZWUTBabGExaDBkMEZrZEZkWlIzcG5NVFUzTVRrNE9EZ3dPRGN3TUJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hVG5kUlYzWjBXVWhXVkRKdmJrWldlbXBzTmkxUg==" + } + }, + "id": "CkUKGkNLcTRsdFR5dHVVQ0ZSUE53UW9kWnRrSlVBEidDS3JQeHNyeXR1VUNGZWtYdHdBZHRXWUd6ZzE1NzE5ODg4MDg3MDA%3D", + "timestampUsec": "1571988808506410", + "authorExternalChannelId": "UCZNwQWvtYHVT2onFVzjl6-Q", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "50:00" + } + } + }, + "clientId": "CKrPxsrytuUCFekXtwAdtWYGzg1571988808700" + } + } + ], + "videoOffsetTimeMsec": "3000275" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "音楽を聴いていると気持ちいい。" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDh0WkhsMVdIbDBkVlZEUmxWMlNuZFJiMlJ2V0dOSmNuY1NKME5OZVVWdkxWUjVkSFZWUTBaWk1XUkxaMjlrWWpCSlQwZG5NVFUzTVRrNE9EZzBORFE0T1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNPLWR5dVh5dHVVQ0ZVdkp3UW9kb1hjSXJ3EidDTXlFby1UeXR1VUNGWTFkS2dvZGIwSU9HZzE1NzE5ODg4NDQ0ODk%3D", + "timestampUsec": "1571988845006575", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "50:36" + } + } + }, + "clientId": "CMyEo-TytuUCFY1dKgodb0IOGg1571988844489" + } + } + ], + "videoOffsetTimeMsec": "3036293" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "아령" + } + ] + }, + "authorName": { + "simpleText": "Andy R" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMGszTVc5YWRucDBkVlZEUmxacWRYZFJiMlIyWlZGTkxXY1NIRU5QZG1WM1QycDVkSFZWUTBaU2RHcFpRVzlrVGtGTlFrWkJMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRaR1F0WTAxMk9HZ3hSVXBDYjA1cFozQllWWEptVVElM0QlM0Q=" + } + }, + "id": "CjoKGkNJNzFvWnZ6dHVVQ0ZWanV3UW9kdmVRTS1nEhxDT3Zld09qeXR1VUNGUnRqWUFvZE5BTUJGQS0w", + "timestampUsec": "1571988957592206", + "authorExternalChannelId": "UCdd-cMv8h1EJBoNigpXUrfQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "52:28" + } + } + }, + "clientId": "COvewOjytuUCFRtjYAodNAMBFA-0" + } + } + ], + "videoOffsetTimeMsec": "3148639" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "나는 한국어를 배우고 있다" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHgyWjIwMldIcDBkVlZEUmxkNldYZFJiMlE0YmxGSGFGRVNKME5PV0ZNMVgxOTVkSFZWUTBaYVdXTlpRVzlrUVU1SlRYQm5NVFUzTVRrNE9EazNOemczTmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNMdmdtNlh6dHVVQ0ZXell3UW9kOG5RR2hREidDTlhTNV9feXR1VUNGWlljWUFvZEFOSU1wZzE1NzE5ODg5Nzc4NzY%3D", + "timestampUsec": "1571988978462779", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "52:49" + } + } + }, + "clientId": "CNXS5__ytuUCFZYcYAodANIMpg1571988977876" + } + } + ], + "videoOffsetTimeMsec": "3169427" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "今は4:37分だ" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDlMZEd4TmFucDBkVlZEUm1SaWFIZFJiMlJyV0UxS1RYY1NKME5PZFc4MVkySjZkSFZWUTBaYVRWUlpRVzlrZGt0elRYSm5NVFUzTVRrNE9UQTFNVEU0TXhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNPS3RsTWp6dHVVQ0ZkYmh3UW9ka1hNSk13EidDTnVvNWNienR1VUNGWk1UWUFvZHZLc01yZzE1NzE5ODkwNTExODM%3D", + "timestampUsec": "1571989051741922", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "54:02" + } + } + }, + "clientId": "CNuo5cbztuUCFZMTYAodvKsMrg1571989051183" + } + } + ], + "videoOffsetTimeMsec": "3242989" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "ChwKGkNJZTl5ODN6dHVVQ0ZVcGRGUW9kT0ZjR01R", + "timestampUsec": "1571989077775669", + "authorName": { + "simpleText": "Svatopluk Čech" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "CZK 20.00" + }, + "message": { + "runs": [ + { + "text": "Hello from Czech Republic" + } + ] + }, + "headerBackgroundColor": 4278237396, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4278248959, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "UCXpFDJR-iw7NQ_nbj3wx0cQ", + "authorNameTextColor": 3003121664, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2g0S0hBb2FRMGxsT1hrNE0zcDBkVlZEUmxWd1pFWlJiMlJQUm1OSFRWRVFBQm80R2cwS0MxTnpha051U0U5ckxWTnJLaWNLR0ZWRFNtaHFSVGQzWW1SWlFXRmxNVWN5Tlcwd2RFaEJRUklMVTNOcVEyNUlUMnN0VTJzZ0FTZ0JNaG9LR0ZWRFdIQkdSRXBTTFdsM04wNVJYMjVpYWpOM2VEQmpVUSUzRCUzRA==" + } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "54:29" + } + } + } + } + } + ], + "videoOffsetTimeMsec": "3269119" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "나두" + } + ] + }, + "authorName": { + "simpleText": "Andy R" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-MttMuZY6RiI/AAAAAAAAAAI/AAAAAAAAAAA/uwveGKQip0I/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMGszYTJkMGJucDBkVlZEUmxKVlF6Rm5RV1JuY0d0RlYzY1NIRU5QZG1WM1QycDVkSFZWUTBaU2RHcFpRVzlrVGtGTlFrWkJMVEVRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRaR1F0WTAxMk9HZ3hSVXBDYjA1cFozQllWWEptVVElM0QlM0Q=" + } + }, + "id": "CjoKGkNJN2tndG56dHVVQ0ZSVUMxZ0FkZ3BrRVd3EhxDT3Zld09qeXR1VUNGUnRqWUFvZE5BTUJGQS0x", + "timestampUsec": "1571989087105550", + "authorExternalChannelId": "UCdd-cMv8h1EJBoNigpXUrfQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "54:38" + } + } + }, + "clientId": "COvewOjytuUCFRtjYAodNAMBFA-1" + } + } + ], + "videoOffsetTimeMsec": "3278021" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "😍" + } + ] + }, + "authorName": { + "simpleText": "Yennie Srihandayanie" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-3iFq975mVjw/AAAAAAAAAAI/AAAAAAAAAAA/YOibd2zD1QU/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-3iFq975mVjw/AAAAAAAAAAI/AAAAAAAAAAA/YOibd2zD1QU/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMUJ0YnpoUGFucDBkVlZEUm1SRWQzZFJiMlJ1YUZsUVdVRVNHME5MVjNocFRXcDVkSFZWUTBabFRGWmpkMFZrVG1KM1N6bDNNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTnhhbEk1YlVkU1IwNXRRMUZsWjNwNlMwZFVPR2wz" + } + }, + "id": "CjkKGkNQbW84T2p6dHVVQ0ZkRHd3UW9kbmhZUFlBEhtDS1d4aU1qeXR1VUNGZUxWY3dFZE5id0s5dzA%3D", + "timestampUsec": "1571989120357497", + "authorExternalChannelId": "UCqjR9mGRGNmCQegzzKGT8iw", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "55:11" + } + } + }, + "clientId": "CKWxiMjytuUCFeLVcwEdNbwK9w0" + } + } + ], + "videoOffsetTimeMsec": "3311340" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "영어는 어렵다" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHhVV25NdE4zcDBkVlZEUmxsNWIzZFJiMlIxWjFWQ2FWRVNKME5KTm5odVQySjZkSFZWUTBaV1NXaExaMjlrVDBoelFtUlJNVFUzTVRrNE9URXpNVE13TXhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNMVFpzLTd6dHVVQ0ZZeW93UW9kdWdVQmlREidDSTZ4bk9ienR1VUNGVkloS2dvZE9Ic0JkUTE1NzE5ODkxMzEzMDM%3D", + "timestampUsec": "1571989131947188", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "55:22" + } + } + }, + "clientId": "CI6xnObztuUCFVIhKgodOHsBdQ1571989131303" + } + } + ], + "videoOffsetTimeMsec": "3322922" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Music" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDF0TW5aZmNucDBkVlZEUmxGaGFuZFJiMlJLWkZGRWVuY1NKME5NYVdWcVVHNTZkSFZWUTBaVk5VSm9VVzlrYlZaVlJHZG5NVFUzTVRrNE9URTFOamMwTWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNNbTJ2X3J6dHVVQ0ZRYWp3UW9kSmRRRHp3EidDTGllalBuenR1VUNGVTVCaFFvZG1WVURnZzE1NzE5ODkxNTY3NDI%3D", + "timestampUsec": "1571989157305161", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "55:48" + } + } + }, + "clientId": "CLiejPnztuUCFU5BhQodmVUDgg1571989156742" + } + } + ], + "videoOffsetTimeMsec": "3348698" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "한국어 잘하세요" + } + ] + }, + "authorName": { + "simpleText": "이희진" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDFsTW01UWRucDBkVlZEUm1GbVZYZFJiMlJJZFRCR1pVRVNKME5KWmxaMFQySjZkSFZWUTBaU2NGSlhRVzlrZEV0M1EzWm5NVFUzTVRrNE9URTFPREl5TWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0zUkdKS1NtaDBkME5pVUZkcGJIQnpTbll0UWpWbg==" + } + }, + "id": "CkUKGkNNZTJuUHZ6dHVVQ0ZhZlV3UW9kSHUwRmVBEidDSWZWdE9ienR1VUNGUnBSV0FvZHRLd0N2ZzE1NzE5ODkxNTgyMjI%3D", + "timestampUsec": "1571989158828871", + "authorExternalChannelId": "UC7DbJJhtwCbPWilpsJv-B5g", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "55:50" + } + } + }, + "clientId": "CIfVtObztuUCFRpRWAodtKwCvg1571989158222" + } + } + ], + "videoOffsetTimeMsec": "3350222" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "おつかれさま〜" + }, + { + "text": "😊😊😊" + } + ] + }, + "authorName": { + "simpleText": "Smile Smile" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMHBIY25kWlNEQjBkVlZEUmxGWVVuZFJiMlE0VUc5RFoxRVNIRU5PVjJWdkxWOTZkSFZWUTBaVk1IRkxaMjlrVVRCTlRrTjNMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWVlJYTm5oYVEwNURiakoyYzNaWlRHdzJaVlY1VVElM0QlM0Q=" + } + }, + "id": "CjoKGkNKR3J3WUgwdHVVQ0ZRWFJ3UW9kOFBvQ2dREhxDTldlby1fenR1VUNGVTBxS2dvZFEwTU5Ddy0w", + "timestampUsec": "1571989172016529", + "authorExternalChannelId": "UCUTW6xZCNCn2vsvYLl6eUyQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "56:03" + } + } + }, + "clientId": "CNWeo-_ztuUCFU0qKgodQ0MNCw-0" + } + } + ], + "videoOffsetTimeMsec": "3363790" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "한국어 연습" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDVpY0RWSmJqQjBkVlZEUm1GVWVuZFJiMlJMYm1OSVpGRVNKME5NYVdWcVVHNTZkSFZWUTBaVk5VSm9VVzlrYlZaVlJHZG5NVFUzTVRrNE9URTRPRGM1TmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNOYnA1SW4wdHVVQ0ZhVHp3UW9kS25jSGRREidDTGllalBuenR1VUNGVTVCaFFvZG1WVURnZzE1NzE5ODkxODg3OTY%3D", + "timestampUsec": "1571989189375190", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "56:20" + } + } + }, + "clientId": "CLiejPnztuUCFU5BhQodmVUDgg1571989188796" + } + } + ], + "videoOffsetTimeMsec": "3380905" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Hello from Armenia" + } + ] + }, + "authorName": { + "simpleText": "J Geo" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-UVjQg88jmQ8/AAAAAAAAAAI/AAAAAAAAAAA/7t5nT7P8vag/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-UVjQg88jmQ8/AAAAAAAAAAI/AAAAAAAAAAA/7t5nT7P8vag/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMDlMWTJrMGVqQjBkVlZEUm1GMlIzZFJiMlJ5ZURST1FVRVNHME5MZG1adE5HWXdkSFZWUTBaWmNVTXpaMjlrVWpCM1FqQkJNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTnVkVXRpV0V0dVpGODFNa1pXTVdwMVUxWlhWRGgz" + } + }, + "id": "CjkKGkNPS2NpNHowdHVVQ0Zhdkd3UW9kcng0TkFBEhtDS3ZmbTRmMHR1VUNGWXFDM2dvZFIwd0IwQTA%3D", + "timestampUsec": "1571989194198626", + "authorExternalChannelId": "UCnuKbXKnd_52FV1juSVWT8w", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "56:25" + } + } + }, + "clientId": "CKvfm4f0tuUCFYqC3godR0wB0A0" + } + } + ], + "videoOffsetTimeMsec": "3385750" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "hiii" + } + ] + }, + "authorName": { + "simpleText": "فتاة الاوتاكو كيوكا كيو" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHRtZG5ad2JqQjBkVlZEUmxWMlZuZFJiMlF5TkVWUE5tY1NKME5LWWpkclNsUXdkSFZWUTBaVlZFdFZVVzlrYm14QlNVNUJNVFUzTVRrNE9USXlNRGsyTnhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5zUmpGWWRGSjRaMVZMY0Rsd1pXTm1XVzlGYVRkUg==" + } + }, + "id": "CkUKGkNLZnZ2cG4wdHVVQ0ZVdlZ3UW9kMjRFTzZnEidDSmI3a0pUMHR1VUNGVVRLVVFvZG5sQUlOQTE1NzE5ODkyMjA5Njc%3D", + "timestampUsec": "1571989222307751", + "authorExternalChannelId": "UClF1XtRxgUKp9pecfYoEi7Q", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "56:53" + } + } + }, + "clientId": "CJb7kJT0tuUCFUTKUQodnlAINA1571989220967" + } + } + ], + "videoOffsetTimeMsec": "3413529" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "ありがとうございます。" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHgxVkhwd2JqQjBkVlZEUmxGeGQzZFJiMlJUVGpoQmNYY1NKME5OVDFaMVNtb3dkSFZWUTBaUlZrZFhRVzlrTkhNMFRGTlJNVFUzTVRrNE9USXlNVGsyTVJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNMdVR6cG4wdHVVQ0ZRcXd3UW9kU044QXF3EidDTU9WdUpqMHR1VUNGUVZHV0FvZDRzNExTUTE1NzE5ODkyMjE5NjE%3D", + "timestampUsec": "1571989222558139", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "56:53" + } + } + }, + "clientId": "CMOVuJj0tuUCFQVGWAod4s4LSQ1571989221961" + } + } + ], + "videoOffsetTimeMsec": "3413779" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "from korea" + } + ] + }, + "authorName": { + "simpleText": "이희진" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-GiJkDQPu6rk/AAAAAAAAAAI/AAAAAAAAAAA/DAl3sxmc4nc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHh0V1c1eFREQjBkVlZEUmxWMlZuZFJiMlJXWW05TGRXY1NKME5KWmxaMFQySjZkSFZWUTBaU2NGSlhRVzlrZEV0M1EzWm5NVFUzTVRrNE9USTBNREE0TUJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0zUkdKS1NtaDBkME5pVUZkcGJIQnpTbll0UWpWbg==" + } + }, + "id": "CkUKGkNMbVlucUwwdHVVQ0ZVdlZ3UW9kVmJvS3VnEidDSWZWdE9ienR1VUNGUnBSV0FvZHRLd0N2ZzE1NzE5ODkyNDAwODA%3D", + "timestampUsec": "1571989240646713", + "authorExternalChannelId": "UC7DbJJhtwCbPWilpsJv-B5g", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "57:12" + } + } + }, + "clientId": "CIfVtObztuUCFRpRWAodtKwCvg1571989240080" + } + } + ], + "videoOffsetTimeMsec": "3432051" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "雨スゴい〜" + }, + { + "text": "😨💦💦" + } + ] + }, + "authorName": { + "simpleText": "Smile Smile" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMDVYVTIxTFZEQjBkVlZEUmxKTVkzZFJiMlJCY0hkUWFsRVNIRU5PVjJWdkxWOTZkSFZWUTBaVk1IRkxaMjlrVVRCTlRrTjNMVEVRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWVlJYTm5oYVEwNURiakoyYzNaWlRHdzJaVlY1VVElM0QlM0Q=" + } + }, + "id": "CjoKGkNOV1NtS1QwdHVVQ0ZSTGN3UW9kQXB3UGpREhxDTldlby1fenR1VUNGVTBxS2dvZFEwTU5Ddy0x", + "timestampUsec": "1571989244741973", + "authorExternalChannelId": "UCUTW6xZCNCn2vsvYLl6eUyQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "57:16" + } + } + }, + "clientId": "CNWeo-_ztuUCFU0qKgodQ0MNCw-1" + } + } + ], + "videoOffsetTimeMsec": "3436068" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Hi from indonesia 🙌😊" + } + ] + }, + "authorName": { + "simpleText": "Waliyuddin sisila" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDVmYmw4MlpqQjBkVlZEUm1OTVVYZFJiMlJNUjI5SVNYY1NKME5RYlc5dlNYb3dkSFZWUTBaUmEwRXhVVzlrUTJWelRsUlJNVFUzTVRrNE9USTFNakExTmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0xUlhKUGFsZEhRMk5oVWxoNGJraE9jRVZVVWtKbg==" + } + }, + "id": "CkUKGkNOX25fNmYwdHVVQ0ZjTFF3UW9kTEdvSEl3EidDUG1vb0l6MHR1VUNGUWtBMVFvZENlc05UUTE1NzE5ODkyNTIwNTY%3D", + "timestampUsec": "1571989252731871", + "authorExternalChannelId": "UC5ErOjWGCcaRXxnHNpETRBg", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "57:23" + } + } + }, + "clientId": "CPmooIz0tuUCFQkA1QodCesNTQ1571989252056" + } + } + ], + "videoOffsetTimeMsec": "3443547" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "bye💔😖😭" + } + ] + }, + "authorName": { + "simpleText": "فتاة الاوتاكو كيوكا كيو" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-VruOKNSwy7o/AAAAAAAAAAI/AAAAAAAAAAA/EM5kvPC-QZQ/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMGxxYmkxeVdEQjBkVlZEUmxWdWNuZFJiMlJPYUZGTGJGRVNKME5LWWpkclNsUXdkSFZWUTBaVlZFdFZVVzlrYm14QlNVNUJNVFUzTVRrNE9USTRNRE0yTWhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5zUmpGWWRGSjRaMVZMY0Rsd1pXTm1XVzlGYVRkUg==" + } + }, + "id": "CkUKGkNJam4tclgwdHVVQ0ZVbnJ3UW9kTmhRS2xREidDSmI3a0pUMHR1VUNGVVRLVVFvZG5sQUlOQTE1NzE5ODkyODAzNjI%3D", + "timestampUsec": "1571989282009992", + "authorExternalChannelId": "UClF1XtRxgUKp9pecfYoEi7Q", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "57:53" + } + } + }, + "clientId": "CJb7kJT0tuUCFUTKUQodnlAINA1571989280362" + } + } + ], + "videoOffsetTimeMsec": "3473764" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "ciao mondo.... 👋👋😁" + } + ] + }, + "authorName": { + "simpleText": "da re" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-YgZDF6KKE4c/AAAAAAAAAAI/AAAAAAAAAAA/yeahlcY42pc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-YgZDF6KKE4c/AAAAAAAAAAI/AAAAAAAAAAA/yeahlcY42pc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMUJYU0RCTVlqQjBkVlZEUm1OUVJYZFJiMlJJWWtWT1NIY1NKME5KWVhBNE5YWXdkSFZWUTBaalprd3hVVzlrVG1KUlJIbEJNVFUzTVRrNE9USTROREkzTnhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5EV2kxaFpFVXdVMFJZWDBwSmJDMVlTMHhxUW05bg==" + } + }, + "id": "CkUKGkNQV0gwTGIwdHVVQ0ZjUEV3UW9kSGJFTkh3EidDSWFwODV2MHR1VUNGY2ZMMVFvZE5iUUR5QTE1NzE5ODkyODQyNzc%3D", + "timestampUsec": "1571989283406837", + "authorExternalChannelId": "UCCZ-adE0SDX_JIl-XKLjBog", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "57:55" + } + } + }, + "clientId": "CIap85v0tuUCFcfL1QodNbQDyA1571989284277" + } + } + ], + "videoOffsetTimeMsec": "3475221" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "雨が降る" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDF4VTNCaVh6QjBkVlZEUmxKbWRIZFJiMlJmVm10TlQxRVNKME5MZGxjelltSXdkSFZWUTBaWlowNVpRVzlrUkdkclJtOUJNVFUzTVRrNE9UTXdNRGs0T1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNNcVNwYl8wdHVVQ0ZSZnR3UW9kX1ZrTU9REidDS3ZXM2JiMHR1VUNGWWdOWUFvZERna0ZvQTE1NzE5ODkzMDA5ODk%3D", + "timestampUsec": "1571989301578058", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "58:12" + } + } + }, + "clientId": "CKvW3bb0tuUCFYgNYAodDgkFoA1571989300989" + } + } + ], + "videoOffsetTimeMsec": "3492968" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "bye koko san 😢😭" + } + ] + }, + "authorName": { + "simpleText": "Waliyuddin sisila" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDVNUld3NFREQjBkVlZEUmxsVGNYZFJiMlJEWldkS00xRVNKME5RYlc5dlNYb3dkSFZWUTBaUmEwRXhVVzlrUTJWelRsUlJNVFUzTVRrNE9UTXdOVEkzTmhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0xUlhKUGFsZEhRMk5oVWxoNGJraE9jRVZVVWtKbg==" + } + }, + "id": "CkUKGkNOTEVsOEwwdHVVQ0ZZU3F3UW9kQ2VnSjNREidDUG1vb0l6MHR1VUNGUWtBMVFvZENlc05UUTE1NzE5ODkzMDUyNzY%3D", + "timestampUsec": "1571989307646546", + "authorExternalChannelId": "UC5ErOjWGCcaRXxnHNpETRBg", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "58:18" + } + } + }, + "clientId": "CPmooIz0tuUCFQkA1QodCesNTQ1571989305276" + } + } + ], + "videoOffsetTimeMsec": "3498945" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "da gusto" + } + ] + }, + "authorName": { + "simpleText": "Khastro J" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-vZNn-PLHKNw/AAAAAAAAAAI/AAAAAAAAAAA/rslpoFfthoA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-vZNn-PLHKNw/AAAAAAAAAAI/AAAAAAAAAAA/rslpoFfthoA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMHBpYzNFNE56QjBkVlZEUmxGaFUzZFJiMlJLVGpCUFdIY1NHME5LVUdNNVgzWjZkSFZWUTBaU2FXUkdVVzlrZVZWSlJrZDNNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlhRVXM0UjJkclExUm5UVXhyUzFsSFJtVllRMDlS" + } + }, + "id": "CjkKGkNKYnNxODcwdHVVQ0ZRYVN3UW9kSk4wT1h3EhtDSlBjOV92enR1VUNGUmlkRlFvZHlVSUZHdzA%3D", + "timestampUsec": "1571989333145110", + "authorExternalChannelId": "UCWAK8GgkCTgMLkKYGFeXCOQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "58:44" + } + } + }, + "clientId": "CJPc9_vztuUCFRidFQodyUIFGw0" + } + } + ], + "videoOffsetTimeMsec": "3524495" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Hello" + }, + { + "text": "〜" + }, + { + "text": "(^" + }, + { + "text": "。" + }, + { + "text": "^)" + } + ] + }, + "authorName": { + "simpleText": "Smile Smile" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-DbF250QeHlA/AAAAAAAAAAI/AAAAAAAAAAA/BLgx_hVN3yw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMHRQZW5wME56QjBkVlZEUmxweGIzZFJiMlJ1UkZWR1NrRVNIRU5PVjJWdkxWOTZkSFZWUTBaVk1IRkxaMjlrVVRCTlRrTjNMVE1RQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRWVlJYTm5oYVEwNURiakoyYzNaWlRHdzJaVlY1VVElM0QlM0Q=" + } + }, + "id": "CjoKGkNLT3p6dDcwdHVVQ0ZacW93UW9kbkRVRkpBEhxDTldlby1fenR1VUNGVTBxS2dvZFEwTU5Ddy0z", + "timestampUsec": "1571989367265699", + "authorExternalChannelId": "UCUTW6xZCNCn2vsvYLl6eUyQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "59:18" + } + } + }, + "clientId": "CNWeo-_ztuUCFU0qKgodQ0MNCw-3" + } + } + ], + "videoOffsetTimeMsec": "3558710" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "私は東京にいる。" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMUJFUXpST1h6QjBkVlZEUmxObVZuZFJiMlJmY0ZWQ2EzY1NKME5NYWw5M09UY3dkSFZWUTBaUk5HOUxaMjlrZFRBMFJIWkJNVFUzTVRrNE9UTTJPVEE0TUJBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNQREM0Tl8wdHVVQ0ZTZlZ3UW9kX3BVQmt3EidDTGpfdzk3MHR1VUNGUTRvS2dvZHUwNER2QTE1NzE5ODkzNjkwODA%3D", + "timestampUsec": "1571989369659760", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "59:20" + } + } + }, + "clientId": "CLj_w970tuUCFQ4oKgodu04DvA1571989369080" + } + } + ], + "videoOffsetTimeMsec": "3560750" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Good morning my dear friends! This weekend jazz makes me relaxing. Very good music 😀🎹🥁" + } + ] + }, + "authorName": { + "simpleText": "Djordje Lainovic" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMDVxYldsMU16QjBkVlZEUmxSWVluZFJiMlJwWTI5RlRWRVNHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" + } + }, + "id": "CjkKGkNOam1pdTMwdHVVQ0ZUWGJ3UW9kaWNvRU1REhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzA%3D", + "timestampUsec": "1571989397615448", + "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "59:48" + } + } + }, + "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g0" + } + } + ], + "videoOffsetTimeMsec": "3588722" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Hi smile - smile 😊" + } + ] + }, + "authorName": { + "simpleText": "Waliyuddin sisila" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-TIoQvksTQlY/AAAAAAAAAAI/AAAAAAAAAAA/eOcRRQ--lZs/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDVRWVhkUE56QjBkVlZEUmxwWFQzZFJiMlJLYW10RGJVRVNKME5RYlc5dlNYb3dkSFZWUTBaUmEwRXhVVzlrUTJWelRsUlJNVFUzTVRrNE9UTTVPVGsyT1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU0xUlhKUGFsZEhRMk5oVWxoNGJraE9jRVZVVWtKbg==" + } + }, + "id": "CkUKGkNOUGF3TzcwdHVVQ0ZaV093UW9kSmprQ21BEidDUG1vb0l6MHR1VUNGUWtBMVFvZENlc05UUTE1NzE5ODkzOTk5Njk%3D", + "timestampUsec": "1571989400595795", + "authorExternalChannelId": "UC5ErOjWGCcaRXxnHNpETRBg", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "59:52" + } + } + }, + "clientId": "CPmooIz0tuUCFQkA1QodCesNTQ1571989399969" + } + } + ], + "videoOffsetTimeMsec": "3592213" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "🙂" + } + ] + }, + "authorName": { + "simpleText": "Larry Jones" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-VKNGDODN-mg/AAAAAAAAAAI/AAAAAAAAAAA/2_ac0U2lQbE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-VKNGDODN-mg/AAAAAAAAAAI/AAAAAAAAAAA/2_ac0U2lQbE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMDVJVW5kZlJEQjBkVlZEUmxKWE0zZFJiMlJmVkRSQ1EzY1NIRU5QUTBRNGRISXdkSFZWUTBaaVRVSXhaMEZrVkZsUlExcEJMVEFRQUJvNEdnMEtDMU56YWtOdVNFOXJMVk5yS2ljS0dGVkRTbWhxUlRkM1ltUlpRV0ZsTVVjeU5XMHdkRWhCUVJJTFUzTnFRMjVJVDJzdFUyc2dBU2dCTWhvS0dGVkRNM1V0V2xCR1JYUTBPREkzWTFKSmFsUlVRWE5GWnclM0QlM0Q=" + } + }, + "id": "CjoKGkNOSFJ3X0QwdHVVQ0ZSVzN3UW9kX1Q0QkN3EhxDT0NEOHRyMHR1VUNGYk1CMWdBZFRZUUNaQS0w", + "timestampUsec": "1571989404838097", + "authorExternalChannelId": "UC3u-ZPFEt4827cRIjTTAsEg", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "59:55" + } + } + }, + "clientId": "COCD8tr0tuUCFbMB1gAdTYQCZA-0" + } + } + ], + "videoOffsetTimeMsec": "3595737" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Good morning my dear friends! This weekend jazz makes me relaxing. Very good music 😀🎹🥁" + } + ] + }, + "authorName": { + "simpleText": "Djordje Lainovic" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMDlmU1cxZlZEQjBkVlZEUmxsTVpYZFJiMlF6YlVsR09IY1NHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NUkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" + } + }, + "id": "CjkKGkNPX0ltX1QwdHVVQ0ZZTGV3UW9kM21JRjh3EhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzE%3D", + "timestampUsec": "1571989412570223", + "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:00:04" + } + } + }, + "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g1" + } + } + ], + "videoOffsetTimeMsec": "3604722" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "why so many japanese here?" + } + ] + }, + "authorName": { + "simpleText": "YYH" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMHhxWWpSZllqQjBkVlZEUmxGaFUzZFJiMlJ5ZFhkS1oxRVNHME5MYVVGNU5GUXdkSFZWUTBaVE1VUm9VVzlrYnpWdlJtOVJNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlBNMFpMTkRkVFoxSTBaMVpOYjJwcllYVkdWVTlu" + } + }, + "id": "CjkKGkNMamI0X2IwdHVVQ0ZRYVN3UW9kcnV3SmdREhtDS2lBeTRUMHR1VUNGUzFEaFFvZG81b0ZvUTA%3D", + "timestampUsec": "1571989417946552", + "authorExternalChannelId": "UCO3FK47SgR4gVMojkauFUOg", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:00:08" + } + } + }, + "clientId": "CKiAy4T0tuUCFS1DhQodo5oFoQ0" + } + } + ], + "videoOffsetTimeMsec": "3608795" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "ハロ" + } + ] + }, + "authorName": { + "simpleText": "Soixanteneuf" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHg1TmpaSlNERjBkVlZEUmxWVWVYZFJiMlJXTjI5TldFRVNKME5QTWpBd1puSXdkSFZWUTBaamFEbGhRVzlrZERKalExSlJNVFUzTVRrNE9UUXpPVE0yT0JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hZEZoU1JXZFdXRmhFU1dWUVpVRkdiR2RWVEhOQg==" + } + }, + "id": "CkUKGkNMeTY2SUgxdHVVQ0ZVVHl3UW9kVjdvTVhBEidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk0MzkzNjg%3D", + "timestampUsec": "1571989441092924", + "authorExternalChannelId": "UCZtXREgVXXDIePeAFlgULsA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:00:32" + } + } + }, + "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989439368" + } + } + ], + "videoOffsetTimeMsec": "3632585" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPlaceholderItemRenderer": { + "id": "CkUKGkNMT2NfSTcxdHVVQ0ZXdmhPQW9kbGRRSGVBEidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk0NjY5NzQ%3D", + "timestampUsec": "1571989468679731" + } + }, + "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989466974" + } + } + ], + "videoOffsetTimeMsec": "3659848" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "Hello Japanese dear friends! 😀" + } + ] + }, + "authorName": { + "simpleText": "Djordje Lainovic" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMHBEUzNsd1NERjBkVlZEUm1FelVuZFJiMlJ3YTJOUGNWRVNHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NaEFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" + } + }, + "id": "CjkKGkNKQ0t5cEgxdHVVQ0ZhM1J3UW9kcGtjT3FREhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzI%3D", + "timestampUsec": "1571989474149648", + "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:01:05" + } + } + }, + "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g2" + } + } + ], + "videoOffsetTimeMsec": "3665409" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "私はこのチャンネルにいい音楽を聴くために来た" + } + ] + }, + "authorName": { + "simpleText": "まふまふ愛してる" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-N-nOAgLp_T0/AAAAAAAAAAI/AAAAAAAAAAA/k7O62ZS6xgE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDF4YW1wd2NqRjBkVlZEUmxGbE9IZFJiMlJ2ZEVGT09XY1NKME5RYWswNFdtb3hkSFZWUTBaWFRrUm9VVzlrVm5OalJYQkJNVFUzTVRrNE9UUTVNVFExT1JBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU01TjBKaFJtOUVUekYxWTB0UE9YSkRUalJ2VVZaQg==" + } + }, + "id": "CkUKGkNNcWpqcHIxdHVVQ0ZRZTh3UW9kb3RBTjlnEidDUGpNOFpqMXR1VUNGV05EaFFvZFZzY0VwQTE1NzE5ODk0OTE0NTk%3D", + "timestampUsec": "1571989492044234", + "authorExternalChannelId": "UC97BaFoDO1ucKO9rCN4oQVA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:01:23" + } + } + }, + "clientId": "CPjM8Zj1tuUCFWNDhQodVscEpA1571989491459" + } + } + ], + "videoOffsetTimeMsec": "3683359" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "coz us japanese like jazz" + } + ] + }, + "authorName": { + "simpleText": "Soixanteneuf" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMHBJV0hoYWRqRjBkVlZEUmxwVVdYZFJiMlE0YkhkTFRYY1NKME5QTWpBd1puSXdkSFZWUTBaamFEbGhRVzlrZERKalExSlJNVFUzTVRrNE9UUTVNek0yTXhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hZEZoU1JXZFdXRmhFU1dWUVpVRkdiR2RWVEhOQg==" + } + }, + "id": "CkUKGkNKSFh4WnYxdHVVQ0ZaVFl3UW9kOGx3S013EidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk0OTMzNjM%3D", + "timestampUsec": "1571989495049105", + "authorExternalChannelId": "UCZtXREgVXXDIePeAFlgULsA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:01:26" + } + } + }, + "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989493363" + } + } + ], + "videoOffsetTimeMsec": "3686141" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "ohhhhh naruhoto~" + } + ] + }, + "authorName": { + "simpleText": "YYH" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-Kg1yNZLPpo4/AAAAAAAAAAI/AAAAAAAAAAA/KAKPCyTOSeM/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMHhFTkhaaE56RjBkVlZEUmxNelZYZFJiMlJuVDFGR1ZrRVNHME5MYVVGNU5GUXdkSFZWUTBaVE1VUm9VVzlrYnpWdlJtOVJNUkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlBNMFpMTkRkVFoxSTBaMVpOYjJwcllYVkdWVTlu" + } + }, + "id": "CjkKGkNMRDR2YTcxdHVVQ0ZTM1V3UW9kZ09RRlZBEhtDS2lBeTRUMHR1VUNGUzFEaFFvZG81b0ZvUTE%3D", + "timestampUsec": "1571989534768176", + "authorExternalChannelId": "UCO3FK47SgR4gVMojkauFUOg", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:02:06" + } + } + }, + "clientId": "CKiAy4T0tuUCFS1DhQodo5oFoQ1" + } + } + ], + "videoOffsetTimeMsec": "3726156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "we meet again mafumafu san" + } + ] + }, + "authorName": { + "simpleText": "Soixanteneuf" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-Bu3ItQBLq2U/AAAAAAAAAAI/AAAAAAAAAAA/29OhNljHYfk/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2tjS1JRb2FRMDVoZFRaaVJERjBkVlZEUmxVelkzZFJiMlIxY1hkTmFrRVNKME5QTWpBd1puSXdkSFZWUTBaamFEbGhRVzlrZERKalExSlJNVFUzTVRrNE9UVXpOemszTnhBQUdqZ2FEUW9MVTNOcVEyNUlUMnN0VTJzcUp3b1lWVU5LYUdwRk4zZGlaRmxCWVdVeFJ6STFiVEIwU0VGQkVndFRjMnBEYmtoUGF5MVRheUFCS0FFeUdnb1lWVU5hZEZoU1JXZFdXRmhFU1dWUVpVRkdiR2RWVEhOQg==" + } + }, + "id": "CkUKGkNOYXU2YkQxdHVVQ0ZVM2N3UW9kdXF3TWpBEidDTzIwMGZyMHR1VUNGY2g5YUFvZHQyY0NSUTE1NzE5ODk1Mzc5Nzc%3D", + "timestampUsec": "1571989539673942", + "authorExternalChannelId": "UCZtXREgVXXDIePeAFlgULsA", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:02:11" + } + } + }, + "clientId": "CO200fr0tuUCFch9aAodt2cCRQ1571989537977" + } + } + ], + "videoOffsetTimeMsec": "3731100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "World is great! Be happy!🌍🌎🌏 😁😀" + } + ] + }, + "authorName": { + "simpleText": "Djordje Lainovic" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/--tbt3G2fVTk/AAAAAAAAAAI/AAAAAAAAAAA/w4oY17Qh4hc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMHRYVG5aaVNERjBkVlZEUm1OaWVuZFJiMlJzVGtGTFptY1NHME5QYmxjNE4xZ3dkSFZWUTBaU1NuazBRVzlrTmxSalFqRm5NeEFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTXpYMVpoUnpsNWFtaEtWM0F0V1dSMVJESmhTVTFS" + } + }, + "id": "CjkKGkNLV052YkgxdHVVQ0ZjYnp3UW9kbE5BS2ZnEhtDT25XODdYMHR1VUNGUkp5NEFvZDZUY0IxZzM%3D", + "timestampUsec": "1571989541045925", + "authorExternalChannelId": "UC3_VaG9yjhJWp-YduD2aIMQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:02:12" + } + } + }, + "clientId": "COnW87X0tuUCFRJy4Aod6TcB1g3" + } + } + ], + "videoOffsetTimeMsec": "3732472" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "because everybody love good music" + } + ] + }, + "authorName": { + "simpleText": "Svatopluk Čech" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-4PqtNbyI02Q/AAAAAAAAAAI/AAAAAAAAAAA/UCO9qZGm8t8/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMDFZWVhNM2FqRjBkVlZEUmxNek5IZFJiMlJZWVhkSFdtY1NHME5QWVhadlgxaDVkSFZWUTBaVlpVUkdVVzlrTTFSRlEwVkJNQkFBR2pnYURRb0xVM05xUTI1SVQyc3RVMnNxSndvWVZVTkthR3BGTjNkaVpGbEJZV1V4UnpJMWJUQjBTRUZCRWd0VGMycERia2hQYXkxVGF5QUJLQUV5R2dvWVZVTlljRVpFU2xJdGFYYzNUbEZmYm1KcU0zZDRNR05S" + } + }, + "id": "CjkKGkNNWGFzN2oxdHVVQ0ZTMzR3UW9kWGF3R1pnEhtDT2F2b19YeXR1VUNGVWVERlFvZDNURUNFQTA%3D", + "timestampUsec": "1571989555572037", + "authorExternalChannelId": "UCXpFDJR-iw7NQ_nbj3wx0cQ", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:02:27" + } + } + }, + "clientId": "COavo_XytuUCFUeDFQod3TECEA0" + } + } + ], + "videoOffsetTimeMsec": "3747045" + } } - }, - "csn": "CAXIXa-uHZnC4wL5nZ7oBQ", - "url": "\/live_chat_replay\/get_live_chat_replay?continuation=op2w0wRyGjxDZzhhRFFvTFUzTnFRMjVJVDJzdFUyc2FFLXFvM2JrQkRRb0xVM05xUTI1SVQyc3RVMnNnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAHIECAEQAHgA", - "xsrf_token": "QUFFLUhqbTZWWEFiT3ZxaDAtY09pRzZXSUotZC1uclFMQXxBQ3Jtc0tsOFZYN09CWFlBd2NKSFB4R3hmN3dUY2xXaW9tbzdFZlZBTllDcnBhMG9WUXVkZGZ5RGRIYkxSajBiNVpsNU5PV3hNYkhUZGJybTVEYWM2MWREbTRUYnc3XzRpeUJVbFpNR0dod1RPbGtVLWJhdkhtUVpVN0JKVGNSQVRSY0ZsODhodEwxaWdjN0pHZThlbEJVXzJMc2VXZGtQOXc=" -} \ No newline at end of file + ] + } + }, + "csn": "CAXIXa-uHZnC4wL5nZ7oBQ", + "url": "/live_chat_replay/get_live_chat_replay?continuation=op2w0wRyGjxDZzhhRFFvTFUzTnFRMjVJVDJzdFUyc2FFLXFvM2JrQkRRb0xVM05xUTI1SVQyc3RVMnNnQVElM0QlM0QoATAAOABAAEgEUhwIABAAGAAgACoOc3RhdGljY2hlY2tzdW1AAFgDYAFoAHIECAEQAHgA", + "xsrf_token": "QUFFLUhqbTZWWEFiT3ZxaDAtY09pRzZXSUotZC1uclFMQXxBQ3Jtc0tsOFZYN09CWFlBd2NKSFB4R3hmN3dUY2xXaW9tbzdFZlZBTllDcnBhMG9WUXVkZGZ5RGRIYkxSajBiNVpsNU5PV3hNYkhUZGJybTVEYWM2MWREbTRUYnc3XzRpeUJVbFpNR0dod1RPbGtVLWJhdkhtUVpVN0JKVGNSQVRSY0ZsODhodEwxaWdjN0pHZThlbEJVXzJMc2VXZGtQOXc=" +} diff --git a/tests/testdata/compatible/newSponsor.json b/tests/testdata/compatible/newSponsor.json index a5bd8b4..7022429 100644 --- a/tests/testdata/compatible/newSponsor.json +++ b/tests/testdata/compatible/newSponsor.json @@ -1,1857 +1,1856 @@ { - "timing": { - "info": { - "st": 100 + "timing": { + "info": { + "st": 100 + } + }, + + "responseContext": { + "serviceTrackingParams": [ + { + "service": "CSI", + "params": [ + { + "key": "GetLiveChat_rid", + "value": "0xcb7fb21ed3bebef5" + }, + { + "key": "c", + "value": "WEB" + }, + { + "key": "cver", + "value": "2.20191010.04.06" + }, + { + "key": "yt_li", + "value": "0" + } + ] + }, + { + "service": "GFEEDBACK", + "params": [ + { + "key": "e", + "value": "23735226,23735347,23744176,23748146,23793834,23794463,23794618,23804281,23826780,23832073,23836260,23836965,23837742,23837772,23837851,23837993,23839278,23839362,23840216,23842630,23842986,23843534,23845646,23847144,23847943,23848422,23848676,23848676,23849316,23850276,23850330,23851677,24630348,24650038,9405960,9449243,9471235" + }, + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "GUIDED_HELP", + "params": [ + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "ECATCHER", + "params": [ + { + "key": "client.name", + "value": "WEB" + }, + { + "key": "client.version", + "value": "2.20191009" + }, + { + "key": "innertube.build.changelist", + "value": "273830839" + }, + { + "key": "innertube.build.experiments.source_version", + "value": "274226231" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_20191008_4_RC2" + }, + { + "key": "innertube.build.timestamp", + "value": "1570659367" + }, + { + "key": "innertube.build.variants.checksum", + "value": "3a5ae9409679bfdefdb52058a1fd326c" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] + } + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "PvujXbH0OIazqQHXgJ64DQ", + "visitorData": "CgtaMnVPX1Q0WlNlOCi-9o_tBQ%3D%3D" + } + } + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1056, + "objectId": "Y2hhdH5VQ25SUVlIVG5STFNGMGNMSndNbmVkQ2d-NTIzNjc1OQ==", + "topic": "chat~UCnRQYHTnRLSF0cLJwMnedCg~5236759", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1571027775014" + }, + "timeoutMs": 10000, + "continuation": "0ofMyAPQARpuQ2t3U0lRb1lWVU51VWxGWlNGUnVVa3hUUmpCalRFcDNUVzVsWkVObkVnVXZiR2wyWlNvbkNoaFZRMjVTVVZsSVZHNVNURk5HTUdOTVNuZE5ibVZrUTJjU0MwMURNM2RWU2kxQ1dFNUZJQUklM0Qo9qKa0d2a5QIwADgAQAJKKQgAEAAYACAAKg5zdGF0aWNjaGVja3N1bToAQABKAFCpzNfD9prlAlgDUOS4msbxmuUCWOS4msbxmuUCaAGCAQIIAYgBAKABt4LZw_aa5QI%3D", + "clickTrackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } } - }, - "response": { - "responseContext": { - "serviceTrackingParams": [ - { - "service": "CSI", - "params": [ - { - "key": "GetLiveChat_rid", - "value": "0xcb7fb21ed3bebef5" - }, - { - "key": "c", - "value": "WEB" - }, - { - "key": "cver", - "value": "2.20191010.04.06" - }, - { - "key": "yt_li", - "value": "0" - } - ] - }, - { - "service": "GFEEDBACK", - "params": [ - { - "key": "e", - "value": "23735226,23735347,23744176,23748146,23793834,23794463,23794618,23804281,23826780,23832073,23836260,23836965,23837742,23837772,23837851,23837993,23839278,23839362,23840216,23842630,23842986,23843534,23845646,23847144,23847943,23848422,23848676,23848676,23849316,23850276,23850330,23851677,24630348,24650038,9405960,9449243,9471235" - }, - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "GUIDED_HELP", - "params": [ - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "ECATCHER", - "params": [ - { - "key": "client.name", - "value": "WEB" - }, - { - "key": "client.version", - "value": "2.20191009" - }, - { - "key": "innertube.build.changelist", - "value": "273830839" - }, - { - "key": "innertube.build.experiments.source_version", - "value": "274226231" - }, - { - "key": "innertube.build.label", - "value": "youtube.ytfe.innertube_20191008_4_RC2" - }, - { - "key": "innertube.build.timestamp", - "value": "1570659367" - }, - { - "key": "innertube.build.variants.checksum", - "value": "3a5ae9409679bfdefdb52058a1fd326c" - }, - { - "key": "innertube.run.job", - "value": "ytfe-innertube-replica-only.ytfe" - } - ] - } - ], - "webResponseContextExtensionData": { - "ytConfigData": { - "csn": "PvujXbH0OIazqQHXgJ64DQ", - "visitorData": "CgtaMnVPX1Q0WlNlOCi-9o_tBQ%3D%3D" - } - } - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatLegacyPaidMessageRenderer": { + "id": "ChwKGkNQYWltdEhkbXVVQ0Zhakl3UW9kaGgwS2RR", + "timestampUsec": "1571021092458870", + "eventText": { + "runs": [ { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1056, - "objectId": "Y2hhdH5VQ25SUVlIVG5STFNGMGNMSndNbmVkQ2d-NTIzNjc1OQ==", - "topic": "chat~UCnRQYHTnRLSF0cLJwMnedCg~5236759", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1571027775014" - }, - "timeoutMs": 10000, - "continuation": "0ofMyAPQARpuQ2t3U0lRb1lWVU51VWxGWlNGUnVVa3hUUmpCalRFcDNUVzVsWkVObkVnVXZiR2wyWlNvbkNoaFZRMjVTVVZsSVZHNVNURk5HTUdOTVNuZE5ibVZrUTJjU0MwMURNM2RWU2kxQ1dFNUZJQUklM0Qo9qKa0d2a5QIwADgAQAJKKQgAEAAYACAAKg5zdGF0aWNjaGVja3N1bToAQABKAFCpzNfD9prlAlgDUOS4msbxmuUCWOS4msbxmuUCaAGCAQIIAYgBAKABt4LZw_aa5QI%3D", - "clickTrackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } + "text": "新規メンバー" } - ], - "actions": [ + ] + }, + "detailText": { + "simpleText": "ようこそ、カチュア さん!" + }, + "authorName": { + "simpleText": "カチュア" + }, + "authorPhoto": { + "thumbnails": [ { - "addChatItemAction": { - "item": { - "liveChatLegacyPaidMessageRenderer": { - "id": "ChwKGkNQYWltdEhkbXVVQ0Zhakl3UW9kaGgwS2RR", - "timestampUsec": "1571021092458870", - "eventText": { - "runs": [ - { - "text": "新規メンバー" - } - ] - }, - "detailText": { - "simpleText": "ようこそ、カチュア さん!" - }, - "authorName": { - "simpleText": "カチュア" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-ASF61F1_1Ks/AAAAAAAAAAI/AAAAAAAAAAA/ybruJcnkZrg/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-ASF61F1_1Ks/AAAAAAAAAAI/AAAAAAAAAAA/ybruJcnkZrg/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorExternalChannelId": "UCWzeZdxsrvJ_xQc6ykGg8Pg", - "contextMenuEndpoint": { - "clickTrackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2g0S0hBb2FRMUJoYVcxMFNHUnRkVlZEUm1GcVNYZFJiMlJvYURCTFpGRVFBQnBNRWlFS0dGVkRibEpSV1VoVWJsSk1VMFl3WTB4S2QwMXVaV1JEWnhJRkwyeHBkbVVxSndvWVZVTnVVbEZaU0ZSdVVreFRSakJqVEVwM1RXNWxaRU5uRWd0TlF6TjNWVW90UWxoT1JTQUNLQUV5R2dvWVZVTlhlbVZhWkhoemNuWktYM2hSWXpaNWEwZG5PRkJu" - } - }, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - } - } - } - } + "url": "https://yt3.ggpht.com/-ASF61F1_1Ks/AAAAAAAAAAI/AAAAAAAAAAA/ybruJcnkZrg/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, { - "addChatItemAction": { - "item": { - "liveChatViewerEngagementMessageRenderer": { - "id": "CioKKENPTU1VTklUWV9HVUlERUxJTkVTX1ZFTTE1NzEwMjc3NzQ5OTM0NTM%3D", - "timestampUsec": "1571027774993499", - "icon": { - "iconType": "YOUTUBE_ROUND" - }, - "message": { - "runs": [ - { - "text": "チャットへようこそ!ご自身のプライバシーを守るとともに、YouTube のコミュニティ ガイドラインを遵守することを忘れないでください。" - } - ] - }, - "actionButton": { - "buttonRenderer": { - "style": "STYLE_BLUE_TEXT", - "size": "SIZE_DEFAULT", - "isDisabled": false, - "text": { - "simpleText": "詳細" - }, - "navigationEndpoint": { - "clickTrackingParams": "CA0Q8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "commandMetadata": { - "webCommandMetadata": { - "url": "//support.google.com/youtube/answer/2853856?hl=ja#safe", - "rootVe": 83769 - } - }, - "urlEndpoint": { - "url": "//support.google.com/youtube/answer/2853856?hl=ja#safe", - "target": "TARGET_NEW_WINDOW" - } - }, - "accessibility": { - "label": "詳細" - }, - "trackingParams": "CA0Q8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "accessibilityData": { - "accessibilityData": { - "label": "詳細" - } - } - } - } - } - } - } - } - ], - "actionPanel": { - "liveChatMessageInputRenderer": { - "inputField": { - "liveChatTextInputFieldRenderer": { - "placeholder": { - "runs": [ - { - "text": "メッセージを入力..." - } - ] - }, - "maxCharacterLimit": 200, - "emojiCharacterCount": 10 - } - }, - "sendButton": { - "buttonRenderer": { - "icon": { - "iconType": "SEND" - }, - "accessibility": { - "label": "送信" - }, - "trackingParams": "CAwQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=" - } - }, - "pickers": [ - { - "emojiPickerRenderer": { - "id": "emoji", - "categories": [ - { - "emojiPickerCategoryRenderer": { - "categoryId": "people", - "title": { - "simpleText": "人" - }, - "emojiIds": [ - "😀", - "😁", - "😂", - "🤣", - "😃", - "😄", - "😅", - "😆", - "😉", - "😊", - "😋", - "😎", - "😍", - "😘", - "😗", - "😙", - "😚", - "☺", - "🙂", - "🤗", - "🤔", - "😐", - "😑", - "😶", - "🙄", - "😏", - "😣", - "😥", - "😮", - "🤐", - "😯", - "😪", - "😫", - "😴", - "😌", - "🤓", - "😛", - "😜", - "😝", - "🤤", - "😒", - "😓", - "😔", - "😕", - "🙃", - "🤑", - "😲", - "☹", - "🙁", - "😖", - "😞", - "😟", - "😤", - "😢", - "😭", - "😦", - "😧", - "😨", - "😩", - "😬", - "😰", - "😱", - "😳", - "😵", - "😡", - "😠", - "😇", - "🤠", - "🤡", - "🤥", - "😷", - "🤒", - "🤕", - "🤢", - "🤧", - "😈", - "👿", - "👹", - "👺", - "💀", - "👻", - "👽", - "🤖", - "💩", - "😺", - "😸", - "😹", - "😻", - "😼", - "😽", - "🙀", - "😿", - "😾", - "👦", - "👧", - "👨", - "👩", - "👴", - "👵", - "👶", - "👼", - "👮", - "🕵", - "💂", - "👷", - "👳", - "👱", - "🎅", - "🤶", - "👸", - "🤴", - "👰", - "🤵", - "🤰", - "👲", - "🙍", - "🙎", - "🙅", - "🙆", - "💁", - "🙋", - "🙇", - "🤦", - "🤷", - "💆", - "💇", - "🚶", - "🏃", - "💃", - "🕺", - "👯", - "🗣", - "👤", - "👥", - "👫", - "👬", - "👭", - "💏", - "👨‍❤️‍💋‍👨", - "👩‍❤️‍💋‍👩", - "💑", - "👨‍❤️‍👨", - "👩‍❤️‍👩", - "👪", - "👨‍👩‍👧", - "👨‍👩‍👧‍👦", - "👨‍👩‍👦‍👦", - "👨‍👩‍👧‍👧", - "👨‍👨‍👦", - "👨‍👨‍👧", - "👨‍👨‍👧‍👦", - "👨‍👨‍👦‍👦", - "👨‍👨‍👧‍👧", - "👩‍👩‍👦", - "👩‍👩‍👧", - "👩‍👩‍👧‍👦", - "👩‍👩‍👦‍👦", - "👩‍👩‍👧‍👧", - "💪", - "🤳", - "👈", - "👉", - "☝", - "👆", - "🖕", - "👇", - "✌", - "🤞", - "🖖", - "🤘", - "🤙", - "🖐", - "✋", - "👌", - "👍", - "👎", - "✊", - "👊", - "🤛", - "🤜", - "🤚", - "👋", - "👏", - "✍", - "👐", - "🙌", - "🙏", - "🤝", - "💅", - "👂", - "👃", - "👣", - "👀", - "👁", - "👅", - "👄", - "💋", - "💤", - "👓", - "🕶", - "👔", - "👕", - "👖", - "👗", - "👘", - "👙", - "👚", - "👛", - "👜", - "👝", - "🎒", - "👞", - "👟", - "👠", - "👡", - "👢", - "👑", - "👒", - "🎩", - "🎓", - "⛑", - "💄", - "💍", - "🌂", - "💼" - ] - } - }, - { - "emojiPickerCategoryRenderer": { - "categoryId": "nature", - "title": { - "simpleText": "自然" - }, - "emojiIds": [ - "🙈", - "🙉", - "🙊", - "💦", - "💨", - "🐵", - "🐒", - "🦍", - "🐶", - "🐕", - "🐩", - "🐺", - "🦊", - "🐱", - "🐈", - "🦁", - "🐯", - "🐅", - "🐆", - "🐴", - "🐎", - "🦌", - "🦄", - "🐮", - "🐂", - "🐃", - "🐄", - "🐷", - "🐖", - "🐗", - "🐽", - "🐏", - "🐑", - "🐐", - "🐪", - "🐫", - "🐘", - "🦏", - "🐭", - "🐁", - "🐀", - "🐹", - "🐰", - "🐇", - "🐿", - "🦇", - "🐻", - "🐨", - "🐼", - "🐾", - "🦃", - "🐔", - "🐓", - "🐣", - "🐤", - "🐥", - "🐦", - "🐧", - "🕊", - "🦅", - "🦆", - "🦉", - "🐸", - "🐊", - "🐢", - "🦎", - "🐍", - "🐲", - "🐉", - "🐳", - "🐋", - "🐬", - "🐟", - "🐠", - "🐡", - "🦈", - "🐙", - "🐚", - "🦀", - "🦐", - "🦑", - "🦋", - "🐌", - "🐛", - "🐜", - "🐝", - "🐞", - "🕷", - "🕸", - "🦂", - "💐", - "🌸", - "🏵", - "🌹", - "🥀", - "🌺", - "🌻", - "🌼", - "🌷", - "🌱", - "🌲", - "🌳", - "🌴", - "🌵", - "🌾", - "🌿", - "☘", - "🍀", - "🍁", - "🍂", - "🍃", - "🍄", - "🌰", - "🌍", - "🌎", - "🌏", - "🌑", - "🌒", - "🌓", - "🌔", - "🌕", - "🌖", - "🌗", - "🌘", - "🌙", - "🌚", - "🌛", - "🌜", - "☀", - "🌝", - "🌞", - "⭐", - "🌟", - "☁", - "⛅", - "⛈", - "🌤", - "🌥", - "🌦", - "🌧", - "🌨", - "🌩", - "🌪", - "🌫", - "🌬", - "☂", - "☔", - "⚡", - "❄", - "☃", - "⛄", - "☄", - "🔥", - "💧", - "🌊", - "🎃", - "🎄", - "✨", - "🎋", - "🎍" - ] - } - }, - { - "emojiPickerCategoryRenderer": { - "categoryId": "food", - "title": { - "simpleText": "食べ物" - }, - "emojiIds": [ - "🍇", - "🍈", - "🍉", - "🍊", - "🍋", - "🍌", - "🍍", - "🍎", - "🍏", - "🍐", - "🍑", - "🍒", - "🍓", - "🥝", - "🍅", - "🥑", - "🍆", - "🥔", - "🥕", - "🌽", - "🌶", - "🥒", - "🥜", - "🍞", - "🥐", - "🥖", - "🥞", - "🧀", - "🍖", - "🍗", - "🥓", - "🍔", - "🍟", - "🍕", - "🌭", - "🌮", - "🌯", - "🥙", - "🥚", - "🍳", - "🥘", - "🍲", - "🥗", - "🍿", - "🍱", - "🍘", - "🍙", - "🍚", - "🍛", - "🍜", - "🍝", - "🍠", - "🍢", - "🍣", - "🍤", - "🍥", - "🍡", - "🍦", - "🍧", - "🍨", - "🍩", - "🍪", - "🎂", - "🍰", - "🍫", - "🍬", - "🍭", - "🍮", - "🍯", - "🍼", - "🥛", - "☕", - "🍵", - "🍶", - "🍾", - "🍷", - "🍸", - "🍹", - "🍺", - "🍻", - "🥂", - "🥃", - "🍽", - "🍴", - "🥄" - ] - } - }, - { - "emojiPickerCategoryRenderer": { - "categoryId": "activities", - "title": { - "simpleText": "アクティビティ" - }, - "emojiIds": [ - "👾", - "🕴", - "🤺", - "🏇", - "⛷", - "🏂", - "🏌", - "🏄", - "🚣", - "🏊", - "⛹", - "🏋", - "🚴", - "🚵", - "🤸", - "🤼", - "🤽", - "🤾", - "🤹", - "🎪", - "🎭", - "🎨", - "🎰", - "🛀", - "🎗", - "🎟", - "🎫", - "🎖", - "🏆", - "🏅", - "🥇", - "🥈", - "🥉", - "⚽", - "⚾", - "🏀", - "🏐", - "🏈", - "🏉", - "🎾", - "🎱", - "🎳", - "🏏", - "🏑", - "🏒", - "🏓", - "🏸", - "🥊", - "🥋", - "🥅", - "🎯", - "⛳", - "⛸", - "🎣", - "🎽", - "🎿", - "🎮", - "🎲", - "🎼", - "🎤", - "🎧", - "🎷", - "🎸", - "🎹", - "🎺", - "🎻", - "🥁", - "🎬", - "🏹" - ] - } - }, - { - "emojiPickerCategoryRenderer": { - "categoryId": "travel", - "title": { - "simpleText": "旅行" - }, - "emojiIds": [ - "🏎", - "🏍", - "🗾", - "🏔", - "⛰", - "🌋", - "🗻", - "🏕", - "🏖", - "🏜", - "🏝", - "🏞", - "🏟", - "🏛", - "🏗", - "🏘", - "🏙", - "🏚", - "🏠", - "🏡", - "🏢", - "🏣", - "🏤", - "🏥", - "🏦", - "🏨", - "🏩", - "🏪", - "🏫", - "🏬", - "🏭", - "🏯", - "🏰", - "💒", - "🗼", - "🗽", - "⛪", - "🕌", - "🕍", - "⛩", - "🕋", - "⛲", - "⛺", - "🌁", - "🌃", - "🌄", - "🌅", - "🌆", - "🌇", - "🌉", - "🌌", - "🎠", - "🎡", - "🎢", - "🚂", - "🚃", - "🚄", - "🚅", - "🚆", - "🚇", - "🚈", - "🚉", - "🚊", - "🚝", - "🚞", - "🚋", - "🚌", - "🚍", - "🚎", - "🚐", - "🚑", - "🚒", - "🚓", - "🚔", - "🚕", - "🚖", - "🚗", - "🚘", - "🚙", - "🚚", - "🚛", - "🚜", - "🚲", - "🛴", - "🛵", - "🚏", - "🛣", - "🛤", - "⛽", - "🚨", - "🚥", - "🚦", - "🚧", - "⚓", - "⛵", - "🛶", - "🚤", - "🛳", - "⛴", - "🛥", - "🚢", - "✈", - "🛩", - "🛫", - "🛬", - "💺", - "🚁", - "🚟", - "🚠", - "🚡", - "🚀", - "🛰", - "🌠", - "🌈", - "🎆", - "🎇", - "🎑", - "🏁" - ] - } - }, - { - "emojiPickerCategoryRenderer": { - "categoryId": "objects", - "title": { - "simpleText": "オブジェクト" - }, - "emojiIds": [ - "☠", - "💌", - "💣", - "🕳", - "🛍", - "📿", - "💎", - "🔪", - "🏺", - "🗺", - "💈", - "🖼", - "🛎", - "🚪", - "🛌", - "🛏", - "🛋", - "🚽", - "🚿", - "🛁", - "⌛", - "⏳", - "⌚", - "⏰", - "⏱", - "⏲", - "🕰", - "🌡", - "⛱", - "🎈", - "🎉", - "🎊", - "🎎", - "🎏", - "🎐", - "🎀", - "🎁", - "🕹", - "📯", - "🎙", - "🎚", - "🎛", - "📻", - "📱", - "📲", - "☎", - "📞", - "📟", - "📠", - "🔋", - "🔌", - "💻", - "🖥", - "🖨", - "⌨", - "🖱", - "🖲", - "💽", - "💾", - "💿", - "📀", - "🎥", - "🎞", - "📽", - "📺", - "📷", - "📸", - "📹", - "📼", - "🔍", - "🔎", - "🔬", - "🔭", - "📡", - "🕯", - "💡", - "🔦", - "🏮", - "📔", - "📕", - "📖", - "📗", - "📘", - "📙", - "📚", - "📓", - "📒", - "📃", - "📜", - "📄", - "📰", - "🗞", - "📑", - "🔖", - "🏷", - "💰", - "💴", - "💵", - "💶", - "💷", - "💸", - "💳", - "✉", - "📧", - "📨", - "📩", - "📤", - "📥", - "📦", - "📫", - "📪", - "📬", - "📭", - "📮", - "🗳", - "✏", - "✒", - "🖋", - "🖊", - "🖌", - "🖍", - "📝", - "📁", - "📂", - "🗂", - "📅", - "📆", - "🗒", - "🗓", - "📇", - "📈", - "📉", - "📊", - "📋", - "📌", - "📍", - "📎", - "🖇", - "📏", - "📐", - "✂", - "🗃", - "🗄", - "🗑", - "🔒", - "🔓", - "🔏", - "🔐", - "🔑", - "🗝", - "🔨", - "⛏", - "⚒", - "🛠", - "🗡", - "⚔", - "🔫", - "🛡", - "🔧", - "🔩", - "⚙", - "🗜", - "⚗", - "⚖", - "🔗", - "⛓", - "💉", - "💊", - "🚬", - "⚰", - "⚱", - "🗿", - "🛢", - "🔮", - "🛒", - "🚩", - "🎌", - "🏴", - "🏳" - ] - } - }, - { - "emojiPickerCategoryRenderer": { - "categoryId": "symbols", - "title": { - "simpleText": "記号" - }, - "emojiIds": [ - "❤", - "💛", - "💚", - "💙", - "💜", - "💔", - "❣", - "💕", - "💞", - "💓", - "💗", - "💖", - "💘", - "💝", - "💟", - "☮", - "✝", - "☪", - "🕉", - "☸", - "✡", - "🔯", - "🕎", - "☯", - "☦", - "🛐", - "⛎", - "♈", - "♉", - "♊", - "♋", - "♌", - "♍", - "♎", - "♏", - "♐", - "♑", - "♒", - "♓", - "⚛", - "☢", - "☣", - "📴", - "📳", - "✴", - "💮", - "⛔", - "📛", - "🚫", - "❌", - "⭕", - "💢", - "♨", - "🚷", - "🚯", - "🚳", - "🚱", - "🔞", - "📵", - "❗", - "❕", - "❓", - "❔", - "‼", - "⁉", - "💯", - "🔅", - "🔆", - "🔱", - "⚜", - "〽", - "⚠", - "🚸", - "🔰", - "♻", - "❇", - "✳", - "❎", - "✅", - "💠", - "🌀", - "➿", - "🌐", - "🏧", - "🛂", - "🛃", - "🛄", - "🛅", - "♿", - "🚭", - "🚾", - "🚰", - "🚹", - "🚺", - "🚼", - "🚻", - "🚮", - "🎦", - "📶", - "▶", - "⏸", - "⏯", - "⏹", - "⏺", - "⏭", - "⏮", - "⏩", - "⏪", - "🔀", - "🔁", - "🔂", - "◀", - "🔼", - "🔽", - "⏫", - "⏬", - "➡", - "⬅", - "⬆", - "⬇", - "↗", - "↘", - "↙", - "↖", - "↕", - "↔", - "🔄", - "↪", - "↩", - "⤴", - "⤵", - "🔣", - "🎵", - "🎶", - "〰", - "➰", - "✔", - "🔃", - "➕", - "➖", - "➗", - "✖", - "💲", - "💱", - "☑", - "🔘", - "⚪", - "⚫", - "🔴", - "🔵", - "🔸", - "🔹", - "🔶", - "🔷", - "🔺", - "▪", - "▫", - "⬛", - "⬜", - "🔻", - "◼", - "◻", - "◾", - "◽", - "🔲", - "🔳", - "🔈", - "🔉", - "🔊", - "🔇", - "📣", - "📢", - "🔔", - "🔕", - "🃏", - "🀄", - "♠", - "♣", - "♥", - "♦", - "🎴", - "💭", - "🗯", - "💬", - "🕐", - "🕑", - "🕒", - "🕓", - "🕔", - "🕕", - "🕖", - "🕗", - "🕘", - "🕙", - "🕚", - "🕛", - "🕜", - "🕝", - "🕞", - "🕟", - "🕠", - "🕡", - "🕢", - "🕣", - "🕤", - "🕥", - "🕦", - "🕧", - "👁‍🗨", - "🗨", - "⏏" - ] - } - } - ], - "categoryButtons": [ - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "people", - "icon": { - "iconType": "EMOJI_PEOPLE" - }, - "tooltip": "人", - "accessibility": { - "accessibilityData": { - "label": "人" - } - } - } - }, - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "nature", - "icon": { - "iconType": "EMOJI_NATURE" - }, - "tooltip": "自然", - "accessibility": { - "accessibilityData": { - "label": "自然" - } - } - } - }, - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "food", - "icon": { - "iconType": "EMOJI_FOOD" - }, - "tooltip": "食べ物", - "accessibility": { - "accessibilityData": { - "label": "食べ物" - } - } - } - }, - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "activities", - "icon": { - "iconType": "EMOJI_ACTIVITIES" - }, - "tooltip": "アクティビティ", - "accessibility": { - "accessibilityData": { - "label": "アクティビティ" - } - } - } - }, - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "travel", - "icon": { - "iconType": "EMOJI_TRAVEL" - }, - "tooltip": "旅行", - "accessibility": { - "accessibilityData": { - "label": "旅行" - } - } - } - }, - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "objects", - "icon": { - "iconType": "EMOJI_OBJECTS" - }, - "tooltip": "オブジェクト", - "accessibility": { - "accessibilityData": { - "label": "オブジェクト" - } - } - } - }, - { - "emojiPickerCategoryButtonRenderer": { - "categoryId": "symbols", - "icon": { - "iconType": "EMOJI_SYMBOLS" - }, - "tooltip": "記号", - "accessibility": { - "accessibilityData": { - "label": "記号" - } - } - } - } - ], - "searchPlaceholderText": { - "runs": [ - { - "text": "絵文字を検索" - } - ] - }, - "searchNoResultsText": { - "runs": [ - { - "text": "絵文字が見つかりませんでした" - } - ] - }, - "pickSkinToneText": { - "runs": [ - { - "text": "絵文字の肌の色を選択" - } - ] - }, - "trackingParams": "CAsQsrQCGAUiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "clearSearchLabel": "検索をクリア", - "skinToneGenericLabel": "汎用的な肌の色", - "skinToneLightLabel": "明るい肌の色", - "skinToneMediumLightLabel": "やや明るい肌の色", - "skinToneMediumLabel": "中間的な明るさの肌の色", - "skinToneMediumDarkLabel": "やや濃い肌の色", - "skinToneDarkLabel": "濃い肌の色" - } - } - ], - "pickerButtons": [ - { - "liveChatIconToggleButtonRenderer": { - "targetId": "emoji", - "icon": { - "iconType": "EMOJI" - }, - "tooltip": "絵文字", - "accessibility": { - "accessibilityData": { - "label": "絵文字" - } - }, - "toggledIcon": { - "iconType": "KEYBOARD" - }, - "trackingParams": "CAoQtIkEGAYiEwjUttXD9prlAhXZzEwCHYC0CPw=" - } - } - ], - "interactionMessage": { - "messageRenderer": { - "trackingParams": "CAgQljsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "button": { - "buttonRenderer": { - "style": "STYLE_DARK", - "size": "SIZE_DEFAULT", - "isDisabled": false, - "text": { - "simpleText": "ログインしてチャットを始める" - }, - "navigationEndpoint": { - "clickTrackingParams": "CAkQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "commandMetadata": { - "webCommandMetadata": { - "url": "https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dja%26next%3Dhttps%253A%252F%252Fwww.youtube.com%252Flive_chat%253Fv%253DMC3wUJ-BXNE%2526is_popout%253D1\u0026hl=ja", - "rootVe": 83769 - } - }, - "signInEndpoint": { - "nextEndpoint": { - "clickTrackingParams": "CAkQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "commandMetadata": { - "webCommandMetadata": { - "url": "https://www.youtube.com/live_chat?v=MC3wUJ-BXNE\u0026is_popout=1", - "rootVe": 83769 - } - }, - "urlEndpoint": { - "url": "https://www.youtube.com/live_chat?v=MC3wUJ-BXNE\u0026is_popout=1" - } - } - } - }, - "accessibility": { - "label": "ログインしてチャットを始める" - }, - "trackingParams": "CAkQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=" - } - }, - "subtext": { - "messageSubtextRenderer": { - "text": { - "simpleText": "送信したすべてのメッセージが公開されます" - } - } - } - } - } + "url": "https://yt3.ggpht.com/-ASF61F1_1Ks/AAAAAAAAAAI/AAAAAAAAAAA/ybruJcnkZrg/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 } + ] }, - "itemList": { - "liveChatItemListRenderer": { - "maxItemsToDisplay": 250, - "moreCommentsBelowButton": { - "buttonRenderer": { - "style": "STYLE_PRIMARY", - "icon": { - "iconType": "DOWN_ARROW" - }, - "trackingParams": "CAcQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "accessibilityData": { - "accessibilityData": { - "label": "さらに下のコメントを表示" - } - } - } - }, - "enablePauseChatKeyboardShortcuts": false + "authorExternalChannelId": "UCWzeZdxsrvJ_xQc6ykGg8Pg", + "contextMenuEndpoint": { + "clickTrackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2g0S0hBb2FRMUJoYVcxMFNHUnRkVlZEUm1GcVNYZFJiMlJvYURCTFpGRVFBQnBNRWlFS0dGVkRibEpSV1VoVWJsSk1VMFl3WTB4S2QwMXVaV1JEWnhJRkwyeHBkbVVxSndvWVZVTnVVbEZaU0ZSdVVreFRSakJqVEVwM1RXNWxaRU5uRWd0TlF6TjNWVW90UWxoT1JTQUNLQUV5R2dvWVZVTlhlbVZhWkhoemNuWktYM2hSWXpaNWEwZG5PRkJu" + } }, - "header": { - "liveChatHeaderRenderer": { - "overflowMenu": { - "menuRenderer": { - "items": [ - { - "menuServiceItemRenderer": { - "text": { - "runs": [ - { - "text": "参加者" - } - ] - }, - "icon": { - "iconType": "PERSON" - }, - "serviceEndpoint": { - "showLiveChatParticipantsEndpoint": { - "hack": true - } - }, - "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } - }, - { - "menuServiceItemRenderer": { - "text": { - "runs": [ - { - "text": "タイムスタンプ表示切替" - } - ] - }, - "icon": { - "iconType": "ACCESS_TIME" - }, - "serviceEndpoint": { - "toggleLiveChatTimestampsEndpoint": { - "hack": true - } - }, - "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } - }, - { - "menuNavigationItemRenderer": { - "text": { - "runs": [ - { - "text": "フィードバックを送信" - } - ] - }, - "icon": { - "iconType": "FEEDBACK" - }, - "navigationEndpoint": { - "clickTrackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "userFeedbackEndpoint": { - "hack": true, - "bucketIdentifier": "live_chat" - } - }, - "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } - } - ], - "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", - "accessibility": { - "accessibilityData": { - "label": "その他のオプション" - } - } - } - }, - "collapseButton": { - "buttonRenderer": { - "style": "STYLE_DEFAULT", - "size": "SIZE_DEFAULT", - "isDisabled": false, - "accessibility": { - "label": "チャットの展開 / 折りたたみ" - }, - "trackingParams": "CAYQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=" - } - }, - "viewSelector": { - "sortFilterSubMenuRenderer": { - "subMenuItems": [ - { - "title": "上位チャット", - "selected": false, - "continuation": { - "reloadContinuationData": { - "continuation": "0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUKnM18P2muUCWANoBIIBAggE", - "clickTrackingParams": "CAUQxqYCIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } - }, - "accessibility": { - "accessibilityData": { - "label": "上位チャット" - } - }, - "subtitle": "一部のメッセージ(不適切な可能性があるものなど)を非表示にします" - }, - { - "title": "チャット", - "selected": true, - "continuation": { - "reloadContinuationData": { - "continuation": "0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUKnM18P2muUCWANoAYIBAggB", - "clickTrackingParams": "CAQQxqYCIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } - }, - "accessibility": { - "accessibilityData": { - "label": "チャット" - } - }, - "subtitle": "すべてのメッセージが表示されます" - } - ], - "accessibility": { - "accessibilityData": { - "label": "チャットのモードの選択" - } - }, - "trackingParams": "CAMQgdoEIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - } - } - } - }, - "ticker": { - "liveChatTickerRenderer": { - "sentinel": true - } - }, - "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", - "participantsList": { - "liveChatParticipantsListRenderer": { - "title": { - "runs": [ - { - "text": "参加者" - } - ] - }, - "backButton": { - "buttonRenderer": { - "icon": { - "iconType": "BACK" - }, - "trackingParams": "CAIQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", - "accessibilityData": { - "accessibilityData": { - "label": "戻る" - } - } - } - }, - "participants": [ - { - "liveChatParticipantRenderer": { - "authorName": { - "simpleText": "相羽ういは〖Aiba Uiha〗にじさんじ所属" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-oKuaFgPf7a8/AAAAAAAAAAI/AAAAAAAAAAA/6oDCrDvXdsc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-oKuaFgPf7a8/AAAAAAAAAAI/AAAAAAAAAAA/6oDCrDvXdsc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorBadges": [ - { - "liveChatAuthorBadgeRenderer": { - "icon": { - "iconType": "OWNER" - }, - "tooltip": "所有者", - "accessibility": { - "accessibilityData": { - "label": "所有者" - } - } - } - } - ] - } - } - ] - } - }, - "clientMessages": { - "reconnectMessage": { - "runs": [ - { - "text": "チャットが切断されました。再接続するまでしばらくお待ちください。" - } - ] - }, - "unableToReconnectMessage": { - "runs": [ - { - "text": "チャットに接続できません。しばらくしてからもう一度お試しください。" - } - ] - }, - "fatalError": { - "runs": [ - { - "text": "チャットに接続できません。しばらくしてからもう一度お試しください。" - } - ] - }, - "reconnectedMessage": { - "runs": [ - { - "text": "接続しました。" - } - ] - }, - "genericError": { - "runs": [ - { - "text": "エラーが発生しました。もう一度お試しください。" - } - ] - } + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } } + } } + } }, - "trackingParams": "CAAQ0b4BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - }, - "url": "\/live_chat\/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB", - "csn": "PvujXbH0OIazqQHXgJ64DQ", - "endpoint": { - "commandMetadata": { - "webCommandMetadata": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB", - "rootVe": 83769 + { + "addChatItemAction": { + "item": { + "liveChatViewerEngagementMessageRenderer": { + "id": "CioKKENPTU1VTklUWV9HVUlERUxJTkVTX1ZFTTE1NzEwMjc3NzQ5OTM0NTM%3D", + "timestampUsec": "1571027774993499", + "icon": { + "iconType": "YOUTUBE_ROUND" + }, + "message": { + "runs": [ + { + "text": "チャットへようこそ!ご自身のプライバシーを守るとともに、YouTube のコミュニティ ガイドラインを遵守することを忘れないでください。" + } + ] + }, + "actionButton": { + "buttonRenderer": { + "style": "STYLE_BLUE_TEXT", + "size": "SIZE_DEFAULT", + "isDisabled": false, + "text": { + "simpleText": "詳細" + }, + "navigationEndpoint": { + "clickTrackingParams": "CA0Q8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "commandMetadata": { + "webCommandMetadata": { + "url": "//support.google.com/youtube/answer/2853856?hl=ja#safe", + "rootVe": 83769 + } + }, + "urlEndpoint": { + "url": "//support.google.com/youtube/answer/2853856?hl=ja#safe", + "target": "TARGET_NEW_WINDOW" + } + }, + "accessibility": { + "label": "詳細" + }, + "trackingParams": "CA0Q8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "accessibilityData": { + "accessibilityData": { + "label": "詳細" + } + } + } + } + } } - }, - "urlEndpoint": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB" + } } + ], + "actionPanel": { + "liveChatMessageInputRenderer": { + "inputField": { + "liveChatTextInputFieldRenderer": { + "placeholder": { + "runs": [ + { + "text": "メッセージを入力..." + } + ] + }, + "maxCharacterLimit": 200, + "emojiCharacterCount": 10 + } + }, + "sendButton": { + "buttonRenderer": { + "icon": { + "iconType": "SEND" + }, + "accessibility": { + "label": "送信" + }, + "trackingParams": "CAwQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=" + } + }, + "pickers": [ + { + "emojiPickerRenderer": { + "id": "emoji", + "categories": [ + { + "emojiPickerCategoryRenderer": { + "categoryId": "people", + "title": { + "simpleText": "人" + }, + "emojiIds": [ + "😀", + "😁", + "😂", + "🤣", + "😃", + "😄", + "😅", + "😆", + "😉", + "😊", + "😋", + "😎", + "😍", + "😘", + "😗", + "😙", + "😚", + "☺", + "🙂", + "🤗", + "🤔", + "😐", + "😑", + "😶", + "🙄", + "😏", + "😣", + "😥", + "😮", + "🤐", + "😯", + "😪", + "😫", + "😴", + "😌", + "🤓", + "😛", + "😜", + "😝", + "🤤", + "😒", + "😓", + "😔", + "😕", + "🙃", + "🤑", + "😲", + "☹", + "🙁", + "😖", + "😞", + "😟", + "😤", + "😢", + "😭", + "😦", + "😧", + "😨", + "😩", + "😬", + "😰", + "😱", + "😳", + "😵", + "😡", + "😠", + "😇", + "🤠", + "🤡", + "🤥", + "😷", + "🤒", + "🤕", + "🤢", + "🤧", + "😈", + "👿", + "👹", + "👺", + "💀", + "👻", + "👽", + "🤖", + "💩", + "😺", + "😸", + "😹", + "😻", + "😼", + "😽", + "🙀", + "😿", + "😾", + "👦", + "👧", + "👨", + "👩", + "👴", + "👵", + "👶", + "👼", + "👮", + "🕵", + "💂", + "👷", + "👳", + "👱", + "🎅", + "🤶", + "👸", + "🤴", + "👰", + "🤵", + "🤰", + "👲", + "🙍", + "🙎", + "🙅", + "🙆", + "💁", + "🙋", + "🙇", + "🤦", + "🤷", + "💆", + "💇", + "🚶", + "🏃", + "💃", + "🕺", + "👯", + "🗣", + "👤", + "👥", + "👫", + "👬", + "👭", + "💏", + "👨‍❤️‍💋‍👨", + "👩‍❤️‍💋‍👩", + "💑", + "👨‍❤️‍👨", + "👩‍❤️‍👩", + "👪", + "👨‍👩‍👧", + "👨‍👩‍👧‍👦", + "👨‍👩‍👦‍👦", + "👨‍👩‍👧‍👧", + "👨‍👨‍👦", + "👨‍👨‍👧", + "👨‍👨‍👧‍👦", + "👨‍👨‍👦‍👦", + "👨‍👨‍👧‍👧", + "👩‍👩‍👦", + "👩‍👩‍👧", + "👩‍👩‍👧‍👦", + "👩‍👩‍👦‍👦", + "👩‍👩‍👧‍👧", + "💪", + "🤳", + "👈", + "👉", + "☝", + "👆", + "🖕", + "👇", + "✌", + "🤞", + "🖖", + "🤘", + "🤙", + "🖐", + "✋", + "👌", + "👍", + "👎", + "✊", + "👊", + "🤛", + "🤜", + "🤚", + "👋", + "👏", + "✍", + "👐", + "🙌", + "🙏", + "🤝", + "💅", + "👂", + "👃", + "👣", + "👀", + "👁", + "👅", + "👄", + "💋", + "💤", + "👓", + "🕶", + "👔", + "👕", + "👖", + "👗", + "👘", + "👙", + "👚", + "👛", + "👜", + "👝", + "🎒", + "👞", + "👟", + "👠", + "👡", + "👢", + "👑", + "👒", + "🎩", + "🎓", + "⛑", + "💄", + "💍", + "🌂", + "💼" + ] + } + }, + { + "emojiPickerCategoryRenderer": { + "categoryId": "nature", + "title": { + "simpleText": "自然" + }, + "emojiIds": [ + "🙈", + "🙉", + "🙊", + "💦", + "💨", + "🐵", + "🐒", + "🦍", + "🐶", + "🐕", + "🐩", + "🐺", + "🦊", + "🐱", + "🐈", + "🦁", + "🐯", + "🐅", + "🐆", + "🐴", + "🐎", + "🦌", + "🦄", + "🐮", + "🐂", + "🐃", + "🐄", + "🐷", + "🐖", + "🐗", + "🐽", + "🐏", + "🐑", + "🐐", + "🐪", + "🐫", + "🐘", + "🦏", + "🐭", + "🐁", + "🐀", + "🐹", + "🐰", + "🐇", + "🐿", + "🦇", + "🐻", + "🐨", + "🐼", + "🐾", + "🦃", + "🐔", + "🐓", + "🐣", + "🐤", + "🐥", + "🐦", + "🐧", + "🕊", + "🦅", + "🦆", + "🦉", + "🐸", + "🐊", + "🐢", + "🦎", + "🐍", + "🐲", + "🐉", + "🐳", + "🐋", + "🐬", + "🐟", + "🐠", + "🐡", + "🦈", + "🐙", + "🐚", + "🦀", + "🦐", + "🦑", + "🦋", + "🐌", + "🐛", + "🐜", + "🐝", + "🐞", + "🕷", + "🕸", + "🦂", + "💐", + "🌸", + "🏵", + "🌹", + "🥀", + "🌺", + "🌻", + "🌼", + "🌷", + "🌱", + "🌲", + "🌳", + "🌴", + "🌵", + "🌾", + "🌿", + "☘", + "🍀", + "🍁", + "🍂", + "🍃", + "🍄", + "🌰", + "🌍", + "🌎", + "🌏", + "🌑", + "🌒", + "🌓", + "🌔", + "🌕", + "🌖", + "🌗", + "🌘", + "🌙", + "🌚", + "🌛", + "🌜", + "☀", + "🌝", + "🌞", + "⭐", + "🌟", + "☁", + "⛅", + "⛈", + "🌤", + "🌥", + "🌦", + "🌧", + "🌨", + "🌩", + "🌪", + "🌫", + "🌬", + "☂", + "☔", + "⚡", + "❄", + "☃", + "⛄", + "☄", + "🔥", + "💧", + "🌊", + "🎃", + "🎄", + "✨", + "🎋", + "🎍" + ] + } + }, + { + "emojiPickerCategoryRenderer": { + "categoryId": "food", + "title": { + "simpleText": "食べ物" + }, + "emojiIds": [ + "🍇", + "🍈", + "🍉", + "🍊", + "🍋", + "🍌", + "🍍", + "🍎", + "🍏", + "🍐", + "🍑", + "🍒", + "🍓", + "🥝", + "🍅", + "🥑", + "🍆", + "🥔", + "🥕", + "🌽", + "🌶", + "🥒", + "🥜", + "🍞", + "🥐", + "🥖", + "🥞", + "🧀", + "🍖", + "🍗", + "🥓", + "🍔", + "🍟", + "🍕", + "🌭", + "🌮", + "🌯", + "🥙", + "🥚", + "🍳", + "🥘", + "🍲", + "🥗", + "🍿", + "🍱", + "🍘", + "🍙", + "🍚", + "🍛", + "🍜", + "🍝", + "🍠", + "🍢", + "🍣", + "🍤", + "🍥", + "🍡", + "🍦", + "🍧", + "🍨", + "🍩", + "🍪", + "🎂", + "🍰", + "🍫", + "🍬", + "🍭", + "🍮", + "🍯", + "🍼", + "🥛", + "☕", + "🍵", + "🍶", + "🍾", + "🍷", + "🍸", + "🍹", + "🍺", + "🍻", + "🥂", + "🥃", + "🍽", + "🍴", + "🥄" + ] + } + }, + { + "emojiPickerCategoryRenderer": { + "categoryId": "activities", + "title": { + "simpleText": "アクティビティ" + }, + "emojiIds": [ + "👾", + "🕴", + "🤺", + "🏇", + "⛷", + "🏂", + "🏌", + "🏄", + "🚣", + "🏊", + "⛹", + "🏋", + "🚴", + "🚵", + "🤸", + "🤼", + "🤽", + "🤾", + "🤹", + "🎪", + "🎭", + "🎨", + "🎰", + "🛀", + "🎗", + "🎟", + "🎫", + "🎖", + "🏆", + "🏅", + "🥇", + "🥈", + "🥉", + "⚽", + "⚾", + "🏀", + "🏐", + "🏈", + "🏉", + "🎾", + "🎱", + "🎳", + "🏏", + "🏑", + "🏒", + "🏓", + "🏸", + "🥊", + "🥋", + "🥅", + "🎯", + "⛳", + "⛸", + "🎣", + "🎽", + "🎿", + "🎮", + "🎲", + "🎼", + "🎤", + "🎧", + "🎷", + "🎸", + "🎹", + "🎺", + "🎻", + "🥁", + "🎬", + "🏹" + ] + } + }, + { + "emojiPickerCategoryRenderer": { + "categoryId": "travel", + "title": { + "simpleText": "旅行" + }, + "emojiIds": [ + "🏎", + "🏍", + "🗾", + "🏔", + "⛰", + "🌋", + "🗻", + "🏕", + "🏖", + "🏜", + "🏝", + "🏞", + "🏟", + "🏛", + "🏗", + "🏘", + "🏙", + "🏚", + "🏠", + "🏡", + "🏢", + "🏣", + "🏤", + "🏥", + "🏦", + "🏨", + "🏩", + "🏪", + "🏫", + "🏬", + "🏭", + "🏯", + "🏰", + "💒", + "🗼", + "🗽", + "⛪", + "🕌", + "🕍", + "⛩", + "🕋", + "⛲", + "⛺", + "🌁", + "🌃", + "🌄", + "🌅", + "🌆", + "🌇", + "🌉", + "🌌", + "🎠", + "🎡", + "🎢", + "🚂", + "🚃", + "🚄", + "🚅", + "🚆", + "🚇", + "🚈", + "🚉", + "🚊", + "🚝", + "🚞", + "🚋", + "🚌", + "🚍", + "🚎", + "🚐", + "🚑", + "🚒", + "🚓", + "🚔", + "🚕", + "🚖", + "🚗", + "🚘", + "🚙", + "🚚", + "🚛", + "🚜", + "🚲", + "🛴", + "🛵", + "🚏", + "🛣", + "🛤", + "⛽", + "🚨", + "🚥", + "🚦", + "🚧", + "⚓", + "⛵", + "🛶", + "🚤", + "🛳", + "⛴", + "🛥", + "🚢", + "✈", + "🛩", + "🛫", + "🛬", + "💺", + "🚁", + "🚟", + "🚠", + "🚡", + "🚀", + "🛰", + "🌠", + "🌈", + "🎆", + "🎇", + "🎑", + "🏁" + ] + } + }, + { + "emojiPickerCategoryRenderer": { + "categoryId": "objects", + "title": { + "simpleText": "オブジェクト" + }, + "emojiIds": [ + "☠", + "💌", + "💣", + "🕳", + "🛍", + "📿", + "💎", + "🔪", + "🏺", + "🗺", + "💈", + "🖼", + "🛎", + "🚪", + "🛌", + "🛏", + "🛋", + "🚽", + "🚿", + "🛁", + "⌛", + "⏳", + "⌚", + "⏰", + "⏱", + "⏲", + "🕰", + "🌡", + "⛱", + "🎈", + "🎉", + "🎊", + "🎎", + "🎏", + "🎐", + "🎀", + "🎁", + "🕹", + "📯", + "🎙", + "🎚", + "🎛", + "📻", + "📱", + "📲", + "☎", + "📞", + "📟", + "📠", + "🔋", + "🔌", + "💻", + "🖥", + "🖨", + "⌨", + "🖱", + "🖲", + "💽", + "💾", + "💿", + "📀", + "🎥", + "🎞", + "📽", + "📺", + "📷", + "📸", + "📹", + "📼", + "🔍", + "🔎", + "🔬", + "🔭", + "📡", + "🕯", + "💡", + "🔦", + "🏮", + "📔", + "📕", + "📖", + "📗", + "📘", + "📙", + "📚", + "📓", + "📒", + "📃", + "📜", + "📄", + "📰", + "🗞", + "📑", + "🔖", + "🏷", + "💰", + "💴", + "💵", + "💶", + "💷", + "💸", + "💳", + "✉", + "📧", + "📨", + "📩", + "📤", + "📥", + "📦", + "📫", + "📪", + "📬", + "📭", + "📮", + "🗳", + "✏", + "✒", + "🖋", + "🖊", + "🖌", + "🖍", + "📝", + "📁", + "📂", + "🗂", + "📅", + "📆", + "🗒", + "🗓", + "📇", + "📈", + "📉", + "📊", + "📋", + "📌", + "📍", + "📎", + "🖇", + "📏", + "📐", + "✂", + "🗃", + "🗄", + "🗑", + "🔒", + "🔓", + "🔏", + "🔐", + "🔑", + "🗝", + "🔨", + "⛏", + "⚒", + "🛠", + "🗡", + "⚔", + "🔫", + "🛡", + "🔧", + "🔩", + "⚙", + "🗜", + "⚗", + "⚖", + "🔗", + "⛓", + "💉", + "💊", + "🚬", + "⚰", + "⚱", + "🗿", + "🛢", + "🔮", + "🛒", + "🚩", + "🎌", + "🏴", + "🏳" + ] + } + }, + { + "emojiPickerCategoryRenderer": { + "categoryId": "symbols", + "title": { + "simpleText": "記号" + }, + "emojiIds": [ + "❤", + "💛", + "💚", + "💙", + "💜", + "💔", + "❣", + "💕", + "💞", + "💓", + "💗", + "💖", + "💘", + "💝", + "💟", + "☮", + "✝", + "☪", + "🕉", + "☸", + "✡", + "🔯", + "🕎", + "☯", + "☦", + "🛐", + "⛎", + "♈", + "♉", + "♊", + "♋", + "♌", + "♍", + "♎", + "♏", + "♐", + "♑", + "♒", + "♓", + "⚛", + "☢", + "☣", + "📴", + "📳", + "✴", + "💮", + "⛔", + "📛", + "🚫", + "❌", + "⭕", + "💢", + "♨", + "🚷", + "🚯", + "🚳", + "🚱", + "🔞", + "📵", + "❗", + "❕", + "❓", + "❔", + "‼", + "⁉", + "💯", + "🔅", + "🔆", + "🔱", + "⚜", + "〽", + "⚠", + "🚸", + "🔰", + "♻", + "❇", + "✳", + "❎", + "✅", + "💠", + "🌀", + "➿", + "🌐", + "🏧", + "🛂", + "🛃", + "🛄", + "🛅", + "♿", + "🚭", + "🚾", + "🚰", + "🚹", + "🚺", + "🚼", + "🚻", + "🚮", + "🎦", + "📶", + "▶", + "⏸", + "⏯", + "⏹", + "⏺", + "⏭", + "⏮", + "⏩", + "⏪", + "🔀", + "🔁", + "🔂", + "◀", + "🔼", + "🔽", + "⏫", + "⏬", + "➡", + "⬅", + "⬆", + "⬇", + "↗", + "↘", + "↙", + "↖", + "↕", + "↔", + "🔄", + "↪", + "↩", + "⤴", + "⤵", + "🔣", + "🎵", + "🎶", + "〰", + "➰", + "✔", + "🔃", + "➕", + "➖", + "➗", + "✖", + "💲", + "💱", + "☑", + "🔘", + "⚪", + "⚫", + "🔴", + "🔵", + "🔸", + "🔹", + "🔶", + "🔷", + "🔺", + "▪", + "▫", + "⬛", + "⬜", + "🔻", + "◼", + "◻", + "◾", + "◽", + "🔲", + "🔳", + "🔈", + "🔉", + "🔊", + "🔇", + "📣", + "📢", + "🔔", + "🔕", + "🃏", + "🀄", + "♠", + "♣", + "♥", + "♦", + "🎴", + "💭", + "🗯", + "💬", + "🕐", + "🕑", + "🕒", + "🕓", + "🕔", + "🕕", + "🕖", + "🕗", + "🕘", + "🕙", + "🕚", + "🕛", + "🕜", + "🕝", + "🕞", + "🕟", + "🕠", + "🕡", + "🕢", + "🕣", + "🕤", + "🕥", + "🕦", + "🕧", + "👁‍🗨", + "🗨", + "⏏" + ] + } + } + ], + "categoryButtons": [ + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "people", + "icon": { + "iconType": "EMOJI_PEOPLE" + }, + "tooltip": "人", + "accessibility": { + "accessibilityData": { + "label": "人" + } + } + } + }, + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "nature", + "icon": { + "iconType": "EMOJI_NATURE" + }, + "tooltip": "自然", + "accessibility": { + "accessibilityData": { + "label": "自然" + } + } + } + }, + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "food", + "icon": { + "iconType": "EMOJI_FOOD" + }, + "tooltip": "食べ物", + "accessibility": { + "accessibilityData": { + "label": "食べ物" + } + } + } + }, + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "activities", + "icon": { + "iconType": "EMOJI_ACTIVITIES" + }, + "tooltip": "アクティビティ", + "accessibility": { + "accessibilityData": { + "label": "アクティビティ" + } + } + } + }, + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "travel", + "icon": { + "iconType": "EMOJI_TRAVEL" + }, + "tooltip": "旅行", + "accessibility": { + "accessibilityData": { + "label": "旅行" + } + } + } + }, + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "objects", + "icon": { + "iconType": "EMOJI_OBJECTS" + }, + "tooltip": "オブジェクト", + "accessibility": { + "accessibilityData": { + "label": "オブジェクト" + } + } + } + }, + { + "emojiPickerCategoryButtonRenderer": { + "categoryId": "symbols", + "icon": { + "iconType": "EMOJI_SYMBOLS" + }, + "tooltip": "記号", + "accessibility": { + "accessibilityData": { + "label": "記号" + } + } + } + } + ], + "searchPlaceholderText": { + "runs": [ + { + "text": "絵文字を検索" + } + ] + }, + "searchNoResultsText": { + "runs": [ + { + "text": "絵文字が見つかりませんでした" + } + ] + }, + "pickSkinToneText": { + "runs": [ + { + "text": "絵文字の肌の色を選択" + } + ] + }, + "trackingParams": "CAsQsrQCGAUiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "clearSearchLabel": "検索をクリア", + "skinToneGenericLabel": "汎用的な肌の色", + "skinToneLightLabel": "明るい肌の色", + "skinToneMediumLightLabel": "やや明るい肌の色", + "skinToneMediumLabel": "中間的な明るさの肌の色", + "skinToneMediumDarkLabel": "やや濃い肌の色", + "skinToneDarkLabel": "濃い肌の色" + } + } + ], + "pickerButtons": [ + { + "liveChatIconToggleButtonRenderer": { + "targetId": "emoji", + "icon": { + "iconType": "EMOJI" + }, + "tooltip": "絵文字", + "accessibility": { + "accessibilityData": { + "label": "絵文字" + } + }, + "toggledIcon": { + "iconType": "KEYBOARD" + }, + "trackingParams": "CAoQtIkEGAYiEwjUttXD9prlAhXZzEwCHYC0CPw=" + } + } + ], + "interactionMessage": { + "messageRenderer": { + "trackingParams": "CAgQljsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "button": { + "buttonRenderer": { + "style": "STYLE_DARK", + "size": "SIZE_DEFAULT", + "isDisabled": false, + "text": { + "simpleText": "ログインしてチャットを始める" + }, + "navigationEndpoint": { + "clickTrackingParams": "CAkQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "commandMetadata": { + "webCommandMetadata": { + "url": "https://accounts.google.com/ServiceLogin?service=youtube\u0026uilel=3\u0026passive=true\u0026continue=https%3A%2F%2Fwww.youtube.com%2Fsignin%3Faction_handle_signin%3Dtrue%26app%3Ddesktop%26hl%3Dja%26next%3Dhttps%253A%252F%252Fwww.youtube.com%252Flive_chat%253Fv%253DMC3wUJ-BXNE%2526is_popout%253D1\u0026hl=ja", + "rootVe": 83769 + } + }, + "signInEndpoint": { + "nextEndpoint": { + "clickTrackingParams": "CAkQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "commandMetadata": { + "webCommandMetadata": { + "url": "https://www.youtube.com/live_chat?v=MC3wUJ-BXNE\u0026is_popout=1", + "rootVe": 83769 + } + }, + "urlEndpoint": { + "url": "https://www.youtube.com/live_chat?v=MC3wUJ-BXNE\u0026is_popout=1" + } + } + } + }, + "accessibility": { + "label": "ログインしてチャットを始める" + }, + "trackingParams": "CAkQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=" + } + }, + "subtext": { + "messageSubtextRenderer": { + "text": { + "simpleText": "送信したすべてのメッセージが公開されます" + } + } + } + } + } + } + }, + "itemList": { + "liveChatItemListRenderer": { + "maxItemsToDisplay": 250, + "moreCommentsBelowButton": { + "buttonRenderer": { + "style": "STYLE_PRIMARY", + "icon": { + "iconType": "DOWN_ARROW" + }, + "trackingParams": "CAcQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "accessibilityData": { + "accessibilityData": { + "label": "さらに下のコメントを表示" + } + } + } + }, + "enablePauseChatKeyboardShortcuts": false + } + }, + "header": { + "liveChatHeaderRenderer": { + "overflowMenu": { + "menuRenderer": { + "items": [ + { + "menuServiceItemRenderer": { + "text": { + "runs": [ + { + "text": "参加者" + } + ] + }, + "icon": { + "iconType": "PERSON" + }, + "serviceEndpoint": { + "showLiveChatParticipantsEndpoint": { + "hack": true + } + }, + "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } + }, + { + "menuServiceItemRenderer": { + "text": { + "runs": [ + { + "text": "タイムスタンプ表示切替" + } + ] + }, + "icon": { + "iconType": "ACCESS_TIME" + }, + "serviceEndpoint": { + "toggleLiveChatTimestampsEndpoint": { + "hack": true + } + }, + "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } + }, + { + "menuNavigationItemRenderer": { + "text": { + "runs": [ + { + "text": "フィードバックを送信" + } + ] + }, + "icon": { + "iconType": "FEEDBACK" + }, + "navigationEndpoint": { + "clickTrackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "userFeedbackEndpoint": { + "hack": true, + "bucketIdentifier": "live_chat" + } + }, + "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } + } + ], + "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", + "accessibility": { + "accessibilityData": { + "label": "その他のオプション" + } + } + } + }, + "collapseButton": { + "buttonRenderer": { + "style": "STYLE_DEFAULT", + "size": "SIZE_DEFAULT", + "isDisabled": false, + "accessibility": { + "label": "チャットの展開 / 折りたたみ" + }, + "trackingParams": "CAYQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=" + } + }, + "viewSelector": { + "sortFilterSubMenuRenderer": { + "subMenuItems": [ + { + "title": "上位チャット", + "selected": false, + "continuation": { + "reloadContinuationData": { + "continuation": "0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUKnM18P2muUCWANoBIIBAggE", + "clickTrackingParams": "CAUQxqYCIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } + }, + "accessibility": { + "accessibilityData": { + "label": "上位チャット" + } + }, + "subtitle": "一部のメッセージ(不適切な可能性があるものなど)を非表示にします" + }, + { + "title": "チャット", + "selected": true, + "continuation": { + "reloadContinuationData": { + "continuation": "0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUKnM18P2muUCWANoAYIBAggB", + "clickTrackingParams": "CAQQxqYCIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } + }, + "accessibility": { + "accessibilityData": { + "label": "チャット" + } + }, + "subtitle": "すべてのメッセージが表示されます" + } + ], + "accessibility": { + "accessibilityData": { + "label": "チャットのモードの選択" + } + }, + "trackingParams": "CAMQgdoEIhMI1LbVw_aa5QIV2cxMAh2AtAj8" + } + } + } + }, + "ticker": { + "liveChatTickerRenderer": { + "sentinel": true + } + }, + "trackingParams": "CAEQl98BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", + "participantsList": { + "liveChatParticipantsListRenderer": { + "title": { + "runs": [ + { + "text": "参加者" + } + ] + }, + "backButton": { + "buttonRenderer": { + "icon": { + "iconType": "BACK" + }, + "trackingParams": "CAIQ8FsiEwjUttXD9prlAhXZzEwCHYC0CPw=", + "accessibilityData": { + "accessibilityData": { + "label": "戻る" + } + } + } + }, + "participants": [ + { + "liveChatParticipantRenderer": { + "authorName": { + "simpleText": "相羽ういは〖Aiba Uiha〗にじさんじ所属" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-oKuaFgPf7a8/AAAAAAAAAAI/AAAAAAAAAAA/6oDCrDvXdsc/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-oKuaFgPf7a8/AAAAAAAAAAI/AAAAAAAAAAA/6oDCrDvXdsc/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "authorBadges": [ + { + "liveChatAuthorBadgeRenderer": { + "icon": { + "iconType": "OWNER" + }, + "tooltip": "所有者", + "accessibility": { + "accessibilityData": { + "label": "所有者" + } + } + } + } + ] + } + } + ] + } + }, + "clientMessages": { + "reconnectMessage": { + "runs": [ + { + "text": "チャットが切断されました。再接続するまでしばらくお待ちください。" + } + ] + }, + "unableToReconnectMessage": { + "runs": [ + { + "text": "チャットに接続できません。しばらくしてからもう一度お試しください。" + } + ] + }, + "fatalError": { + "runs": [ + { + "text": "チャットに接続できません。しばらくしてからもう一度お試しください。" + } + ] + }, + "reconnectedMessage": { + "runs": [ + { + "text": "接続しました。" + } + ] + }, + "genericError": { + "runs": [ + { + "text": "エラーが発生しました。もう一度お試しください。" + } + ] + } + } + } + }, + "trackingParams": "CAAQ0b4BIhMI1LbVw_aa5QIV2cxMAh2AtAj8", + "url": "/live_chat/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB", + "csn": "PvujXbH0OIazqQHXgJ64DQ", + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB", + "rootVe": 83769 + } }, - "xsrf_token": "QUFFLUhqbTBwS2VJSERSSGl3cG5BSFhqMERYeGxrRk1sd3xBQ3Jtc0tudnVRN3Z4cDJlcWpMelVTTjZvVE5lX010aWtfRGNYeGJvUTlNSHNtRHcwVDNLLXpfZlhyTFJIZ1NXVFBnYjA3dHJQRGViaDFMTWloelhwN3RzV3JNa2hhUlJIa09nb0JWaURISDJIUjlFVlRUT3ppemsySjExbzdEM1hudG1abHV6b29KellpaHdsVzROSXE1U0ZSMzhWSzhjQWc=" -} \ No newline at end of file + "urlEndpoint": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB" + } + }, + "xsrf_token": "QUFFLUhqbTBwS2VJSERSSGl3cG5BSFhqMERYeGxrRk1sd3xBQ3Jtc0tudnVRN3Z4cDJlcWpMelVTTjZvVE5lX010aWtfRGNYeGJvUTlNSHNtRHcwVDNLLXpfZlhyTFJIZ1NXVFBnYjA3dHJQRGViaDFMTWloelhwN3RzV3JNa2hhUlJIa09nb0JWaURISDJIUjlFVlRUT3ppemsySjExbzdEM1hudG1abHV6b29KellpaHdsVzROSXE1U0ZSMzhWSzhjQWc=" +} diff --git a/tests/testdata/compatible/newSponsor_rev.json b/tests/testdata/compatible/newSponsor_rev.json index 1e9cad9..f594b57 100644 --- a/tests/testdata/compatible/newSponsor_rev.json +++ b/tests/testdata/compatible/newSponsor_rev.json @@ -4,7 +4,7 @@ "st": 100 } }, - "response": { + "responseContext": { "serviceTrackingParams": [ { @@ -1805,7 +1805,7 @@ } }, "trackingParams": "CAAQ0b4BIhMI1LbVw_aa5QIV2cxMAh2AtAj8" - }, + , "url": "\/live_chat\/get_live_chat?continuation=0ofMyAOBAhrKAUNrd1NJUW9ZVlVOdVVsRlpTRlJ1VWt4VFJqQmpURXAzVFc1bFpFTm5FZ1V2YkdsMlpTb25DaGhWUTI1U1VWbElWRzVTVEZOR01HTk1TbmROYm1Wa1EyY1NDMDFETTNkVlNpMUNXRTVGR2tPcXVjRzlBVDBLTzJoMGRIQnpPaTh2ZDNkM0xubHZkWFIxWW1VdVkyOXRMMnhwZG1WZlkyaGhkRDkyUFUxRE0zZFZTaTFDV0U1RkptbHpYM0J2Y0c5MWREMHhJQUklM0QwAUopCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoAUPOaw8P2muUCWANoAYIBAggB", "csn": "PvujXbH0OIazqQHXgJ64DQ", "endpoint": { diff --git a/tests/testdata/compatible/superchat.json b/tests/testdata/compatible/superchat.json index c035589..91e2f23 100644 --- a/tests/testdata/compatible/superchat.json +++ b/tests/testdata/compatible/superchat.json @@ -1,282 +1,281 @@ { - "xsrf_token": "QUFFLUhqbWVqWVRTUjhBcGRkNWR5Q2F3VWhxcTd0RkF1UXxBQ3Jtc0trMThFVGVVNTFnWmZucnkwNlJJMEZ2bndUS1I3b2dpLUtTNE92dEgwX3Y0MkNZU2NXdGY1QTMtX09BUGphYUpDQlc1dFhiTm9jLS1sQXVCNHpsdllqcm1id0t1RFBCM3A1b2o3OGt0Yjd6TE5wcmxBbjNyQktjc1lWZ3hjM1RuYk83YkQ0VVN3MGUybjAwSE90SS1YNkxvMUV5YVE=", - "timing": { - "info": { - "st": 148 - } + "xsrf_token": "QUFFLUhqbWVqWVRTUjhBcGRkNWR5Q2F3VWhxcTd0RkF1UXxBQ3Jtc0trMThFVGVVNTFnWmZucnkwNlJJMEZ2bndUS1I3b2dpLUtTNE92dEgwX3Y0MkNZU2NXdGY1QTMtX09BUGphYUpDQlc1dFhiTm9jLS1sQXVCNHpsdllqcm1id0t1RFBCM3A1b2o3OGt0Yjd6TE5wcmxBbjNyQktjc1lWZ3hjM1RuYk83YkQ0VVN3MGUybjAwSE90SS1YNkxvMUV5YVE=", + "timing": { + "info": { + "st": 148 + } + }, + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" + } }, - "endpoint": { - "commandMetadata": { - "webCommandMetadata": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" - } - }, - "urlEndpoint": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" + "urlEndpoint": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" + } + }, + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D", + "csn": "n2STXd2iKZr2gAOt9qvgCg", + + "responseContext": { + "serviceTrackingParams": [ + { + "service": "CSI", + "params": [ + { + "key": "GetLiveChat_rid", + "value": "0x9290108c05344647" + }, + { + "key": "c", + "value": "WEB" + }, + { + "key": "cver", + "value": "2.20191001.04.00" + }, + { + "key": "yt_li", + "value": "0" + } + ] + }, + { + "service": "GFEEDBACK", + "params": [ + { + "key": "e", + "value": "23744176,23788875,23793834,23794620,23804281,23806159,23816483,23819244,23820768,23826780,23827354,23830392,23832125,23835020,23836965,23837741,23837772,23837993,23838235,23839362,23840155,23840217,23841118,23841454,23842630,23842662,23842883,23842986,23843289,23843534,23843767,23845644,9449243,9471239,9474360" + }, + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "GUIDED_HELP", + "params": [ + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "ECATCHER", + "params": [ + { + "key": "client.name", + "value": "WEB" + }, + { + "key": "client.version", + "value": "2.20191001" + }, + { + "key": "innertube.build.changelist", + "value": "272006966" + }, + { + "key": "innertube.build.experiments.source_version", + "value": "272166268" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_20190930_5_RC0" + }, + { + "key": "innertube.build.timestamp", + "value": "1569863426" + }, + { + "key": "innertube.build.variants.checksum", + "value": "1a800c1a2396906f1cbb7f670d43b6f5" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] + } + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "n2STXd2iKZr2gAOt9qvgCg", + "visitorData": "CgtPQm1xTmtvNm1Tcyifyc3sBQ%3D%3D" + } + } + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "timedContinuationData": { + "timeoutMs": 8860, + "continuation": "0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCid_ejQpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DF-ovRpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABtNic0aT75AI%3D" + } } - }, - "url": "\/live_chat\/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D", - "csn": "n2STXd2iKZr2gAOt9qvgCg", - "response": { - "responseContext": { - "serviceTrackingParams": [ - { - "service": "CSI", - "params": [ - { - "key": "GetLiveChat_rid", - "value": "0x9290108c05344647" - }, - { - "key": "c", - "value": "WEB" - }, - { - "key": "cver", - "value": "2.20191001.04.00" - }, - { - "key": "yt_li", - "value": "0" - } - ] + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "ChwKGkNOblpoTXFrLS1RQ0ZRSU9ZQW9kclhrRXNn", + "timestampUsec": "1569940638420061", + "authorName": { + "simpleText": "九十九 万" }, - { - "service": "GFEEDBACK", - "params": [ - { - "key": "e", - "value": "23744176,23788875,23793834,23794620,23804281,23806159,23816483,23819244,23820768,23826780,23827354,23830392,23832125,23835020,23836965,23837741,23837772,23837993,23838235,23839362,23840155,23840217,23841118,23841454,23842630,23842662,23842883,23842986,23843289,23843534,23843767,23845644,9449243,9471239,9474360" - }, - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "GUIDED_HELP", - "params": [ - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "ECATCHER", - "params": [ - { - "key": "client.name", - "value": "WEB" - }, - { - "key": "client.version", - "value": "2.20191001" - }, - { - "key": "innertube.build.changelist", - "value": "272006966" - }, - { - "key": "innertube.build.experiments.source_version", - "value": "272166268" - }, - { - "key": "innertube.build.label", - "value": "youtube.ytfe.innertube_20190930_5_RC0" - }, - { - "key": "innertube.build.timestamp", - "value": "1569863426" - }, - { - "key": "innertube.build.variants.checksum", - "value": "1a800c1a2396906f1cbb7f670d43b6f5" - }, - { - "key": "innertube.run.job", - "value": "ytfe-innertube-replica-only.ytfe" - } - ] - } - ], - "webResponseContextExtensionData": { - "ytConfigData": { - "csn": "n2STXd2iKZr2gAOt9qvgCg", - "visitorData": "CgtPQm1xTmtvNm1Tcyifyc3sBQ%3D%3D" - } - } - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ + "authorPhoto": { + "thumbnails": [ { - "timedContinuationData": { - "timeoutMs": 8860, - "continuation": "0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCid_ejQpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DF-ovRpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABtNic0aT75AI%3D" - } - } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "ChwKGkNOblpoTXFrLS1RQ0ZRSU9ZQW9kclhrRXNn", - "timestampUsec": "1569940638420061", - "authorName": { - "simpleText": "九十九 万" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥846" - }, - "message": { - "runs": [ - { - "text": "ボルガ博士お許しください代" - } - ] - }, - "headerBackgroundColor": 4278239141, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4280150454, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "UCoVtCMzg2vleAVsa7kw05AA", - "authorNameTextColor": 2315255808, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2g0S0hBb2FRMDV1V21oTmNXc3RMVkZEUmxGSlQxbEJiMlJ5V0d0RmMyY1FBQm80Q2cwS0N6Z3dUM3AwU21oMU56YzRLaWNLR0ZWRFNYbDBUbU52ZWpSd1YzcFlaa3hrWVRCRWIxVk1VUklMT0RCUGVuUkthSFUzTnpnZ0FpZ0JNaG9LR0ZWRGIxWjBRMDE2WnpKMmJHVkJWbk5oTjJ0M01EVkJRUSUzRCUzRA==" - } - }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - } - } - } - } + "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, { - "addLiveChatTickerItemAction": { - "item": { - "liveChatTickerPaidMessageItemRenderer": { - "id": "ChwKGkNOblpoTXFrLS1RQ0ZRSU9ZQW9kclhrRXNn", - "amount": { - "simpleText": "¥846" - }, - "amountTextColor": 4278190080, - "startBackgroundColor": 4280150454, - "endBackgroundColor": 4278239141, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "durationSec": 120, - "showItemEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "showLiveChatItemEndpoint": { - "renderer": { - "liveChatPaidMessageRenderer": { - "id": "ChwKGkNOblpoTXFrLS1RQ0ZRSU9ZQW9kclhrRXNn", - "timestampUsec": "1569940638420061", - "authorName": { - "simpleText": "九十九 万" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥846" - }, - "message": { - "runs": [ - { - "text": "ボルガ博士お許しください代" - } - ] - }, - "headerBackgroundColor": 4278239141, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4280150454, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "UCoVtCMzg2vleAVsa7kw05AA", - "authorNameTextColor": 2315255808, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2g0S0hBb2FRMDV1V21oTmNXc3RMVkZEUmxGSlQxbEJiMlJ5V0d0RmMyY1FBQm80Q2cwS0N6Z3dUM3AwU21oMU56YzRLaWNLR0ZWRFNYbDBUbU52ZWpSd1YzcFlaa3hrWVRCRWIxVk1VUklMT0RCUGVuUkthSFUzTnpnZ0FpZ0JNaG9LR0ZWRGIxWjBRMDE2WnpKMmJHVkJWbk5oTjJ0M01EVkJRUSUzRCUzRA==" - } - }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - } - } - } - } - }, - "authorExternalChannelId": "UCoVtCMzg2vleAVsa7kw05AA", - "fullDurationSec": 120 - } - }, - "durationSec": "120" - } + "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 } - ] + ] + }, + "purchaseAmountText": { + "simpleText": "¥846" + }, + "message": { + "runs": [ + { + "text": "ボルガ博士お許しください代" + } + ] + }, + "headerBackgroundColor": 4278239141, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4280150454, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "UCoVtCMzg2vleAVsa7kw05AA", + "authorNameTextColor": 2315255808, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2g0S0hBb2FRMDV1V21oTmNXc3RMVkZEUmxGSlQxbEJiMlJ5V0d0RmMyY1FBQm80Q2cwS0N6Z3dUM3AwU21oMU56YzRLaWNLR0ZWRFNYbDBUbU52ZWpSd1YzcFlaa3hrWVRCRWIxVk1VUklMT0RCUGVuUkthSFUzTnpnZ0FpZ0JNaG9LR0ZWRGIxWjBRMDE2WnpKMmJHVkJWbk5oTjJ0M01EVkJRUSUzRCUzRA==" + } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + } + } } + } + }, + { + "addLiveChatTickerItemAction": { + "item": { + "liveChatTickerPaidMessageItemRenderer": { + "id": "ChwKGkNOblpoTXFrLS1RQ0ZRSU9ZQW9kclhrRXNn", + "amount": { + "simpleText": "¥846" + }, + "amountTextColor": 4278190080, + "startBackgroundColor": 4280150454, + "endBackgroundColor": 4278239141, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "durationSec": 120, + "showItemEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "showLiveChatItemEndpoint": { + "renderer": { + "liveChatPaidMessageRenderer": { + "id": "ChwKGkNOblpoTXFrLS1RQ0ZRSU9ZQW9kclhrRXNn", + "timestampUsec": "1569940638420061", + "authorName": { + "simpleText": "九十九 万" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-FoBvzoKhbZs/AAAAAAAAAAI/AAAAAAAAAAA/oyb-UCYFbfA/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥846" + }, + "message": { + "runs": [ + { + "text": "ボルガ博士お許しください代" + } + ] + }, + "headerBackgroundColor": 4278239141, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4280150454, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "UCoVtCMzg2vleAVsa7kw05AA", + "authorNameTextColor": 2315255808, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2g0S0hBb2FRMDV1V21oTmNXc3RMVkZEUmxGSlQxbEJiMlJ5V0d0RmMyY1FBQm80Q2cwS0N6Z3dUM3AwU21oMU56YzRLaWNLR0ZWRFNYbDBUbU52ZWpSd1YzcFlaa3hrWVRCRWIxVk1VUklMT0RCUGVuUkthSFUzTnpnZ0FpZ0JNaG9LR0ZWRGIxWjBRMDE2WnpKMmJHVkJWbk5oTjJ0M01EVkJRUSUzRCUzRA==" + } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + } + } + } + } + }, + "authorExternalChannelId": "UCoVtCMzg2vleAVsa7kw05AA", + "fullDurationSec": 120 + } + }, + "durationSec": "120" + } } + ] } -} \ No newline at end of file + } +} diff --git a/tests/testdata/compatible/supersticker.json b/tests/testdata/compatible/supersticker.json index cebccdb..5a84cfe 100644 --- a/tests/testdata/compatible/supersticker.json +++ b/tests/testdata/compatible/supersticker.json @@ -1,197 +1,195 @@ { - "xsrf_token": "QUFFLUhqbWVqWVRTUjhBcGRkNWR5Q2F3VWhxcTd0RkF1UXxBQ3Jtc0trMThFVGVVNTFnWmZucnkwNlJJMEZ2bndUS1I3b2dpLUtTNE92dEgwX3Y0MkNZU2NXdGY1QTMtX09BUGphYUpDQlc1dFhiTm9jLS1sQXVCNHpsdllqcm1id0t1RFBCM3A1b2o3OGt0Yjd6TE5wcmxBbjNyQktjc1lWZ3hjM1RuYk83YkQ0VVN3MGUybjAwSE90SS1YNkxvMUV5YVE=", - "timing": { - "info": { - "st": 148 - } - }, - "endpoint": { - "commandMetadata": { - "webCommandMetadata": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" - } - }, - "urlEndpoint": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" - } - }, - "url": "\/live_chat\/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D", - "csn": "n2STXd2iKZr2gAOt9qvgCg", - "response": { - "responseContext": { - "serviceTrackingParams": [ - { - "service": "CSI", - "params": [ - { - "key": "GetLiveChat_rid", - "value": "0x9290108c05344647" - }, - { - "key": "c", - "value": "WEB" - }, - { - "key": "cver", - "value": "2.20191001.04.00" - }, - { - "key": "yt_li", - "value": "0" - } - ] - }, - { - "service": "GFEEDBACK", - "params": [ - { - "key": "e", - "value": "23744176,23788875,23793834,23794620,23804281,23806159,23816483,23819244,23820768,23826780,23827354,23830392,23832125,23835020,23836965,23837741,23837772,23837993,23838235,23839362,23840155,23840217,23841118,23841454,23842630,23842662,23842883,23842986,23843289,23843534,23843767,23845644,9449243,9471239,9474360" - }, - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "GUIDED_HELP", - "params": [ - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "ECATCHER", - "params": [ - { - "key": "client.name", - "value": "WEB" - }, - { - "key": "client.version", - "value": "2.20191001" - }, - { - "key": "innertube.build.changelist", - "value": "272006966" - }, - { - "key": "innertube.build.experiments.source_version", - "value": "272166268" - }, - { - "key": "innertube.build.label", - "value": "youtube.ytfe.innertube_20190930_5_RC0" - }, - { - "key": "innertube.build.timestamp", - "value": "1569863426" - }, - { - "key": "innertube.build.variants.checksum", - "value": "1a800c1a2396906f1cbb7f670d43b6f5" - }, - { - "key": "innertube.run.job", - "value": "ytfe-innertube-replica-only.ytfe" - } - ] - } - ], - "webResponseContextExtensionData": { - "ytConfigData": { - "csn": "n2STXd2iKZr2gAOt9qvgCg", - "visitorData": "CgtPQm1xTmtvNm1Tcyifyc3sBQ%3D%3D" - } - } - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "timedContinuationData": { - "timeoutMs": 8860, - "continuation": "0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCid_ejQpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DF-ovRpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABtNic0aT75AI%3D" - } - } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidStickerRenderer": { - "id": "ChwKGkNQX2Qzb2pUcU9VQ0ZRdnVXQW9kaTNJS3NB", - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2g0S0hBb2FRMUJmWkROdmFsUnhUMVZEUmxGMmRWZEJiMlJwTTBsTGMwRVFBQm80Q2cwS0N6VlVUSE42U0hNd2QxYzBLaWNLR0ZWRFdGSnNTVXN6UTNkZlZFcEpVVU0xYTFOS1NsRk5aeElMTlZSTWMzcEljekIzVnpRZ0FpZ0JNaG9LR0ZWRFRHOXJPVWQ0WVRGYU5rWTVWV3d5WVV0MlRFWkdadyUzRCUzRA==" - } - }, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampUsec": "1571499325098699", - "authorPhoto": { - "thumbnails": [ - { - "url": "https: //yt3.ggpht.com/-xRQVNtDSO3w/AAAAAAAAAAI/AAAAAAAAAAA/Is9D9D7wwAE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-xRQVNtDSO3w/AAAAAAAAAAI/AAAAAAAAAAA/Is9D9D7wwAE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorName": { - "simpleText": "りお" - }, - "authorExternalChannelId": "UCLok9Gxa1Z6F9Ul2aKvLFFg", - "sticker": { - "thumbnails": [ - { - "url": "//lh3.googleusercontent.com/1aIk6vlk4gZ2ytc42j3WcIHYtWFWo2uVWVqbHFuxiGHO4XwyAS0u8vuu6VkiX5eR6uy9mfAupyP786_TbP0=s72-rwa", - "width": 72, - "height": 72 - }, - { - "url": "//lh3.googleusercontent.com/1aIk6vlk4gZ2ytc42j3WcIHYtWFWo2uVWVqbHFuxiGHO4XwyAS0u8vuu6VkiX5eR6uy9mfAupyP786_TbP0=s144-rwa", - "width": 144, - "height": 144 - } - ], - "accessibility": { - "accessibilityData": { - "label": "気付いてもらえるように人差し指を上げたり下げたりしている柴犬" - } - } - }, - "moneyChipBackgroundColor": 4278248959, - "moneyChipTextColor": 4278190080, - "purchaseAmountText": { - "simpleText": "¥200" - }, - "stickerDisplayWidth": 72, - "stickerDisplayHeight": 72, - "backgroundColor": 4278237396, - "authorNameTextColor": 3003121664 - } - } - } - } - ] - } - } + "xsrf_token": "QUFFLUhqbWVqWVRTUjhBcGRkNWR5Q2F3VWhxcTd0RkF1UXxBQ3Jtc0trMThFVGVVNTFnWmZucnkwNlJJMEZ2bndUS1I3b2dpLUtTNE92dEgwX3Y0MkNZU2NXdGY1QTMtX09BUGphYUpDQlc1dFhiTm9jLS1sQXVCNHpsdllqcm1id0t1RFBCM3A1b2o3OGt0Yjd6TE5wcmxBbjNyQktjc1lWZ3hjM1RuYk83YkQ0VVN3MGUybjAwSE90SS1YNkxvMUV5YVE=", + "timing": { + "info": { + "st": 148 } -} \ No newline at end of file + }, + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" + } + }, + "urlEndpoint": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D" + } + }, + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCja2bHMpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DXxuTMpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABxM3xzKT75AI%253D", + "csn": "n2STXd2iKZr2gAOt9qvgCg", + "responseContext": { + "serviceTrackingParams": [ + { + "service": "CSI", + "params": [ + { + "key": "GetLiveChat_rid", + "value": "0x9290108c05344647" + }, + { + "key": "c", + "value": "WEB" + }, + { + "key": "cver", + "value": "2.20191001.04.00" + }, + { + "key": "yt_li", + "value": "0" + } + ] + }, + { + "service": "GFEEDBACK", + "params": [ + { + "key": "e", + "value": "23744176,23788875,23793834,23794620,23804281,23806159,23816483,23819244,23820768,23826780,23827354,23830392,23832125,23835020,23836965,23837741,23837772,23837993,23838235,23839362,23840155,23840217,23841118,23841454,23842630,23842662,23842883,23842986,23843289,23843534,23843767,23845644,9449243,9471239,9474360" + }, + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "GUIDED_HELP", + "params": [ + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "ECATCHER", + "params": [ + { + "key": "client.name", + "value": "WEB" + }, + { + "key": "client.version", + "value": "2.20191001" + }, + { + "key": "innertube.build.changelist", + "value": "272006966" + }, + { + "key": "innertube.build.experiments.source_version", + "value": "272166268" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_20190930_5_RC0" + }, + { + "key": "innertube.build.timestamp", + "value": "1569863426" + }, + { + "key": "innertube.build.variants.checksum", + "value": "1a800c1a2396906f1cbb7f670d43b6f5" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] + } + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "n2STXd2iKZr2gAOt9qvgCg", + "visitorData": "CgtPQm1xTmtvNm1Tcyifyc3sBQ%3D%3D" + } + } + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "timedContinuationData": { + "timeoutMs": 8860, + "continuation": "0ofMyAPiARp8Q2c4S0RRb0xPREJQZW5SS2FIVTNOemdhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5T0RCUGVuUkthSFUzTnpnbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCid_ejQpPvkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQwJKPoqT75AJYA1DF-ovRpPvkAliL_fvZoPvkAmgBggEECAEQAIgBAKABtNic0aT75AI%3D" + } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidStickerRenderer": { + "id": "ChwKGkNQX2Qzb2pUcU9VQ0ZRdnVXQW9kaTNJS3NB", + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2g0S0hBb2FRMUJmWkROdmFsUnhUMVZEUmxGMmRWZEJiMlJwTTBsTGMwRVFBQm80Q2cwS0N6VlVUSE42U0hNd2QxYzBLaWNLR0ZWRFdGSnNTVXN6UTNkZlZFcEpVVU0xYTFOS1NsRk5aeElMTlZSTWMzcEljekIzVnpRZ0FpZ0JNaG9LR0ZWRFRHOXJPVWQ0WVRGYU5rWTVWV3d5WVV0MlRFWkdadyUzRCUzRA==" + } + }, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampUsec": "1571499325098699", + "authorPhoto": { + "thumbnails": [ + { + "url": "https: //yt3.ggpht.com/-xRQVNtDSO3w/AAAAAAAAAAI/AAAAAAAAAAA/Is9D9D7wwAE/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-xRQVNtDSO3w/AAAAAAAAAAI/AAAAAAAAAAA/Is9D9D7wwAE/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "authorName": { + "simpleText": "りお" + }, + "authorExternalChannelId": "UCLok9Gxa1Z6F9Ul2aKvLFFg", + "sticker": { + "thumbnails": [ + { + "url": "//lh3.googleusercontent.com/1aIk6vlk4gZ2ytc42j3WcIHYtWFWo2uVWVqbHFuxiGHO4XwyAS0u8vuu6VkiX5eR6uy9mfAupyP786_TbP0=s72-rwa", + "width": 72, + "height": 72 + }, + { + "url": "//lh3.googleusercontent.com/1aIk6vlk4gZ2ytc42j3WcIHYtWFWo2uVWVqbHFuxiGHO4XwyAS0u8vuu6VkiX5eR6uy9mfAupyP786_TbP0=s144-rwa", + "width": 144, + "height": 144 + } + ], + "accessibility": { + "accessibilityData": { + "label": "気付いてもらえるように人差し指を上げたり下げたりしている柴犬" + } + } + }, + "moneyChipBackgroundColor": 4278248959, + "moneyChipTextColor": 4278190080, + "purchaseAmountText": { + "simpleText": "¥200" + }, + "stickerDisplayWidth": 72, + "stickerDisplayHeight": 72, + "backgroundColor": 4278237396, + "authorNameTextColor": 3003121664 + } + } + } + } + ] + } + } +} diff --git a/tests/testdata/compatible/textmessage.json b/tests/testdata/compatible/textmessage.json index 6ae9f69..4ad439d 100644 --- a/tests/testdata/compatible/textmessage.json +++ b/tests/testdata/compatible/textmessage.json @@ -1,177 +1,175 @@ { - "response": { - "responseContext": { - "serviceTrackingParams": [ - { - "service": "CSI", - "params": [ - { - "key": "GetLiveChat_rid", - "value": "0x3eff0db28fc39bbe" - }, - { - "key": "c", - "value": "WEB" - }, - { - "key": "cver", - "value": "2.20190920.05.01" - }, - { - "key": "yt_li", - "value": "0" - } - ] - }, - { - "service": "GFEEDBACK", - "params": [ - { - "key": "e", - "value": "23744176,23748146,23788851,23788875,23793834,23804281,23807353,23808952,23828082,23828243,23829333,23832544,23834418,23834656,23835020,23836434,23836965,23837742,23837772,23837993,23838301,23838576,23838576,23838742,23839360,23840216,23841655,23842986,23843288,23843533,23843743,23844780,24630231,9425362,9449243,9466592,9469037,9471235,9474358" - }, - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "GUIDED_HELP", - "params": [ - { - "key": "logged_in", - "value": "0" - } - ] - }, - { - "service": "ECATCHER", - "params": [ - { - "key": "client.name", - "value": "WEB" - }, - { - "key": "client.version", - "value": "2.20190920" - }, - { - "key": "innertube.build.changelist", - "value": "270169303" - }, - { - "key": "innertube.build.experiments.source_version", - "value": "270377311" - }, - { - "key": "innertube.build.label", - "value": "youtube.ytfe.innertube_20190919_5_RC1" - }, - { - "key": "innertube.build.timestamp", - "value": "1568942548" - }, - { - "key": "innertube.build.variants.checksum", - "value": "392d499f55b5e2c240adde58886a8143" - }, - { - "key": "innertube.run.job", - "value": "ytfe-innertube-replica-only.ytfe" - } - ] - } - ], - "webResponseContextExtensionData": { - "ytConfigData": { - "csn": "n96GXabRGouFlQTigY2YDg", - "visitorData": "CgtKUldQeGJJRXhkcyifvZvsBQ%3D%3D" - } - } - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "timedContinuationData": { - "timeoutMs": 5041, - "continuation": "0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCj7hLmSs-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1DsuuGSs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKAB7KDVk7Pj5AI%3D" - } - } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "text" - } - ] - }, - "authorName": { - "simpleText": "name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/-8sLtPu1Hyw0/AAAAAAAAAAI/AAAAAAAAAAA/a_52bWnC0-s/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/-8sLtPu1Hyw0/AAAAAAAAAAI/AAAAAAAAAAA/a_52bWnC0-s/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "Q2pzS09Rb2FRMHRQTkhRMVEzbzBMVkZEUmxweGRrUlJiMlJZV0d0QlVHY1NHME5PYm5OdlVESm1OQzFSUTBaUmRsTlhRVzlrVVZGclJUTlJNeEFBR2pnS0RRb0xhelJMZDBsWFQwdERkalFxSndvWVZVTnZTWEZ1TVZvMWFYaERXbmRqTUVSWFNqZHlTME5uRWd0ck5FdDNTVmRQUzBOMk5DQUNLQUV5R2dvWVZVTnlOVGxXVlY5amRtWnlkVEF0YW1GeWNtUk1NMDEz" - } - }, - "id": "CjkKGkNLTzR0NUN6NC1RQ0ZacXZEUW9kWFhrQVBnEhtDTm5zb1AyZjQtUUNGUXZTV0FvZFFRa0UzUTM%3D", - "timestampUsec": "1569119896722467", - "authorExternalChannelId": "UCr59VU_cvfru0-jarrdL3Mw", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - } - } - }, - "clientId": "CNnsoP2f4-QCFQvSWAodQQkE3Q3" - } - } - ] - } - } - }, - "endpoint": { - "commandMetadata": { - "webCommandMetadata": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%253D" - } - }, - "urlEndpoint": { - "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%253D" - } - }, - "csn": "n96GXabRGouFlQTigY2YDg", - "xsrf_token": "QUFFLUhqbHNNWTF3NFJqc2h3cGE1NE9FWGdaWk5mRlVhUXxBQ3Jtc0tuTWhZNFcyTW1iZnA3ZnFTYUFudVFEUVE0cnFEOVBGcEU1MEh0Zlh4bll1amVmRl9OMkxZV3pKV1ZSbExBeDctTl95NGtBVnJZdlNxeS1KdWVNempEN2N6MHhaU1laV3hnVkZPeHp1OHVDTGVFSGUyOGduT0szbDV5N05LYUZTdzdoTDRwV1VJWndaVjdQVGRjNWVpR0YwUXgtZXc=", - "url": "\/live_chat\/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%253D", - "timing": { - "info": { - "st": 81 - } + "responseContext": { + "serviceTrackingParams": [ + { + "service": "CSI", + "params": [ + { + "key": "GetLiveChat_rid", + "value": "0x3eff0db28fc39bbe" + }, + { + "key": "c", + "value": "WEB" + }, + { + "key": "cver", + "value": "2.20190920.05.01" + }, + { + "key": "yt_li", + "value": "0" + } + ] + }, + { + "service": "GFEEDBACK", + "params": [ + { + "key": "e", + "value": "23744176,23748146,23788851,23788875,23793834,23804281,23807353,23808952,23828082,23828243,23829333,23832544,23834418,23834656,23835020,23836434,23836965,23837742,23837772,23837993,23838301,23838576,23838576,23838742,23839360,23840216,23841655,23842986,23843288,23843533,23843743,23844780,24630231,9425362,9449243,9466592,9469037,9471235,9474358" + }, + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "GUIDED_HELP", + "params": [ + { + "key": "logged_in", + "value": "0" + } + ] + }, + { + "service": "ECATCHER", + "params": [ + { + "key": "client.name", + "value": "WEB" + }, + { + "key": "client.version", + "value": "2.20190920" + }, + { + "key": "innertube.build.changelist", + "value": "270169303" + }, + { + "key": "innertube.build.experiments.source_version", + "value": "270377311" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_20190919_5_RC1" + }, + { + "key": "innertube.build.timestamp", + "value": "1568942548" + }, + { + "key": "innertube.build.variants.checksum", + "value": "392d499f55b5e2c240adde58886a8143" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] + } + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "n96GXabRGouFlQTigY2YDg", + "visitorData": "CgtKUldQeGJJRXhkcyifvZvsBQ%3D%3D" + } } -} \ No newline at end of file + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "timedContinuationData": { + "timeoutMs": 5041, + "continuation": "0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCj7hLmSs-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1DsuuGSs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKAB7KDVk7Pj5AI%3D" + } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "text" + } + ] + }, + "authorName": { + "simpleText": "name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-8sLtPu1Hyw0/AAAAAAAAAAI/AAAAAAAAAAA/a_52bWnC0-s/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-8sLtPu1Hyw0/AAAAAAAAAAI/AAAAAAAAAAA/a_52bWnC0-s/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2pzS09Rb2FRMHRQTkhRMVEzbzBMVkZEUmxweGRrUlJiMlJZV0d0QlVHY1NHME5PYm5OdlVESm1OQzFSUTBaUmRsTlhRVzlrVVZGclJUTlJNeEFBR2pnS0RRb0xhelJMZDBsWFQwdERkalFxSndvWVZVTnZTWEZ1TVZvMWFYaERXbmRqTUVSWFNqZHlTME5uRWd0ck5FdDNTVmRQUzBOMk5DQUNLQUV5R2dvWVZVTnlOVGxXVlY5amRtWnlkVEF0YW1GeWNtUk1NMDEz" + } + }, + "id": "CjkKGkNLTzR0NUN6NC1RQ0ZacXZEUW9kWFhrQVBnEhtDTm5zb1AyZjQtUUNGUXZTV0FvZFFRa0UzUTM%3D", + "timestampUsec": "1569119896722467", + "authorExternalChannelId": "UCr59VU_cvfru0-jarrdL3Mw", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + } + } + }, + "clientId": "CNnsoP2f4-QCFQvSWAodQQkE3Q3" + } + } + ] + } + }, + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%253D" + } + }, + "urlEndpoint": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%253D" + } + }, + "csn": "n96GXabRGouFlQTigY2YDg", + "xsrf_token": "QUFFLUhqbHNNWTF3NFJqc2h3cGE1NE9FWGdaWk5mRlVhUXxBQ3Jtc0tuTWhZNFcyTW1iZnA3ZnFTYUFudVFEUVE0cnFEOVBGcEU1MEh0Zlh4bll1amVmRl9OMkxZV3pKV1ZSbExBeDctTl95NGtBVnJZdlNxeS1KdWVNempEN2N6MHhaU1laV3hnVkZPeHp1OHVDTGVFSGUyOGduT0szbDV5N05LYUZTdzdoTDRwV1VJWndaVjdQVGRjNWVpR0YwUXgtZXc=", + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%253D", + "timing": { + "info": { + "st": 81 + } + } +} diff --git a/tests/testdata/default/newSponsor_current.json b/tests/testdata/default/newSponsor_current.json index 346fba3..1b2e64b 100644 --- a/tests/testdata/default/newSponsor_current.json +++ b/tests/testdata/default/newSponsor_current.json @@ -1,100 +1,98 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatMembershipItemRenderer": { - "id": "dummy_id", - "timestampUsec": 1570678496000000, - "authorExternalChannelId": "author_channel_id", - "headerSubtext": { - "runs": [ - { - "text": "新規メンバー" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorBadges": [ + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatMembershipItemRenderer": { + "id": "dummy_id", + "timestampUsec": 1570678496000000, + "authorExternalChannelId": "author_channel_id", + "headerSubtext": { + "runs": [ { - "liveChatAuthorBadgeRenderer": { - "customThumbnail": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/X=s32-c-k" - }, - { - "url": "https://yt3.ggpht.com/X=s64-c-k" - } - ] - }, - "tooltip": "新規メンバー", - "accessibility": { - "accessibilityData": { - "label": "新規メンバー" + "text": "新規メンバー" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "authorBadges": [ + { + "liveChatAuthorBadgeRenderer": { + "customThumbnail": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/X=s32-c-k" + }, + { + "url": "https://yt3.ggpht.com/X=s64-c-k" } + ] + }, + "tooltip": "新規メンバー", + "accessibility": { + "accessibilityData": { + "label": "新規メンバー" } } } - ], - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + } + ], + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } } } } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/default/newSponsor_lagacy.json b/tests/testdata/default/newSponsor_lagacy.json index aa9cc9b..e9510d1 100644 --- a/tests/testdata/default/newSponsor_lagacy.json +++ b/tests/testdata/default/newSponsor_lagacy.json @@ -1,82 +1,80 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatLegacyPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 1570678496000000, - "eventText": { - "runs": [ - { - "text": "新規メンバー" - } - ] - }, - "detailText": { - "simpleText": "ようこそ、author_name!" - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorExternalChannelId": "author_channel_id", - "contextMenuEndpoint": { - "clickTrackingParams": "___clickTrackingParams___", - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatLegacyPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 1570678496000000, + "eventText": { + "runs": [ + { + "text": "新規メンバー" + } + ] + }, + "detailText": { + "simpleText": "ようこそ、author_name!" + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "authorExternalChannelId": "author_channel_id", + "contextMenuEndpoint": { + "clickTrackingParams": "___clickTrackingParams___", + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } } } } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/default/replay_member_text.json b/tests/testdata/default/replay_member_text.json index eaaf4b2..6da34fd 100644 --- a/tests/testdata/default/replay_member_text.json +++ b/tests/testdata/default/replay_member_text.json @@ -1,112 +1,110 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "data" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "data" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "clickTrackingParams": "___clickTrackingParams___", - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "clickTrackingParams": "___clickTrackingParams___", + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 1570678496000000, - "authorBadges": [ - { - "liveChatAuthorBadgeRenderer": { - "customThumbnail": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/X=s16-c-k" - }, - { - "url": "https://yt3.ggpht.com/X=s32-c-k" - } - ] - }, - "tooltip": "メンバー(1 か月)", - "accessibility": { - "accessibilityData": { - "label": "メンバー(1 か月)" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 1570678496000000, + "authorBadges": [ + { + "liveChatAuthorBadgeRenderer": { + "customThumbnail": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/X=s16-c-k" + }, + { + "url": "https://yt3.ggpht.com/X=s32-c-k" } + ] + }, + "tooltip": "メンバー(1 か月)", + "accessibility": { + "accessibilityData": { + "label": "メンバー(1 か月)" } } } - ], - "authorExternalChannelId": "author_channel_id", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "1:23:45" } + ], + "authorExternalChannelId": "author_channel_id", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "1:23:45" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "5025120" - } + } + ], + "videoOffsetTimeMsec": "5025120" } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/default/superchat.json b/tests/testdata/default/superchat.json index a5b41d1..d70b87e 100644 --- a/tests/testdata/default/superchat.json +++ b/tests/testdata/default/superchat.json @@ -1,184 +1,182 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 1570678496000000, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥800" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4278239141, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4280150454, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "author_channel_id", - "authorNameTextColor": 2315255808, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 1570678496000000, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥800" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4278239141, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4280150454, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "author_channel_id", + "authorNameTextColor": 2315255808, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } } } - }, - { - "addLiveChatTickerItemAction": { - "item": { - "liveChatTickerPaidMessageItemRenderer": { - "id": "dummy_id", - "amount": { - "simpleText": "¥846" - }, - "amountTextColor": 4278190080, - "startBackgroundColor": 4280150454, - "endBackgroundColor": 4278239141, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "durationSec": 120, - "showItemEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + }, + { + "addLiveChatTickerItemAction": { + "item": { + "liveChatTickerPaidMessageItemRenderer": { + "id": "dummy_id", + "amount": { + "simpleText": "¥846" + }, + "amountTextColor": 4278190080, + "startBackgroundColor": 4280150454, + "endBackgroundColor": 4278239141, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "showLiveChatItemEndpoint": { - "renderer": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 1570678496000000, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥846" - }, - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "headerBackgroundColor": 4278239141, - "headerTextColor": 4278190080, - "bodyBackgroundColor": 4280150454, - "bodyTextColor": 4278190080, - "authorExternalChannelId": "author_channel_id", - "authorNameTextColor": 2315255808, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "durationSec": 120, + "showItemEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "showLiveChatItemEndpoint": { + "renderer": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 1570678496000000, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥846" + }, + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "headerBackgroundColor": 4278239141, + "headerTextColor": 4278190080, + "bodyBackgroundColor": 4280150454, + "bodyTextColor": 4278190080, + "authorExternalChannelId": "author_channel_id", + "authorNameTextColor": 2315255808, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2147483648, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "timestampColor": 2147483648, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } } } - }, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "fullDurationSec": 120 - } - }, - "durationSec": "120" - } + } + }, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "fullDurationSec": 120 + } + }, + "durationSec": "120" } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/default/supersticker.json b/tests/testdata/default/supersticker.json index fddf26d..567dfea 100644 --- a/tests/testdata/default/supersticker.json +++ b/tests/testdata/default/supersticker.json @@ -1,99 +1,97 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatPaidStickerRenderer": { - "id": "dummy_id", - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidStickerRenderer": { + "id": "dummy_id", + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampUsec": 1570678496000000, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 } - }, - "contextMenuAccessibility": { + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorExternalChannelId": "author_channel_id", + "sticker": { + "thumbnails": [ + { + "url": "//lh3.googleusercontent.com/param_s=s72-rp", + "width": 72, + "height": 72 + }, + { + "url": "//lh3.googleusercontent.com/param_s=s144-rp", + "width": 144, + "height": 144 + } + ], + "accessibility": { "accessibilityData": { - "label": "コメントの操作" + "label": "___sticker_label___" } - }, - "timestampUsec": 1570678496000000, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorExternalChannelId": "author_channel_id", - "sticker": { - "thumbnails": [ - { - "url": "//lh3.googleusercontent.com/param_s=s72-rp", - "width": 72, - "height": 72 - }, - { - "url": "//lh3.googleusercontent.com/param_s=s144-rp", - "width": 144, - "height": 144 - } - ], - "accessibility": { - "accessibilityData": { - "label": "___sticker_label___" - } - } - }, - "moneyChipBackgroundColor": 4278248959, - "moneyChipTextColor": 4278190080, - "purchaseAmountText": { - "simpleText": "¥200" - }, - "stickerDisplayWidth": 72, - "stickerDisplayHeight": 72, - "backgroundColor": 4278237396, - "authorNameTextColor": 3003121664 - } + } + }, + "moneyChipBackgroundColor": 4278248959, + "moneyChipTextColor": 4278190080, + "purchaseAmountText": { + "simpleText": "¥200" + }, + "stickerDisplayWidth": 72, + "stickerDisplayHeight": 72, + "backgroundColor": 4278237396, + "authorNameTextColor": 3003121664 } } } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/default/textmessage.json b/tests/testdata/default/textmessage.json index 474b26b..0bd0b2b 100644 --- a/tests/testdata/default/textmessage.json +++ b/tests/testdata/default/textmessage.json @@ -1,79 +1,77 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s64-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 1570678496000000, - "authorExternalChannelId": "author_channel_id", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 1570678496000000, + "authorExternalChannelId": "author_channel_id", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/extract_duplcheck/head/dp0-0.json b/tests/testdata/extract_duplcheck/head/dp0-0.json index 4309f65..ec88601 100644 --- a/tests/testdata/extract_duplcheck/head/dp0-0.json +++ b/tests/testdata/extract_duplcheck/head/dp0-0.json @@ -1,6128 +1,6126 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9890" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12133" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15008" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15223" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15437" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18026" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18111" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18485" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18805" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18891" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18966" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21437" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21849" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22152" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22788" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22968" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23091" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23190" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23473" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23939" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24185" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24425" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24469" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24514" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25912" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26223" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26422" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27516" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27577" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27853" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27872" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28334" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28737" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28865" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32476" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32507" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34053" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34454" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34461" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35124" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35780" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36501" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36881" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37725" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38158" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38392" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2500" - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9890" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12133" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15008" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15223" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15437" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18026" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18111" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18485" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18805" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18891" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18966" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20244" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21437" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21849" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22152" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22788" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22968" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23091" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23190" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23473" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23939" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24185" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24425" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24469" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24514" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25912" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26223" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26422" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27516" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27577" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27853" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27872" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28334" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28737" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28865" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32476" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32507" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34053" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34454" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34461" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35124" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35780" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36501" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36881" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37725" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38158" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38392" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2500" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/head/dp0-1.json b/tests/testdata/extract_duplcheck/head/dp0-1.json index 721a6e0..1b02cf3 100644 --- a/tests/testdata/extract_duplcheck/head/dp0-1.json +++ b/tests/testdata/extract_duplcheck/head/dp0-1.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12133" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15008" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15223" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15437" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18026" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18111" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18485" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18805" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18891" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "18966" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21437" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21849" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22152" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22788" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22968" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23091" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23190" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23473" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23939" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24185" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24425" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24469" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24514" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25912" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26223" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26422" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27516" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27577" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27853" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27872" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28334" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28737" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28865" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32476" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32507" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34053" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34454" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34461" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35124" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35780" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36501" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36881" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37725" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38158" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38392" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38771" - } + } + ], + "videoOffsetTimeMsec": "0" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12133" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15008" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15223" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15437" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18026" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18111" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18485" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18805" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18891" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "18966" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20244" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21437" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21849" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22152" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22788" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22968" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23091" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23190" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23473" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23939" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24185" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24425" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24469" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24514" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25912" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26223" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26422" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27516" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27577" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27853" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27872" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28334" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28737" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28865" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32476" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32507" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34053" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34454" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34461" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35124" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35780" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36501" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36881" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37725" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38158" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38392" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38771" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/head/dp0-2.json b/tests/testdata/extract_duplcheck/head/dp0-2.json index 24dfc10..f329ea5 100644 --- a/tests/testdata/extract_duplcheck/head/dp0-2.json +++ b/tests/testdata/extract_duplcheck/head/dp0-2.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "20640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21437" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21849" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22152" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22788" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22968" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23091" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23190" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23473" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23939" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24185" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24425" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24469" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24514" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25912" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26223" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26422" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27516" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27577" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27853" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27872" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28334" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28737" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28865" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32476" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32507" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34053" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34454" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34461" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35124" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35780" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36501" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36881" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37725" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38158" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38392" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38771" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39229" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40596" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40657" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41380" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42292" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42299" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42890" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43651" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44170" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44766" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45146" - } + } + ], + "videoOffsetTimeMsec": "0" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21437" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21849" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22152" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22788" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22968" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23091" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23190" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23473" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23939" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24185" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24425" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24469" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24514" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25912" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26223" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26422" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27516" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27577" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27853" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27872" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28334" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28737" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28865" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32476" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32507" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34053" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34454" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34461" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35124" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35780" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36501" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36881" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37725" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38158" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38392" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38771" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39229" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40596" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40657" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41380" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42292" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42299" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42890" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43651" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44170" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44766" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45146" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/head/dp0-3.json b/tests/testdata/extract_duplcheck/head/dp0-3.json index b797484..3732ee9 100644 --- a/tests/testdata/extract_duplcheck/head/dp0-3.json +++ b/tests/testdata/extract_duplcheck/head/dp0-3.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "32507" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34053" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34454" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34461" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35124" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35780" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36501" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36881" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37725" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38158" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38392" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38771" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39229" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40596" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40657" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41380" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42292" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42299" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42890" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43651" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44170" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44766" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45146" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45469" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45894" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47274" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "48601" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49358" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49652" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50089" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50403" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50715" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50948" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52568" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52755" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52947" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53445" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53846" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "54396" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56953" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57806" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58388" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58766" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59139" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59699" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60425" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60520" - } + } + ], + "videoOffsetTimeMsec": "20244" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32507" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34053" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34454" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34461" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35124" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35780" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36501" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36881" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37725" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38158" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38392" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38771" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39229" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40596" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40657" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41380" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42292" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42299" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42890" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43651" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44170" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44766" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45146" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45469" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45894" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47274" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "48601" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49358" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49652" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50089" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50403" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50715" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50948" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52568" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52755" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52947" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53445" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53846" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "54396" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56953" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57806" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58388" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58766" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59139" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59699" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60425" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60520" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/head/dp0-4.json b/tests/testdata/extract_duplcheck/head/dp0-4.json index 168ebe2..9cdb8dc 100644 --- a/tests/testdata/extract_duplcheck/head/dp0-4.json +++ b/tests/testdata/extract_duplcheck/head/dp0-4.json @@ -1,2529 +1,2527 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "42292" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42299" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42890" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43651" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44170" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44766" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45146" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45469" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45894" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47274" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "48601" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49358" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49652" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50089" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50403" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50715" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50948" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52568" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52755" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52947" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53445" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53846" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "54396" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56953" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57806" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58388" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58766" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59139" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59699" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60425" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60520" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61137" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61594" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61595" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61779" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61892" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61913" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "62705" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "62875" - } + } + ], + "videoOffsetTimeMsec": "20244" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42292" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42299" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42890" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43651" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44170" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44766" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45146" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45469" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45894" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47274" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "48601" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49358" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49652" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50089" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50403" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50715" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50948" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52568" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52755" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52947" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53445" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53846" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "54396" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56953" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57806" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58388" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58766" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59139" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59699" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60425" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60520" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61137" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61594" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61595" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61779" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61892" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61913" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "62705" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "62875" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/head/dp0-5.json b/tests/testdata/extract_duplcheck/head/dp0-5.json index 4374e12..ed80fac 100644 --- a/tests/testdata/extract_duplcheck/head/dp0-5.json +++ b/tests/testdata/extract_duplcheck/head/dp0-5.json @@ -1,1431 +1,1429 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52568" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "52755" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52947" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53445" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53846" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "54396" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56953" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57806" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58388" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58766" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59139" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59699" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60425" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60520" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61137" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61594" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61595" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61779" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61892" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61913" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "62705" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "62875" - } + } + ], + "videoOffsetTimeMsec": "52568" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52755" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52947" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53445" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53846" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "54396" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56953" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57806" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58388" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58766" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59139" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59699" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60425" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60520" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61137" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61594" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61595" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61779" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61892" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61913" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "62705" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "62875" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/overlap/dp0-0.json b/tests/testdata/extract_duplcheck/overlap/dp0-0.json index 2120a99..299e282 100644 --- a/tests/testdata/extract_duplcheck/overlap/dp0-0.json +++ b/tests/testdata/extract_duplcheck/overlap/dp0-0.json @@ -1,6128 +1,6126 @@ { - "response": { "responseContext": { - "webResponseContextExtensionData": "" + "webResponseContextExtensionData": "" }, "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } - } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ + "liveChatContinuation": { + "continuations": [ { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" + } } - ], - "videoOffsetTimeMsec": "0" - } - }, - { - "replayChatItemAction": { - "actions": [ + ], + "actions": [ { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "127" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "0" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "254" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "127" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "381" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "254" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "508" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "381" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "635" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "508" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "762" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "635" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "889" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "762" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1016" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "889" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1143" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1016" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1270" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1143" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1397" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1270" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1524" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1397" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1651" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1524" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1778" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1651" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "1905" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1778" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2032" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "1905" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2159" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2032" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2286" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2159" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2413" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2286" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2540" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2413" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2667" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2540" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2794" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2667" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "2921" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2794" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3048" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "2921" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3175" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3048" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3302" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3175" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3429" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3302" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3556" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3429" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3683" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3556" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3810" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3683" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "3937" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3810" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4064" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "3937" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4191" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4064" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4318" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4191" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4445" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4318" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4572" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4445" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4699" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4572" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4826" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4699" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "4953" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4826" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5080" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "4953" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5207" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5080" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5334" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5207" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5461" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5334" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5588" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5461" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5715" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5588" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5842" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5715" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "5969" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5842" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6096" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "5969" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6223" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6350" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6477" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6604" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6731" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6858" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "6985" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7112" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7239" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6096" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7366" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6223" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7493" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6350" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7620" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6477" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7747" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6604" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7874" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6731" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8001" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6858" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8128" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "6985" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8255" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7112" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8382" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7239" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8509" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7366" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8636" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7493" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8763" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7620" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8890" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7747" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9017" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7874" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9144" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8001" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9271" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8128" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9398" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8255" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9525" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8382" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9652" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8509" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9779" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8636" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9890" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8763" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8890" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9017" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9144" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9271" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10033" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9398" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10160" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9525" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10287" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9652" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10414" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9779" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10541" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9890" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10668" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10033" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10795" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10160" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10922" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10287" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11049" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10414" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11176" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10541" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11303" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10668" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11430" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10795" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11557" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10922" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11684" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11049" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11811" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11176" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11938" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11303" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12065" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11430" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12192" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11557" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12319" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11684" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12446" - } - }, - { - "replayChatItemAction": { - "actions": [ + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11811" + } + }, { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11938" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12065" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12192" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12319" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12446" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12771" + } } - ], - "videoOffsetTimeMsec": "12771" - } - } - ] - } + ] + } } - } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/overlap/dp0-1.json b/tests/testdata/extract_duplcheck/overlap/dp0-1.json index f2cc7af..3b10ae8 100644 --- a/tests/testdata/extract_duplcheck/overlap/dp0-1.json +++ b/tests/testdata/extract_duplcheck/overlap/dp0-1.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9890" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "10008" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10126" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10362" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10480" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10598" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10716" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10834" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10952" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11070" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11188" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11306" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11424" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11542" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11660" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11778" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11896" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12014" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12132" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12250" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12368" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12486" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12604" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12722" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12840" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12958" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13076" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13194" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13312" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13430" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13548" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13666" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13784" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13902" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14020" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14138" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14256" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14374" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14492" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14610" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14728" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14846" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14964" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15082" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15318" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15436" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15554" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15800" - } + } + ], + "videoOffsetTimeMsec": "9890" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10008" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10126" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10244" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10362" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10480" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10598" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10716" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10834" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10952" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11070" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11188" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11306" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11424" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11542" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11660" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11778" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11896" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12014" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12132" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12250" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12368" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12486" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12604" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12722" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12840" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12958" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13076" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13194" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13312" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13430" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13548" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13666" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13784" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13902" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14020" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14138" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14256" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14374" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14492" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14610" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14728" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14846" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14964" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15082" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15318" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15436" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15554" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15800" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/overlap/dp0-2.json b/tests/testdata/extract_duplcheck/overlap/dp0-2.json index 985af47..479672a 100644 --- a/tests/testdata/extract_duplcheck/overlap/dp0-2.json +++ b/tests/testdata/extract_duplcheck/overlap/dp0-2.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "20742" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21240" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21738" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22236" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22734" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23232" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23730" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24228" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24726" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25224" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25722" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26220" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26718" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27216" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27714" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28212" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28710" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "29208" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "29706" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "30204" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "30702" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "31200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "31698" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32196" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32694" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33192" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33690" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34188" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34686" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35184" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35682" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36180" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36678" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37176" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37674" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38172" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38670" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39168" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39666" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40164" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40662" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41160" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41658" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42654" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43152" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43650" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44148" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45146" - } + } + ], + "videoOffsetTimeMsec": "20244" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20742" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21240" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21738" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22236" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22734" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23232" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23730" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24228" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24726" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25224" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25722" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26220" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26718" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27216" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27714" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28212" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28710" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "29208" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "29706" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "30204" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "30702" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "31200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "31698" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32196" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32694" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33192" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33690" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34188" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34686" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35184" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35682" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36180" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36678" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37176" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37674" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38172" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38670" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39168" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39666" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40164" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40662" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41160" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41658" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42654" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43152" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43650" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44148" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45146" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/overlap/dp0-3.json b/tests/testdata/extract_duplcheck/overlap/dp0-3.json index 9cb99b5..451d6b3 100644 --- a/tests/testdata/extract_duplcheck/overlap/dp0-3.json +++ b/tests/testdata/extract_duplcheck/overlap/dp0-3.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32476" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "32836" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33196" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33556" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33916" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34276" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34636" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34996" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35356" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35716" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36076" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36436" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36796" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37516" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37876" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38236" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38596" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38956" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39316" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39676" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40036" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40396" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40756" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41116" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41476" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41836" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42196" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42556" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42916" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43276" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43636" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43996" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44356" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44716" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45076" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45436" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45796" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "46156" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "46516" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "46876" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47236" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47596" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47956" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "48316" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "48676" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49036" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49396" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49756" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50520" - } + } + ], + "videoOffsetTimeMsec": "32476" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32836" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33196" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33556" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33916" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34276" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34636" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34996" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35356" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35716" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36076" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36436" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36796" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37516" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37876" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38236" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38596" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38956" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39316" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39676" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40036" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40396" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40756" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41116" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41476" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41836" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42196" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42556" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42916" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43276" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43636" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43996" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44356" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44716" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45076" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45436" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45796" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "46156" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "46516" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "46876" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47236" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47596" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47956" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "48316" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "48676" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49036" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49396" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49756" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50520" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/overlap/dp0-4.json b/tests/testdata/extract_duplcheck/overlap/dp0-4.json index 851152b..de8127b 100644 --- a/tests/testdata/extract_duplcheck/overlap/dp0-4.json +++ b/tests/testdata/extract_duplcheck/overlap/dp0-4.json @@ -1,2529 +1,2527 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "41380" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "41904" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42428" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "42952" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "43476" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "44524" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45048" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "45572" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "46096" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "46620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47144" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "47668" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "48192" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "48716" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49240" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "49764" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50288" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "50812" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "51336" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "51860" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52384" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52908" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53432" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53956" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "54480" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "55004" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "55528" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56052" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56576" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57624" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58148" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58672" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59196" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59720" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60244" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60768" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61292" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61816" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "62875" - } + } + ], + "videoOffsetTimeMsec": "41380" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "41904" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42428" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "42952" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "43476" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "44524" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45048" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "45572" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "46096" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "46620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47144" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "47668" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "48192" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "48716" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49240" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "49764" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50288" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "50812" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "51336" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "51860" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52384" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "52908" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53432" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53956" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "54480" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "55004" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "55528" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56052" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56576" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57624" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58148" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58672" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59196" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59720" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60244" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60768" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61292" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61816" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "62875" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/extract_duplcheck/overlap/dp0-5.json b/tests/testdata/extract_duplcheck/overlap/dp0-5.json index 7a833b7..1e1d535 100644 --- a/tests/testdata/extract_duplcheck/overlap/dp0-5.json +++ b/tests/testdata/extract_duplcheck/overlap/dp0-5.json @@ -1,1431 +1,1429 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "52568" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "53016" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53464" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "53912" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "54360" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "54808" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "55256" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "55704" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56152" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "56600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57048" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57496" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "57944" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58392" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "58840" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59288" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "59736" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60184" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "60632" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61080" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61528" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "61976" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "62875" - } + } + ], + "videoOffsetTimeMsec": "52568" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53016" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53464" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "53912" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "54360" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "54808" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "55256" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "55704" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56152" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "56600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57048" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57496" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "57944" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58392" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "58840" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59288" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "59736" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60184" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "60632" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61080" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61528" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "61976" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "62875" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/fetch_patch/pt0-0.json b/tests/testdata/fetch_patch/pt0-0.json index 1f9e746..8fef100 100644 --- a/tests/testdata/fetch_patch/pt0-0.json +++ b/tests/testdata/fetch_patch/pt0-0.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "12060" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12120" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12180" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12240" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12300" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12360" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12420" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12480" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12540" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12660" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12720" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12780" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12840" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12900" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12960" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13020" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13080" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13140" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13260" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13320" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13380" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13440" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13560" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13680" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13740" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13860" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13920" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13980" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14040" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14160" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14220" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14280" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14340" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14460" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14520" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14580" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14760" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14820" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14880" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15000" - } + } + ], + "videoOffsetTimeMsec": "12000" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12060" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12120" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12180" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12240" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12300" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12360" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12420" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12480" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12540" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12660" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12720" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12780" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12840" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12900" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12960" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13020" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13080" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13140" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13260" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13320" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13380" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13440" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13500" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13560" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13680" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13740" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13860" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13920" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13980" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14040" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14160" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14220" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14280" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14340" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14460" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14520" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14580" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14760" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14820" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14880" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15000" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/fetch_patch/pt0-1.json b/tests/testdata/fetch_patch/pt0-1.json index 5642fb0..ad90ae4 100644 --- a/tests/testdata/fetch_patch/pt0-1.json +++ b/tests/testdata/fetch_patch/pt0-1.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "7160" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7320" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7480" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "7960" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8120" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8280" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8440" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8760" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "8920" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9080" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9240" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9560" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9720" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "9880" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10040" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10360" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10520" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10680" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "10840" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11160" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11320" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11480" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "11960" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12120" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12280" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12440" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12760" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "12920" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13080" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13240" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13560" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13720" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "13880" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14040" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14360" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14520" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "14680" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "15000" - } + } + ], + "videoOffsetTimeMsec": "7000" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7160" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7320" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7480" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "7960" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8120" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8280" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8440" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8760" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "8920" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9080" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9240" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9560" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9720" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "9880" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10040" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10360" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10520" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10680" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "10840" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11160" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11320" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11480" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "11960" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12120" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12280" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12440" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12760" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "12920" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13080" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13240" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13560" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13720" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "13880" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14040" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14360" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14520" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "14680" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "15000" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/fetch_patch/pt0-3.json b/tests/testdata/fetch_patch/pt0-3.json index 6cd4b0e..dcebd06 100644 --- a/tests/testdata/fetch_patch/pt0-3.json +++ b/tests/testdata/fetch_patch/pt0-3.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "20400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "26800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "27600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "28800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "29200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "29600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "30000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "30400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "30800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "31200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "31600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "35600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "36800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "37600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "38800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "39200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "40000" - } + } + ], + "videoOffsetTimeMsec": "20000" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "26800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "27600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "28800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "29200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "29600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "30000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "30400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "30800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "31200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "31600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "35600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "36800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "37600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "38800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "39200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "40000" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/fetch_patch/pt0-4.json b/tests/testdata/fetch_patch/pt0-4.json index 754d5c1..0e86530 100644 --- a/tests/testdata/fetch_patch/pt0-4.json +++ b/tests/testdata/fetch_patch/pt0-4.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "20100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20300" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "20900" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21300" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "21900" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22300" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "22900" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23300" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "23900" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24000" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24200" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24300" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24600" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "24800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "25000" - } + } + ], + "videoOffsetTimeMsec": "20000" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20300" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20500" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "20900" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21300" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21500" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "21900" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22300" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22500" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "22900" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23300" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23500" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "23900" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24000" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24200" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24300" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24500" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24600" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "24800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "25000" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/fetch_patch/pt0-5.json b/tests/testdata/fetch_patch/pt0-5.json index df326c5..21474dd 100644 --- a/tests/testdata/fetch_patch/pt0-5.json +++ b/tests/testdata/fetch_patch/pt0-5.json @@ -1,3078 +1,3076 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "liveChatReplayContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 10000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "liveChatReplayContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 10000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + "liveChatItemContextMenuEndpoint": { + "params": "___params___" } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32500" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } + }, + "timestampText": { + "simpleText": "0:00" } - }, - "clientId": "dummy_client_id" - } + } + }, + "clientId": "dummy_client_id" } - ], - "videoOffsetTimeMsec": "32530" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32560" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32590" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32620" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32650" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32680" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32710" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32740" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32770" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32800" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32830" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32860" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32890" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32920" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32950" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "32980" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33010" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33040" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33070" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33100" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33130" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33160" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33190" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33220" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33250" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33280" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33310" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33340" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33370" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33400" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33430" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33460" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33490" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33520" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33550" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33580" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33610" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33640" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33670" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33700" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33730" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33760" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33790" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33820" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33850" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33880" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33910" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "33940" - } - }, - { - "replayChatItemAction": { - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "dummy_message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampText": { - "simpleText": "0:00" - } - } - }, - "clientId": "dummy_client_id" - } - } - ], - "videoOffsetTimeMsec": "34000" - } + } + ], + "videoOffsetTimeMsec": "32500" } - ] - } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32530" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32560" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32590" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32620" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32650" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32680" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32710" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32740" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32770" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32800" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32830" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32860" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32890" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32920" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32950" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "32980" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33010" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33040" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33070" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33100" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33130" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33160" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33190" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33220" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33250" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33280" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33310" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33340" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33370" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33400" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33430" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33460" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33490" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33520" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33550" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33580" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33610" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33640" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33670" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33700" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33730" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33760" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33790" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33820" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33850" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33880" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33910" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "33940" + } + }, + { + "replayChatItemAction": { + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "dummy_message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampText": { + "simpleText": "0:00" + } + } + }, + "clientId": "dummy_client_id" + } + } + ], + "videoOffsetTimeMsec": "34000" + } + } + ] } } } \ No newline at end of file diff --git a/tests/testdata/paramgen_firstread.json b/tests/testdata/paramgen_firstread.json index 591c0ae..e0fd83d 100644 --- a/tests/testdata/paramgen_firstread.json +++ b/tests/testdata/paramgen_firstread.json @@ -1 +1,168 @@ -{"endpoint":{"commandMetadata":{"webCommandMetadata":{"url":"/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAmpeOs-PkAjAAOABAAkorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CAmpeOs-PkAliAmpeOs-PkAmgBggEECAEQAIgBAKABgJqXjrPj5AI%253D"}},"urlEndpoint":{"url":"/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAmpeOs-PkAjAAOABAAkorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CAmpeOs-PkAliAmpeOs-PkAmgBggEECAEQAIgBAKABgJqXjrPj5AI%253D"}},"xsrf_token":"QUFFLUhqbUxQV1djRnhRZFhmX1p2WklrX09xS3VFUHZsUXxBQ3Jtc0tuMkZIOUJkMlZubnVYRUlOa0RhYUhpUkpUN213NkJyajA0SGF4NmlKQVlYVkZ4QV85Wlc2MXlWcW1pZnBVcTJZRzgxcGQzTkw2ZEM1cTNUdEZuQlB5ckRfRFdGWkt1M3FGTWlIRFpjQkFuam9oOW44aGc0RXNIMWtyblRxQlhDQVBfVWxYaDVjd3NPRUloZkh3cFNqTXR4ZUxJN2c=","response":{"responseContext":{"serviceTrackingParams":[{"service":"CSI","params":[{"key":"GetLiveChat_rid","value":"0x83eb22f75e077d28"},{"key":"c","value":"WEB"},{"key":"cver","value":"2.20190920.05.01"},{"key":"yt_li","value":"0"}]},{"service":"GFEEDBACK","params":[{"key":"e","value":"23744176,23748146,23788851,23788875,23793834,23804281,23807353,23808952,23828082,23828243,23829333,23832544,23834418,23834656,23835020,23836434,23836965,23837742,23837772,23837993,23838301,23838576,23838576,23838742,23839360,23840216,23841655,23842986,23843288,23843533,23843743,23844780,24630231,9425362,9449243,9466592,9469037,9471235,9474358"},{"key":"logged_in","value":"0"}]},{"service":"GUIDED_HELP","params":[{"key":"logged_in","value":"0"}]},{"service":"ECATCHER","params":[{"key":"client.name","value":"WEB"},{"key":"client.version","value":"2.20190920"},{"key":"innertube.build.changelist","value":"270169303"},{"key":"innertube.build.experiments.source_version","value":"270377311"},{"key":"innertube.build.label","value":"youtube.ytfe.innertube_20190919_5_RC1"},{"key":"innertube.build.timestamp","value":"1568942548"},{"key":"innertube.build.variants.checksum","value":"392d499f55b5e2c240adde58886a8143"},{"key":"innertube.run.job","value":"ytfe-innertube-replica-only.ytfe"}]}],"webResponseContextExtensionData":{"ytConfigData":{"csn":"ld6GXdDdDqeDs8IP54Cz4AY","visitorData":"CgtKUldQeGJJRXhkcyiVvZvsBQ%3D%3D"}}},"continuationContents":{"liveChatContinuation":{"continuations":[{"timedContinuationData":{"timeoutMs":5035,"continuation":"0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%3D"}}],"actions":[{"addChatItemAction":{"item":{"liveChatTextMessageRenderer":{"message":{"runs":[{"text":"伝説を見た!"}]},"authorName":{"simpleText":"2021 2526"},"authorPhoto":{"thumbnails":[{"url":"https://yt3.ggpht.com/-yTRb9pvMpGU/AAAAAAAAAAI/AAAAAAAAAAA/wZTSSVY3evw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg","width":32,"height":32},{"url":"https://yt3.ggpht.com/-yTRb9pvMpGU/AAAAAAAAAAI/AAAAAAAAAAA/wZTSSVY3evw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg","width":64,"height":64}]},"contextMenuEndpoint":{"commandMetadata":{"webCommandMetadata":{"ignoreNavigation":true}},"liveChatItemContextMenuEndpoint":{"params":"Q2owS093b2FRMGxQVlMwME1ubzBMVkZEUmxsdE0yZG5iMlIyZVUxRWIyY1NIVU5KYVhreVpWTjJOQzFSUTBaWE9VTm9VVzlrYUc1clNsVkJMVEV4RUFBYU9Bb05DZ3RyTkV0M1NWZFBTME4yTkNvbkNoaFZRMjlKY1c0eFdqVnBlRU5hZDJNd1JGZEtOM0pMUTJjU0MyczBTM2RKVjA5TFEzWTBJQUlvQVRJYUNoaFZRMDVzUm1KcVlXMU5SV1ZxU21sbVNVWldUMjU2VlZFJTNE"}},"id":"CjsKGkNJT1UtNDJ6NC1RQ0ZZbTNnZ29kdnlNRG9nEh1DSWl5MmVTdjQtUUNGVzlDaFFvZGhua0pVQS0xMQ%3D%3D","timestampUsec":"1569119891540483","authorExternalChannelId":"UCNlFbjamMEejJifIFVOnzUQ","contextMenuAccessibility":{"accessibilityData":{"label":"コメントの操作"}}}},"clientId":"CIiy2eSv4-QCFW9ChQodhnkJUA-11"}},{"addChatItemAction":{"item":{"liveChatTextMessageRenderer":{"message":{"runs":[{"text":"あかん、なんもできん。見たい。"}]},"authorName":{"simpleText":"takarakujihazure"},"authorPhoto":{"thumbnails":[{"url":"https://yt3.ggpht.com/-A7GmQ36IIjI/AAAAAAAAAAI/AAAAAAAAAAA/5NehWDlHx9Q/s32-c-k-no-mo-rj-c0xffffff/photo.jpg","width":32,"height":32},{"url":"https://yt3.ggpht.com/-A7GmQ36IIjI/AAAAAAAAAAI/AAAAAAAAAAA/5NehWDlHx9Q/s64-c-k-no-mo-rj-c0xffffff/photo.jpg","width":64,"height":64}]},"contextMenuEndpoint":{"commandMetadata":{"webCommandMetadata":{"ignoreNavigation":true}},"liveChatItemContextMenuEndpoint":{"params":"Q2p3S09nb2FRMGxmVUc0ME5ubzBMVkZEUmxFMmVXZG5iMlJSWkVWS00xRVNIRU5MUzB0M2NVZG9OQzFSUTBaWk1IUlpRVzlrTWtaalRGQm5NVGNRQUJvNENnMEtDMnMwUzNkSlYwOUxRM1kwS2ljS0dGVkRiMGx4YmpGYU5XbDRRMXAzWXpCRVYwbzNja3REWnhJTGF6UkxkMGxYVDB0RGRqUWdBaWdCTWhvS0dGVkRUa1JOYTNsV2NITkZTVEk0TFU1MmRFTnNhSFJrZHclM0QlM0Q="}},"id":"CjoKGkNJX1BuNDZ6NC1RQ0ZRNnlnZ29kUWRFSjNREhxDS0tLd3FHaDQtUUNGWTB0WUFvZDJGY0xQZzE3","timestampUsec":"1569119892137871","authorExternalChannelId":"UCNDMkyVpsEI28-NvtClhtdw","contextMenuAccessibility":{"accessibilityData":{"label":"コメントの操作"}}}},"clientId":"CKKKwqGh4-QCFY0tYAod2FcLPg17"}}]}}},"csn":"ld6GXdDdDqeDs8IP54Cz4AY","url":"\/live_chat\/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAmpeOs-PkAjAAOABAAkorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CAmpeOs-PkAliAmpeOs-PkAmgBggEECAEQAIgBAKABgJqXjrPj5AI%253D","timing":{"info":{"st":91}}} \ No newline at end of file +{ + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAmpeOs-PkAjAAOABAAkorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CAmpeOs-PkAliAmpeOs-PkAmgBggEECAEQAIgBAKABgJqXjrPj5AI%253D" + } + }, + "urlEndpoint": { + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAmpeOs-PkAjAAOABAAkorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CAmpeOs-PkAliAmpeOs-PkAmgBggEECAEQAIgBAKABgJqXjrPj5AI%253D" + } + }, + "xsrf_token": "QUFFLUhqbUxQV1djRnhRZFhmX1p2WklrX09xS3VFUHZsUXxBQ3Jtc0tuMkZIOUJkMlZubnVYRUlOa0RhYUhpUkpUN213NkJyajA0SGF4NmlKQVlYVkZ4QV85Wlc2MXlWcW1pZnBVcTJZRzgxcGQzTkw2ZEM1cTNUdEZuQlB5ckRfRFdGWkt1M3FGTWlIRFpjQkFuam9oOW44aGc0RXNIMWtyblRxQlhDQVBfVWxYaDVjd3NPRUloZkh3cFNqTXR4ZUxJN2c=", + "responseContext": { + "serviceTrackingParams": [ + { + "service": "CSI", + "params": [ + { "key": "GetLiveChat_rid", "value": "0x83eb22f75e077d28" }, + { "key": "c", "value": "WEB" }, + { "key": "cver", "value": "2.20190920.05.01" }, + { "key": "yt_li", "value": "0" } + ] + }, + { + "service": "GFEEDBACK", + "params": [ + { + "key": "e", + "value": "23744176,23748146,23788851,23788875,23793834,23804281,23807353,23808952,23828082,23828243,23829333,23832544,23834418,23834656,23835020,23836434,23836965,23837742,23837772,23837993,23838301,23838576,23838576,23838742,23839360,23840216,23841655,23842986,23843288,23843533,23843743,23844780,24630231,9425362,9449243,9466592,9469037,9471235,9474358" + }, + { "key": "logged_in", "value": "0" } + ] + }, + { + "service": "GUIDED_HELP", + "params": [{ "key": "logged_in", "value": "0" }] + }, + { + "service": "ECATCHER", + "params": [ + { "key": "client.name", "value": "WEB" }, + { "key": "client.version", "value": "2.20190920" }, + { "key": "innertube.build.changelist", "value": "270169303" }, + { + "key": "innertube.build.experiments.source_version", + "value": "270377311" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_20190919_5_RC1" + }, + { "key": "innertube.build.timestamp", "value": "1568942548" }, + { + "key": "innertube.build.variants.checksum", + "value": "392d499f55b5e2c240adde58886a8143" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] + } + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "ld6GXdDdDqeDs8IP54Cz4AY", + "visitorData": "CgtKUldQeGJJRXhkcyiVvZvsBQ%3D%3D" + } + } + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "timedContinuationData": { + "timeoutMs": 5035, + "continuation": "0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiPz5-Os-PkAjAAOABAAUorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CRwciOs-PkAli3pNq1k-PkAmgBggEECAEQAIgBAKABjbfnjrPj5AI%3D" + } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { "runs": [{ "text": "伝説を見た!" }] }, + "authorName": { "simpleText": "2021 2526" }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-yTRb9pvMpGU/AAAAAAAAAAI/AAAAAAAAAAA/wZTSSVY3evw/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-yTRb9pvMpGU/AAAAAAAAAAI/AAAAAAAAAAA/wZTSSVY3evw/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { "ignoreNavigation": true } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2owS093b2FRMGxQVlMwME1ubzBMVkZEUmxsdE0yZG5iMlIyZVUxRWIyY1NIVU5KYVhreVpWTjJOQzFSUTBaWE9VTm9VVzlrYUc1clNsVkJMVEV4RUFBYU9Bb05DZ3RyTkV0M1NWZFBTME4yTkNvbkNoaFZRMjlKY1c0eFdqVnBlRU5hZDJNd1JGZEtOM0pMUTJjU0MyczBTM2RKVjA5TFEzWTBJQUlvQVRJYUNoaFZRMDVzUm1KcVlXMU5SV1ZxU21sbVNVWldUMjU2VlZFJTNE" + } + }, + "id": "CjsKGkNJT1UtNDJ6NC1RQ0ZZbTNnZ29kdnlNRG9nEh1DSWl5MmVTdjQtUUNGVzlDaFFvZGhua0pVQS0xMQ%3D%3D", + "timestampUsec": "1569119891540483", + "authorExternalChannelId": "UCNlFbjamMEejJifIFVOnzUQ", + "contextMenuAccessibility": { + "accessibilityData": { "label": "コメントの操作" } + } + } + }, + "clientId": "CIiy2eSv4-QCFW9ChQodhnkJUA-11" + } + }, + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [{ "text": "あかん、なんもできん。見たい。" }] + }, + "authorName": { "simpleText": "takarakujihazure" }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/-A7GmQ36IIjI/AAAAAAAAAAI/AAAAAAAAAAA/5NehWDlHx9Q/s32-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/-A7GmQ36IIjI/AAAAAAAAAAI/AAAAAAAAAAA/5NehWDlHx9Q/s64-c-k-no-mo-rj-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { "ignoreNavigation": true } + }, + "liveChatItemContextMenuEndpoint": { + "params": "Q2p3S09nb2FRMGxmVUc0ME5ubzBMVkZEUmxFMmVXZG5iMlJSWkVWS00xRVNIRU5MUzB0M2NVZG9OQzFSUTBaWk1IUlpRVzlrTWtaalRGQm5NVGNRQUJvNENnMEtDMnMwUzNkSlYwOUxRM1kwS2ljS0dGVkRiMGx4YmpGYU5XbDRRMXAzWXpCRVYwbzNja3REWnhJTGF6UkxkMGxYVDB0RGRqUWdBaWdCTWhvS0dGVkRUa1JOYTNsV2NITkZTVEk0TFU1MmRFTnNhSFJrZHclM0QlM0Q=" + } + }, + "id": "CjoKGkNJX1BuNDZ6NC1RQ0ZRNnlnZ29kUWRFSjNREhxDS0tLd3FHaDQtUUNGWTB0WUFvZDJGY0xQZzE3", + "timestampUsec": "1569119892137871", + "authorExternalChannelId": "UCNDMkyVpsEI28-NvtClhtdw", + "contextMenuAccessibility": { + "accessibilityData": { "label": "コメントの操作" } + } + } + }, + "clientId": "CKKKwqGh4-QCFY0tYAod2FcLPg17" + } + } + ] + } + }, + "csn": "ld6GXdDdDqeDs8IP54Cz4AY", + "url": "/live_chat/get_live_chat?continuation=0ofMyAPiARp8Q2c4S0RRb0xhelJMZDBsWFQwdERkalFhUTZxNXdiMEJQUW83YUhSMGNITTZMeTkzZDNjdWVXOTFkSFZpWlM1amIyMHZiR2wyWlY5amFHRjBQM1k5YXpSTGQwbFhUMHREZGpRbWFYTmZjRzl3YjNWMFBURWdBZyUzRCUzRCiAmpeOs-PkAjAAOABAAkorCAAQABgAIAAqDnN0YXRpY2NoZWNrc3VtOgBAAEoCCAFQgJqXjrPj5AJYA1CAmpeOs-PkAliAmpeOs-PkAmgBggEECAEQAIgBAKABgJqXjrPj5AI%253D", + "timing": { "info": { "st": 91 } } +} diff --git a/tests/testdata/speed/speedtest_empty.json b/tests/testdata/speed/speedtest_empty.json index b116a66..2402d7e 100644 --- a/tests/testdata/speed/speedtest_empty.json +++ b/tests/testdata/speed/speedtest_empty.json @@ -5,20 +5,17 @@ } }, "csn": "", - "response": { - "responseContext": { - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [{ + "responseContext": {}, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { "timedContinuationData": { "timeoutMs": 10000, "continuation": "continuation" } - }] - } + } + ] } } } - - diff --git a/tests/testdata/speed/speedtest_normal.json b/tests/testdata/speed/speedtest_normal.json index f2e25a5..4c18125 100644 --- a/tests/testdata/speed/speedtest_normal.json +++ b/tests/testdata/speed/speedtest_normal.json @@ -5,24 +5,23 @@ } }, "csn": "", - "response": { - "responseContext": { - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [{ + "responseContext": {}, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { "timedContinuationData": { "timeoutMs": 10000, "continuation": "continuation" } - }], - "actions": [{ + } + ], + "actions": [ + { "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -31,9 +30,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -42,9 +39,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -53,9 +48,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -64,9 +57,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -75,9 +66,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -86,9 +75,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -97,9 +84,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -108,9 +93,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -119,9 +102,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -130,9 +111,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -141,9 +120,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -152,9 +129,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -163,9 +138,7 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000000000000" - } } } @@ -174,15 +147,12 @@ "addChatItemAction": { "item": { "liveChatTextMessageRenderer": { - "timestampUsec": "1500000030000000" - } } } } - ]} + ] } } } - \ No newline at end of file diff --git a/tests/testdata/speed/speedtest_undefined.json b/tests/testdata/speed/speedtest_undefined.json index de6528d..6068c86 100644 --- a/tests/testdata/speed/speedtest_undefined.json +++ b/tests/testdata/speed/speedtest_undefined.json @@ -5,18 +5,19 @@ } }, "csn": "", - "response": { - "responseContext": { - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [{ + "responseContext": {}, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { "timedContinuationData": { "timeoutMs": 10000, "continuation": "continuation" } - }], - "actions": [{ + } + ], + "actions": [ + { "addChatItemAction": { "liveChatPlaceholderItemRenderer": { "id": "", @@ -28,15 +29,13 @@ "addChatItemAction": { "item": { "liveChatPlaceholderItemRenderer": { - "id": "", + "id": "", "timestampUsec": "1500000030000000" - } } } } - ]} + ] } } } - \ No newline at end of file diff --git a/tests/testdata/test_stream.json b/tests/testdata/test_stream.json index 46f85d6..cfac247 100644 --- a/tests/testdata/test_stream.json +++ b/tests/testdata/test_stream.json @@ -1,509 +1,507 @@ { - "response": { - "responseContext": { - "webResponseContextExtensionData": "" - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [ - { - "invalidationContinuationData": { - "invalidationId": { - "objectSource": 1000, - "objectId": "___objectId___", - "topic": "chat~00000000000~0000000", - "subscribeToGcmTopics": true, - "protoCreationTimestampMs": "1577804400000" - }, - "timeoutMs": 5000, - "continuation": "___continuation___" - } + "responseContext": { + "webResponseContextExtensionData": "" + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { + "invalidationContinuationData": { + "invalidationId": { + "objectSource": 1000, + "objectId": "___objectId___", + "topic": "chat~00000000000~0000000", + "subscribeToGcmTopics": true, + "protoCreationTimestampMs": "1577804400000" + }, + "timeoutMs": 5000, + "continuation": "___continuation___" } - ], - "actions": [ - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "This is normal message." - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "This is normal message." + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } - }, - "clientId": "dummy_client_id" - } - }, - { - "addChatItemAction": { - "item": { - "liveChatTextMessageRenderer": { - "message": { - "runs": [ - { - "text": "This is members's message" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + }, + "clientId": "dummy_client_id" + } + }, + { + "addChatItemAction": { + "item": { + "liveChatTextMessageRenderer": { + "message": { + "runs": [ + { + "text": "This is members's message" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "id": "dummy_id", - "timestampUsec": 0, - "authorBadges": [ + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "id": "dummy_id", + "timestampUsec": 0, + "authorBadges": [ + { + "liveChatAuthorBadgeRenderer": { + "customThumbnail": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/X=s32-c-k" + }, + { + "url": "https://yt3.ggpht.com/X=s32-c-k" + } + ] + }, + "tooltip": "メンバー(2 か月)", + "accessibility": { + "accessibilityData": { + "label": "メンバー(2 か月)" + } + } + } + } + ], + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + } + } + }, + "clientId": "dummy_client_id" + } + }, + { + "addChatItemAction": { + "item": { + "liveChatPlaceholderItemRenderer": { + "id": "dummy_id", + "timestampUsec": 0 + } + }, + "clientId": "dummy_client_id" + } + }, + { + "addLiveChatTickerItemAction": { + "item": { + "liveChatTickerPaidMessageItemRenderer": { + "id": "dummy_id", + "amount": { + "simpleText": "¥10,000" + }, + "amountTextColor": 4294967295, + "startBackgroundColor": 4293271831, + "endBackgroundColor": 4291821568, + "authorPhoto": { + "thumbnails": [ { - "liveChatAuthorBadgeRenderer": { - "customThumbnail": { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "durationSec": 3600, + "showItemEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "showLiveChatItemEndpoint": { + "renderer": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { "thumbnails": [ { - "url": "https://yt3.ggpht.com/X=s32-c-k" + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, { - "url": "https://yt3.ggpht.com/X=s32-c-k" + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 } ] }, - "tooltip": "メンバー(2 か月)", - "accessibility": { + "purchaseAmountText": { + "simpleText": "¥10,000" + }, + "message": { + "runs": [ + { + "text": "This is superchat message." + } + ] + }, + "headerBackgroundColor": 4291821568, + "headerTextColor": 4294967295, + "bodyBackgroundColor": 4293271831, + "bodyTextColor": 4294967295, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3019898879, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "timestampColor": 2164260863, + "contextMenuAccessibility": { "accessibilityData": { - "label": "メンバー(2 か月)" + "label": "コメントの操作" } } } } + } + }, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "fullDurationSec": 3600 + } + }, + "durationSec": "3600" + } + }, + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "¥10,800" + }, + "message": { + "runs": [ + { + "text": "This is superchat message." + } + ] + }, + "headerBackgroundColor": 4291821568, + "headerTextColor": 4294967295, + "bodyBackgroundColor": 4293271831, + "bodyTextColor": 4294967295, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3019898879, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "timestampColor": 2164260863, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + } + } + } + } + }, + { + "addChatItemAction": { + "item": { + "liveChatPaidStickerRenderer": { + "id": "dummy_id", + "contextMenuEndpoint": { + "clickTrackingParams": "___clickTrackingParams___", + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true + } + }, + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" + } + }, + "timestampUsec": 0, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "sticker": { + "thumbnails": [ + { + "url": "//lh3.googleusercontent.com/param_s=s40-rp", + "width": 40, + "height": 40 + }, + { + "url": "//lh3.googleusercontent.com/param_s=s80-rp", + "width": 80, + "height": 80 + } ], - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "contextMenuAccessibility": { + "accessibility": { "accessibilityData": { - "label": "コメントの操作" + "label": "___sticker_label___" } } - } - }, - "clientId": "dummy_client_id" - } - }, - { - "addChatItemAction": { - "item": { - "liveChatPlaceholderItemRenderer": { - "id": "dummy_id", - "timestampUsec": 0 - } - }, - "clientId": "dummy_client_id" - } - }, - { - "addLiveChatTickerItemAction": { - "item": { - "liveChatTickerPaidMessageItemRenderer": { - "id": "dummy_id", - "amount": { - "simpleText": "¥10,000" - }, - "amountTextColor": 4294967295, - "startBackgroundColor": 4293271831, - "endBackgroundColor": 4291821568, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "durationSec": 3600, - "showItemEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "showLiveChatItemEndpoint": { - "renderer": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥10,000" - }, - "message": { - "runs": [ - { - "text": "This is superchat message." - } - ] - }, - "headerBackgroundColor": 4291821568, - "headerTextColor": 4294967295, - "bodyBackgroundColor": 4293271831, - "bodyTextColor": 4294967295, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3019898879, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "timestampColor": 2164260863, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - } - } - } - } - }, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "fullDurationSec": 3600 - } - }, - "durationSec": "3600" - } - }, - { - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "¥10,800" - }, - "message": { - "runs": [ - { - "text": "This is superchat message." - } - ] - }, - "headerBackgroundColor": 4291821568, - "headerTextColor": 4294967295, - "bodyBackgroundColor": 4293271831, - "bodyTextColor": 4294967295, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3019898879, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" - } - }, - "timestampColor": 2164260863, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - } - } + }, + "moneyChipBackgroundColor": 4280191205, + "moneyChipTextColor": 4294967295, + "purchaseAmountText": { + "simpleText": "¥150" + }, + "stickerDisplayWidth": 40, + "stickerDisplayHeight": 40, + "backgroundColor": 4279592384, + "authorNameTextColor": 3019898879, + "trackingParams": "___trackingParams___" } } - }, - { - "addChatItemAction": { - "item": { - "liveChatPaidStickerRenderer": { - "id": "dummy_id", - "contextMenuEndpoint": { - "clickTrackingParams": "___clickTrackingParams___", - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + }, + { + "addLiveChatTickerItemAction": { + "item": { + "liveChatTickerSponsorItemRenderer": { + "id": "dummy_id", + "detailText": { + "runs": [ + { + "text": "メンバー" + } + ] + }, + "detailTextColor": 4294967295, + "startBackgroundColor": 4279213400, + "endBackgroundColor": 4278943811, + "sponsorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "durationSec": 300, + "showItemEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } - }, - "timestampUsec": 0, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "sticker": { - "thumbnails": [ - { - "url": "//lh3.googleusercontent.com/param_s=s40-rp", - "width": 40, - "height": 40 - }, - { - "url": "//lh3.googleusercontent.com/param_s=s80-rp", - "width": 80, - "height": 80 - } - ], - "accessibility": { - "accessibilityData": { - "label": "___sticker_label___" - } - } - }, - "moneyChipBackgroundColor": 4280191205, - "moneyChipTextColor": 4294967295, - "purchaseAmountText": { - "simpleText": "¥150" - }, - "stickerDisplayWidth": 40, - "stickerDisplayHeight": 40, - "backgroundColor": 4279592384, - "authorNameTextColor": 3019898879, - "trackingParams": "___trackingParams___" - } - } - } - }, - { - "addLiveChatTickerItemAction": { - "item": { - "liveChatTickerSponsorItemRenderer": { - "id": "dummy_id", - "detailText": { - "runs": [ - { - "text": "メンバー" - } - ] - }, - "detailTextColor": 4294967295, - "startBackgroundColor": 4279213400, - "endBackgroundColor": 4278943811, - "sponsorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "durationSec": 300, - "showItemEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "showLiveChatItemEndpoint": { - "renderer": { - "liveChatMembershipItemRenderer": { - "id": "dummy_id", - "timestampUsec": 0, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "headerSubtext": { - "runs": [ - { - "text": "メンバーシップ" - }, - { - "text": " へようこそ!" - } - ] - }, - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "authorBadges": [ + "showLiveChatItemEndpoint": { + "renderer": { + "liveChatMembershipItemRenderer": { + "id": "dummy_id", + "timestampUsec": 0, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "headerSubtext": { + "runs": [ { - "liveChatAuthorBadgeRenderer": { - "customThumbnail": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/X=s32-c-k" - }, - { - "url": "https://yt3.ggpht.com/X=s32-c-k" - } - ] - }, - "tooltip": "新規メンバー", - "accessibility": { - "accessibilityData": { - "label": "新規メンバー" + "text": "メンバーシップ" + }, + { + "text": " へようこそ!" + } + ] + }, + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 + }, + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "authorBadges": [ + { + "liveChatAuthorBadgeRenderer": { + "customThumbnail": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/X=s32-c-k" + }, + { + "url": "https://yt3.ggpht.com/X=s32-c-k" } + ] + }, + "tooltip": "新規メンバー", + "accessibility": { + "accessibilityData": { + "label": "新規メンバー" } } } - ], - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } - }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + } + ], + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } } } - }, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "fullDurationSec": 300 - } - }, - "durationSec": "300" - } + } + }, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "fullDurationSec": 300 + } + }, + "durationSec": "300" } - ] - } + } + ] } } -} \ No newline at end of file +} diff --git a/tests/testdata/unregistered_currency.json b/tests/testdata/unregistered_currency.json index 5318c8c..e4f5f38 100644 --- a/tests/testdata/unregistered_currency.json +++ b/tests/testdata/unregistered_currency.json @@ -5,156 +5,182 @@ } }, "csn": "", - "response": { - "responseContext": { - "serviceTrackingParams": [{ + "responseContext": { + "serviceTrackingParams": [ + { "service": "CSI", - "params": [{ - "key": "GetLiveChat_rid", - "value": "" - }, { - "key": "c", - "value": "WEB" - }, { - "key": "cver", - "value": "2.20191219.03.01" - }, { - "key": "yt_li", - "value": "0" - }] - }, { + "params": [ + { + "key": "GetLiveChat_rid", + "value": "" + }, + { + "key": "c", + "value": "WEB" + }, + { + "key": "cver", + "value": "2.20191219.03.01" + }, + { + "key": "yt_li", + "value": "0" + } + ] + }, + { "service": "GFEEDBACK", - "params": [{ - "key": "e", - "value": "" - }, { - "key": "logged_in", - "value": "0" - }] - }, { + "params": [ + { + "key": "e", + "value": "" + }, + { + "key": "logged_in", + "value": "0" + } + ] + }, + { "service": "GUIDED_HELP", - "params": [{ - "key": "logged_in", - "value": "0" - }] - }, { + "params": [ + { + "key": "logged_in", + "value": "0" + } + ] + }, + { "service": "ECATCHER", - "params": [{ - "key": "client.name", - "value": "WEB" - }, { - "key": "client.version", - "value": "2.2" - }, { - "key": "innertube.build.changelist", - "value": "228" - }, { - "key": "innertube.build.experiments.source_version", - "value": "2858" - }, { - "key": "innertube.build.label", - "value": "youtube.ytfe.innertube_" - }, { - "key": "innertube.build.timestamp", - "value": "154" - }, { - "key": "innertube.build.variants.checksum", - "value": "e" - }, { - "key": "innertube.run.job", - "value": "ytfe-innertube-replica-only.ytfe" - }] - }], - "webResponseContextExtensionData": { - "ytConfigData": { - "csn": "ADw", - "visitorData": "%3D%3D" - } + "params": [ + { + "key": "client.name", + "value": "WEB" + }, + { + "key": "client.version", + "value": "2.2" + }, + { + "key": "innertube.build.changelist", + "value": "228" + }, + { + "key": "innertube.build.experiments.source_version", + "value": "2858" + }, + { + "key": "innertube.build.label", + "value": "youtube.ytfe.innertube_" + }, + { + "key": "innertube.build.timestamp", + "value": "154" + }, + { + "key": "innertube.build.variants.checksum", + "value": "e" + }, + { + "key": "innertube.run.job", + "value": "ytfe-innertube-replica-only.ytfe" + } + ] } - }, - "continuationContents": { - "liveChatContinuation": { - "continuations": [{ + ], + "webResponseContextExtensionData": { + "ytConfigData": { + "csn": "ADw", + "visitorData": "%3D%3D" + } + } + }, + "continuationContents": { + "liveChatContinuation": { + "continuations": [ + { "timedContinuationData": { "timeoutMs": 10000, "continuation": "continuation" } - }], - "actions": [{ - "addChatItemAction": { - "item": { - "liveChatPaidMessageRenderer": { - "id": "dummy_id", - "timestampUsec": "1576850000000000", - "authorName": { - "simpleText": "author_name" - }, - "authorPhoto": { - "thumbnails": [ - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 32, - "height": 32 - }, - { - "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", - "width": 64, - "height": 64 - } - ] - }, - "purchaseAmountText": { - "simpleText": "[UNREGISTERD]10,800" - }, - "message": { - "runs": [ - { - "text": "This is unregistered currency." - } - ] - }, - "headerBackgroundColor": 4291821568, - "headerTextColor": 4294967295, - "bodyBackgroundColor": 4293271831, - "bodyTextColor": 4294967295, - "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", - "authorNameTextColor": 3019898879, - "contextMenuEndpoint": { - "commandMetadata": { - "webCommandMetadata": { - "ignoreNavigation": true - } + } + ], + "actions": [ + { + "addChatItemAction": { + "item": { + "liveChatPaidMessageRenderer": { + "id": "dummy_id", + "timestampUsec": "1576850000000000", + "authorName": { + "simpleText": "author_name" + }, + "authorPhoto": { + "thumbnails": [ + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 32, + "height": 32 }, - "liveChatItemContextMenuEndpoint": { - "params": "___params___" + { + "url": "https://yt3.ggpht.com/------------/AAAAAAAAAAA/AAAAAAAAAAA/xxxxxxxxxxxx/s32-x-x-xx-xx-xx-c0xffffff/photo.jpg", + "width": 64, + "height": 64 + } + ] + }, + "purchaseAmountText": { + "simpleText": "[UNREGISTERD]10,800" + }, + "message": { + "runs": [ + { + "text": "This is unregistered currency." + } + ] + }, + "headerBackgroundColor": 4291821568, + "headerTextColor": 4294967295, + "bodyBackgroundColor": 4293271831, + "bodyTextColor": 4294967295, + "authorExternalChannelId": "http://www.youtube.com/channel/author_channel_url", + "authorNameTextColor": 3019898879, + "contextMenuEndpoint": { + "commandMetadata": { + "webCommandMetadata": { + "ignoreNavigation": true } }, - "timestampColor": 2164260863, - "contextMenuAccessibility": { - "accessibilityData": { - "label": "コメントの操作" - } + "liveChatItemContextMenuEndpoint": { + "params": "___params___" + } + }, + "timestampColor": 2164260863, + "contextMenuAccessibility": { + "accessibilityData": { + "label": "コメントの操作" } } - }, "clientId": "00000000000000000000" - } + } + }, + "clientId": "00000000000000000000" } - ]} - }, - - "xsrf_token": "xsrf_token", - "url": "/live_chat/get_live_chat?continuation=0", - "endpoint": { - "commandMetadata": { - "webCommandMetadata": { - "url": "/live_chat/get_live_chat?continuation=0", - "rootVe": 0 } - }, - "urlEndpoint": { - "url": "/live_chat/get_live_chat?continuation=0" + ] + } + }, + + "xsrf_token": "xsrf_token", + "url": "/live_chat/get_live_chat?continuation=0", + "endpoint": { + "commandMetadata": { + "webCommandMetadata": { + "url": "/live_chat/get_live_chat?continuation=0", + "rootVe": 0 } + }, + "urlEndpoint": { + "url": "/live_chat/get_live_chat?continuation=0" } } } - \ No newline at end of file