Blob: Difference between revisions

From ATProto Wiki
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 13: Line 13:
While stored on an actor's PDS, blobs are typically served to users via specialized protocol-independent [[wikipedia:Content_delivery_network|content delivery networks]]. This separation between storage and distribution allows applications to optimize media delivery, such as creating thumbnails or transcoding videos for different devices.
While stored on an actor's PDS, blobs are typically served to users via specialized protocol-independent [[wikipedia:Content_delivery_network|content delivery networks]]. This separation between storage and distribution allows applications to optimize media delivery, such as creating thumbnails or transcoding videos for different devices.


== Technical Structure ==
Each blob within a PDS includes a [[Content Identifier (CID)]], size information, and a [[wikipedia:Media_type|MIME type]] specification (e.g. <code>image/jpeg</code>, <code>video/mp4</code>). The CID ensures content identity, as any change to the blob would result in a different identifier, making it impossible to tamper with media content without detection.
Each blob within a PDS includes a [[Content Identifier (CID)]], size information, and a [[wikipedia:Media_type|MIME type]] specification (e.g. <code>image/jpeg</code>, <code>video/mp4</code>). The CID ensures content identity, as any change to the blob would result in a different identifier, making it impossible to tamper with media content without detection.
== User Experience ==
From a user perspective, blobs should appear seamlessly integrated into the social experience. For example,, when creating a post in a [[Bluesky]] client, users can select an image or video from their device, see it upload in the background, and post the content with the image attached, without knowledge of the blob's upload to their PDS.


== Content Moderation and Safety ==
== Content Moderation and Safety ==
Line 30: Line 26:


* [https://atproto.com/specs/blob AT Protocol specification: Blobs]
* [https://atproto.com/specs/blob AT Protocol specification: Blobs]
[[Category:Data structures]]

Latest revision as of 01:32, 15 March 2025

A blob in the AT Protocol is an unstructured data object in a binary format, such as an image, video, or audio recording, that is stored within an actor's Personal Data Server (PDS). Blobs enable rich media sharing within the ATmosphere while maintaining the protocol's content-addressed architecture.

Unlike text-based content such as posts, which stored directly in repository records, blobs are handled separately due to their size and binary nature. They are referenced by records using a Content Identifier (CID), a special data type that includes a cryptographic identifier. This allows for efficient storage and distributions of large files and flexible media handling across different applications, while maintaining content verification through cryptographic hashing.

Storage and Distribution[edit | edit source]

Blobs within the AT Protocol are uploaded alongside a record. For example, a user might publish a post with an attached image or video. Blobs follow a specific lifecycle:

  1. Users upload media to their Personal Data Server (PDS) using the com.atproto.repo.uploadBlob endpoint which returns verified metadata
  2. The uploaded blob is referenced in a record (such as a post)
  3. Once referenced, the blob becomes permanently stored until all references to the blob within the actor's data repository are deleted.

While stored on an actor's PDS, blobs are typically served to users via specialized protocol-independent content delivery networks. This separation between storage and distribution allows applications to optimize media delivery, such as creating thumbnails or transcoding videos for different devices.

Each blob within a PDS includes a Content Identifier (CID), size information, and a MIME type specification (e.g. image/jpeg, video/mp4). The CID ensures content identity, as any change to the blob would result in a different identifier, making it impossible to tamper with media content without detection.

Content Moderation and Safety[edit | edit source]

Since blobs can contain any type of content, the AT Protocol implements several safety features for server operators.

  • Servers can enforce size limits and content type restrictions
  • Unused temporary blobs are automatically deleted
  • Content delivery systems can implement security policies to prevent malicious code execution
  • Moderation systems such as Ozone can remove access to problematic media

External links[edit | edit source]