A GUI to help create timelapse videos from a selection of images.
npm install react-timelapse-tool


This is a frontend tool only.
FFMPEG is A complete, cross-platform solution to record, convert and stream audio and video.
This tool can create such videos but is server side command line tool. You can fire such a command by calling a url to a server which can fire this command.
##### Further FFMPEG Reading
FFMPEG Docs
``bash`
npm install --save react-timelapse-tool
jsx
import React, { Component } from 'react'
import TimelapseTool from 'react-timelapse-tool'class App extends Component {
config = {
fpsSlider: {
min: 0,
max: 100
},
carousel: {
settings: {
dots: true,
infinite: true,
speed: 500,
slidesToShow: 8,
slidesToScroll: 1
},
tiles: [
{
id: '1',
src: '/image1.jpg',
name: 'image01.0'
},
{
id: '2',
src: '/image2.jpg',
name: 'image01.1'
}
]
}
}
render () {
return (
console.log('Create Video')} onSave={() => console.log('Save Video')} />
)
}
}
``* config
* carousel
* id
* src
* name
* onCreate
* onSave
MIT © richardskinner