mirror of
https://github.com/nostr-protocol/nips.git
synced 2024-12-23 08:55:52 -05:00
1.2 KiB
1.2 KiB
NIP-61
Danmaku
draft
optional
This NIP defines a new kind of event, 2333
, for danmaku.
Format
The format uses a regular event kind 2333
.
The .content
of these events is the content of the danmaku comment.
The list of tags are as follows:
i
(required) universally unique identifier of the video. The format is<platform (lowercase)>:<identity>
where<platform>
is the platform of the video and<identity>
is the unique identifier of the video on that platform. For example, a YouTube video with the identifieraA-jiiepOrE
would have the identifieryoutube:aA-jiiepOrE
.time
(required) the time of the video when the danmaku comment is sent in seconds.duration
(optional) the duration of the danmaku comment shown in seconds.speed
(optional) the speed of the danmaku comment in pixels per second.color
(optional) the color of the danmaku comment in hexadecimal format.
Any other styling tags are allowed. And, client implementations should ignore any tags they do not understand.
{
"id": "<...>",
"pubkey": "<...>",
"kind": 2333,
"tags": [
["i", "youtube:aA-jiiepOrE"],
["time", "3.018597"]
],
"content": "Hello Nostr!",
"sig": "<...>",
"created_at": 1713368851
}