1.1.7 • Published 6 years ago

bmjs-fcpxml v1.1.7

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

bmjs-fcpxml

A utility for generating FCP XML files from predefined data. Reads source files from and writes output to directory named "assets".

const fcp = require('bmjs-fcpxml');

Generate XML, audio and upload metadata from a slides object and optional project name:

fcp.init();
let slides = [
  {
    title: 'My video',
    description: 'A test description.',
    category: '22',
    keywords: ['html','css','javascript'],
    privacy: 'public',
    clips: [
      {
        text: 'Some text...',
        audio: '',
        image: '',
        keyword: '',
        template: ''
      },
      {
        text: 'Some more text...',
        audio: '',
        image: {filename: 'sample-img.png'},
        keyword: 'dog',
        template: ''
      },
      {
        text: 'A third line of text.',
        audio: '',
        image: '',
        keyword: '',
        template: ''
      }
    ]
  },
];
fcp.xml(slides,'My Project');
fcp.write();
1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago