Hi,

I asked this question on stackoverflow a few days ago.  Thought I'd hit up the 
mailing list to see if I might get a bite here:
https://stackoverflow.com/questions/61628423/

=====

Possibly related, but separate question:

Let's say I have a file 'included.mlt':

<producer mlt_service="color" resource="blue" in="0" out="0"/>

If I want to include that file inside another, none of the usual methods seem 
to work:

1) XInclude

<?xml version="1.0" encoding="utf-8"?>
<mlt xmlns:xi="http://www.w3.org/2001/XInclude";>
  <profile width="428" height="240"/>
  <xi:include href="included.mlt"/>
</mlt>

Responds with:
Failed to load "includer.mlt"

2) external general entity

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE mlt SYSTEM "/usr/share/mlt/xml/mlt-xml.dtd" [
<!ENTITY included SYSTEM "included.mlt">
]>
<mlt>
  <profile width="428" height="240"/>
  &included;
</mlt>

Responds with:
[producer_xml] parse fatal: Entity 'included' failed to parse
  row: 7  col: 13
Failed to load "includer.mlt"

Is there any way to do it?

Thanks


_______________________________________________
Mlt-devel mailing list
Mlt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mlt-devel

Reply via email to