Adding image preview for files

Lets say I’m adding audio / video file to page. And I want to add image file (thumbnail) for this audio / video file. Is it possible to achieve that? Right now I can only add descriptions / texts to file. But I need to add (via add or drag n drop) image preview file.

For example, in my blueprint template I have:

files:
  sortable: true
  fields:
    text:
      label: someLabel
      type:  text
  files:
    sortable: true
    fields:
      text: 
        label: otherLabel
        type: text

(this way its not working … (I call it Inception - dream inside dream :slight_smile: )

So when opening file view I want to add another file (image as preview for that file).

p.s. right now I’m using hack - adding filename in file description and later (as icon for file) loading it from predefined location…

You can add an image field in the meta file:

files:
  sortable: true
  fields:
    text:
      label: someLabel
      type:  text
    thumbnail:
      label: thumbnail
      type: image  

You can’t drag and drop, but since the image field is a select field as well…