]> git.sesse.net Git - mlt/blob - src/modules/core/consumer_multi.yml
Remove unused string.h include
[mlt] / src / modules / core / consumer_multi.yml
1 schema_version: 0.1
2 type: consumer
3 identifier: multi
4 title: Multiple outputs
5 version: 1
6 copyright: Copyright (C) 2011 Ushodaya Enterprises Limited
7 license: LGPL
8 language: en
9 creator: Dan Dennedy
10 tags:
11   - Audio
12   - Video
13 description: Use multiple consumers with the same producer.
14 notes: |
15   There are a few ways of defining each of the outputs and their properties.
16   One form is a flat set of properties on this consumer that follows the pattern:
17   <N>=<service> [<N>.<property>=<value>]*
18   For example, 0=sdl 0.rescale=bilinear 1=avformat 1.target=foo.dv ...
19   To change the profile for a particular output set the property "mlt_profile."
20   You can put these into a MLT properties file and supply that to this consumer.
21
22   Another way is to create a separate properties list for each output and set
23   that on the consumer with a numeric name starting with zero:
24   <N>=<mlt_properties object> ...
25   In this format, to specify the service, use the property name "mlt_service"
26   and, again, to specify the profile, use "mlt_profile."
27   You can put these into a YAML Tiny file and supply that to this consumer.
28   This is also the recommended way for applications to interact with this
29   consumer, which is how melt and the XML producer support multiple consumers.
30
31 parameters:
32   - identifier: argument
33     title: File
34     type: string
35     description: >
36       A properties or YAML file specifying multiple consumers and their properties.
37     required: no