This file is indexed.

/usr/share/mlt/qt/producer_qimage.yml is in libmlt-data 0.9.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
schema_version: 0.1
type: producer
identifier: qimage
title: Qt QImage
version: 2
copyright: Visual Media ?
creator: Charles Yates
license: GPLv2
language: en
tags:
  - Video
description: >
    A still graphics to video generator using Qt QImage
notes: >
    QImage has builtin scaling. It will rescale the originally rendered title to
    whatever the consumer requests. Therefore, it will lose its aspect ratio if
    so requested, and it is up to the consumer to request a proper width and
    height that maintains the image aspect.
parameters:
  - identifier: argument
    title: File
    type: string
    description: >
        The name of a graphics file loadable by Qt.

        If "%" in filename, the filename is used with sprintf to generate a
        filename from a counter for multi-file/flipbook animation. The file
        sequence ends when numeric discontinuity exceeds 100.

        If the file sequence does not begin within the count of 100 you
        can pass the begin property like a query string parameter, for
        example: anim-%04d.png?begin=1000.

        If filename contains "/.all.", suffix with an extension to load all
        pictures with matching extension from a directory.

        If filename contains the string "<svg", then qimage tries to load the
        filename as inline SVG XML, which is convenient for melt commands.
    readonly: no
    required: yes
    mutable: no
    widget: fileopen

  - identifier: begin
    title: Begin
    type: integer
    description: When using an image sequence, this sets the starting number.
    readonly: no
    minimum: 0
    mutable: no
    widget: spinner

  - identifier: ttl
    title: Time-to-live
    type: integer
    description: How long (in frames) to repeat each picture in file sequences.
    readonly: no
    default: 25
    minimum: 0
    mutable: yes
    widget: spinner

  - identifier: meta.media.width
    title: Real width
    type: integer
    description: The original, unscaled width of the rendered image.
    readonly: yes

  - identifier: meta.media.height
    title: Real height
    type: integer
    description: The original, unscaled height of the rendered image.
    readonly: yes

  - identifier: width
    title: Width
    type: integer
    description: The last requested scaled image width.
    readonly: yes

  - identifier: height
    title: Height
    type: integer
    description: The last requested scaled image height.
    readonly: yes

  - identifier: force_reload
    type: integer
    description: >
      Reload the file instead of using its cached image. This property
      automatically resets itself once it has been set 1 and processed.
    minimum: 0
    maximum: 1
    mutable: yes

  - identifier: disable_exif
    title: Disable auto-rotation
    type: integer
    minimum: 0
    maximum: 1
    widget: checkbox

  - identifier: force_aspect_ratio
    title: Sample aspect ratio
    type: float
    description: Optionally override a (mis)detected aspect ratio
    mutable: yes