kaspiana / mage

A command-line tool for cataloguing images (particularly digital art), styled after Git.
0 stars 0 forks source link

Document media metadata #60

Closed kaspiana closed 2 months ago

kaspiana commented 2 months ago

Mage can now determine the type of media represented by a file and store metadata related to its content. This metadata is stored in tables correlated with the document table, and discriminated by the new single-char media_type column.

The media types at present are:

Example

document [...]
  Archive ID: /19
  File name: [...]
  File extension: gif
  File size: 1 MB
  Added at: 5/24/2024 3:07:25 PM
  Updated at: 5/24/2024 3:07:25 PM
  Media type: animation
    Animation dimension: 811x1014
    Animation duration: 750 ms
  Deleted: no
  Comment: <none>
  Tags: <none>
  Sources: <none>

Resolves #48