-
Notifications
You must be signed in to change notification settings - Fork 380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MSC3286: Media spoilers #3286
MSC3286: Media spoilers #3286
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# MSC3286: Media spoilers | ||
|
||
[MSC2010](2010-spoilers.md) created ways for clients to tag parts of messages as | ||
spoilers, enabling receiving clients to hide spoilered content unless the user | ||
explicitly chooses to view it. While that proposal only covered textual | ||
spoilers, it is also often desirable to be able to mark images, videos, and | ||
other media as spoilers, since many clients automatically display previews for | ||
media that recipients might not want to see. | ||
|
||
As with textual spoilers, there are a variety of reasons that one might want to | ||
mark media as a spoiler, for example if it would spoil a story, or if some | ||
recipients might find the content objectionable or disturbing. By marking such | ||
media as a spoiler, clients can then take measures to require consent from the | ||
user before displaying the content. | ||
|
||
## Proposal | ||
|
||
To support this, an optional `spoiler` property of type `string` is added to the | ||
`info` dictionaries of `m.image`, `m.video`, `m.audio`, and `m.file` messages. | ||
When present, it indicates that the given media has been tagged as a spoiler. | ||
|
||
The value of `spoiler` represents a placeholder text that clients may display as | ||
the reason for the spoiler. Providing a reason is optional, and one may indicate | ||
the absence of a reason by setting `spoiler` to an empty string. | ||
|
||
### Examples | ||
|
||
Message content for an image with a spoiler reason: | ||
|
||
```json | ||
{ | ||
"body": "screenshot.png", | ||
"info": { | ||
"mimetype": "image/png", | ||
"size": 123456, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be nice to require or at least suggest, that clients should send a blurhash for spoilers (of image like files), that the client can display in place of the actual image. Might make not much sense to include in the MSC, since #2448 is still an MSC too, but it would probably make the spoiler experience much nicer! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are plenty of ways clients might render spoilers without using blurhashes, so I don't think it makes sense to require them. Plus, if a client can render blurhashes and wants to use them for media spoilers, it's very likely to already have a local blurhash encoding implementation that it can use anyways, so I think blurhashes deserve a tangential mention here at most. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be nice to be able to always show a blurhash, but I guess you can't anyway, so alright, makes sense! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
While there are other ways I think a blurhash would be save more resources here. So the Client doesnt need to download the thumbnail files until a User interaction happened. |
||
"spoiler": "Contains spoilers for chapter 6" | ||
}, | ||
"msgtype": "m.image", | ||
"url": "mxc://example.org/abcdef" | ||
} | ||
``` | ||
|
||
Message content for a video without a spoiler reason: | ||
|
||
```json | ||
{ | ||
"body": "recording.mp4", | ||
"info": { | ||
"mimetype": "video/mp4", | ||
"size": 123456, | ||
"spoiler": "" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have you thought of doing There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I prefer this method.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doesn't Maybe a better schema is making this an object with a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Sorry, you're right.
I think that is what I really had in mind, so I would agree. In short, empty string feels like a hack when we could use proper structured data, even if the only way to use it remains the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #3725 does pretty much this :) |
||
}, | ||
"msgtype": "m.video", | ||
"url": "mxc://example.org/abcdef" | ||
} | ||
``` | ||
|
||
## Potential issues | ||
|
||
None that the author is aware of. | ||
|
||
## Alternatives | ||
|
||
An alternative solution, which some people currently use, is to embed images | ||
inline in `m.text` messages, and then tag it using the existing mechanism for | ||
textual spoilers. However, this is a rather hacky workaround, as it does not | ||
support other types of media, nor does it support encryption. It also loses the | ||
semantics of standalone `m.image` messages, which makes it difficult for clients | ||
to render image spoilers differently from regular textual spoilers. | ||
|
||
## Security considerations | ||
|
||
None that the author is aware of. | ||
|
||
## Unstable prefix | ||
|
||
Clients wishing to experimentally implement this proposal may do so by replacing | ||
the `spoiler` key in `m.image`, `m.video`, `m.audio`, and `m.file` messages with | ||
`town.robin.msc3286.spoiler`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually feel like this could be made a lot more generic. There are various reasons why one may choose to hide something by default including: spoilers, nsfw content, graphic content or medical reasons (like epilepsy). For the most part, the client wouldn't need to tell a difference, but in some cases (like NSFW), it would be useful for the client to know as it could then have a global setting to permanently hide such posts. The lack of this has also been the reason for implementing a basic description-based filtering in Element Android, but that could be replaced with this.
I would suggest
spoiler
be replaced with something likehidden
orhidden_by_default
with the subkeysreason
anddescription
, the former being machine-readable (m.nsfw
,m.spoiler
,m.graphic
,m.medical
for instance) and latter, human-readable written by the sender (like,can cause epileptic seisures
).If this is too generic or out-of-scope for this MSC, let me know, but I figured it wouldn't hurt to suggest.