This file is indexed.

/usr/share/mlt/core/filter_crop.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
schema_version: 0.1
type: filter
identifier: crop
title: Crop
version: 1
copyright: Ushodaya Enterprises Limited
creator: Dan Dennedy
license: LGPLv2.1
language: en
description: Remove pixels from the edges of the video.
tags:
  - Video
notes: >
  This filter is meant to be included as a normalizing filter attached
  automatically by the loader so that cropping occurs early in the processing
  stack and can request the full resolution of the source image. Then, a
  second instance of the filter may be applied to set the parameters of the
  crop operation.
parameters:
  - identifier: argument
    title: Active
    description: Whether to do the processing (1) or simply set the parameters.
    type: integer
    minimum: 0
    maximum: 1
    default: 0
  - identifier: left
    title: Left
    type: integer
    minimum: 0
    default: 0
    unit: pixels
  - identifier: right
    title: Right
    type: integer
    minimum: 0
    default: 0
    unit: pixels
  - identifier: top
    title: Top
    type: integer
    minimum: 0
    default: 0
    unit: pixels
  - identifier: bottom
    title: Bottom
    type: integer
    minimum: 0
    default: 0
    unit: pixels
  - identifier: center
    title: Center crop
    description: Whether to automatically crop whatever is needed to fill the output frame and prevent padding.
    type: integer
    minimum: 0
    maximum: 1
    default: 0
    widget: checkbox
  - identifier: center_bias
    title: Center balance
    description: When center crop is enabled, offset the center point.
    type: integer
    minimum: 0
    default: 0
    unit: pixels
  - identifier: use_profile
    title: Use profile resolution
    description: >
      This is useful for proxy editing. Normally all crop values are expressed in terms
      of pixels of the source footage, but this option makes them relative to the
      profile resolution.
    type: integer
    minimum: 0
    maximum: 1
    default: 0
    widget: checkbox