aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2018-04-17 17:49:08 +0200
committerLorenz Diener <[email protected]>2018-04-17 17:49:08 +0200
commit5f44998dd201beb871f06c0813b3dc69d387f7da (patch)
treef1f87cc7d136986e44ce812c38522a61b3375828 /docs
parent78d3b3a5dff7fb465a21fbade09e972e9d8f0fbf (diff)
downloadmastodon.py-5f44998dd201beb871f06c0813b3dc69d387f7da.tar.gz
First steps to 2.3.0 support
Diffstat (limited to 'docs')
-rw-r--r--docs/index.rst17
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/index.rst b/docs/index.rst
index eebe893..436d7cc 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -385,10 +385,13 @@ Media dicts
385 'preview_url': # The URL for the media preview 385 'preview_url': # The URL for the media preview
386 'text_url': # The display text for the media (what shows up in toots) 386 'text_url': # The display text for the media (what shows up in toots)
387 'meta': # Dictionary of two image metadata dicts (see below), 387 'meta': # Dictionary of two image metadata dicts (see below),
388 # 'original' and 'small' (preview) 388 # 'original' and 'small' (preview). Either may be empty.
389 # May additionally contain an "fps" field giving a videos frames per second (possibly
390 # rounded), and a "length" field giving a videos length in a human-readable format.
391 # Note that a video may have an image as preview.
389 } 392 }
390 393
391 # Metadata dicts: 394 # Metadata dicts (image) - all fields are optional:
392 { 395 {
393 'width': # Width of the image in pixels 396 'width': # Width of the image in pixels
394 'height': # Height of the image in pixels 397 'height': # Height of the image in pixels
@@ -396,6 +399,14 @@ Media dicts
396 'size': # Textual representation of the image size in pixels, e.g. '800x600' 399 'size': # Textual representation of the image size in pixels, e.g. '800x600'
397 } 400 }
398 401
402 # Metadata dicts (video, gifv) - all fields are optional:
403 {
404 'width': # Width of the video in pixels
405 'heigh': # Height of the video in pixels
406 'frame_rate': # Exact frame rate of the video in frames per second
407 'duration': # Duration of the video in seconds
408 'bitrate': # Average bit-rate of the video in bytes per second
409 }
399Card dicts 410Card dicts
400~~~~~~~~~~ 411~~~~~~~~~~
401.. _card dict: 412.. _card dict:
@@ -452,6 +463,8 @@ Instance dicts
452 'version': # The instances mastodon version 463 'version': # The instances mastodon version
453 'urls': # Additional URLs dict, presently only 'streaming_api' with the 464 'urls': # Additional URLs dict, presently only 'streaming_api' with the
454 # stream websocket address. 465 # stream websocket address.
466 'contact_account': # Account dict of the primary contact for the instance.
467 'languages': # Array of ISO 6391 language codes the instance has chosen to advertise.
455 } 468 }
456 469
457Activity dicts 470Activity dicts
Powered by cgit v1.2.3 (git 2.41.0)