UNPKG

node-red-contrib-dynamorse-file-io

Version:
51 lines (42 loc) 1.5 kB
<!-- Copyright 2018 Streampunk Media Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <script type="text/javascript"> RED.nodes.registerType('mov-out',{ category: 'spout', color: '#D79748', defaults: { name: {value:""} }, inputs:1, outputs:0, align: 'right', icon: "spout.png", label: function() { return this.name || "mov-out"; } }); </script> <script type="text/x-red" data-template-name="mov-out"> <div class="form-row"> <label for="node-input-name"><i class="fa fa-tag"></i> name</label> <input type="text" id="node-input-name" placeholder="Name"> </div> </script> <script type="text/x-red" data-help-name="mov-out"> <h1>MOV file output</h1> <p>Write grains to a MXF file, taking one or more NMOS flow(s) to make an interleaved file.</p> <h3>Maturity</h3> <p>Not implemented - <a href="https://github.com/Streampunk/dynamorse/issues/10">status</a>. </script>