GithubHelp home page GithubHelp logo

vjeux / video-editor Goto Github PK

View Code? Open in Web Editor NEW
142.0 14.0 8.0 595 KB

Created with CodeSandbox

Home Page: https://codesandbox.io/s/github/vjeux/video-editor

License: MIT License

HTML 1.19% JavaScript 97.97% CSS 0.83%

video-editor's Introduction

video-editor

Created with CodeSandbox

video-editor's People

Contributors

fausto95 avatar vjeux avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

video-editor's Issues

Use excalidraw for overlay

Instead of reinventing the wheel for text/image/rect overlay, embed excalidraw! The way to write video files is to take a canvas a source, so we can use excalidraw renderer for it.

Timeline scripting

I'd love to be able to edit the timeline via code. For example for my shitfest compilation video, I had a txt file with all the titles I wanted to put. But I had to painstakingly copy paste all the annotations and edit them one by one.

Instead, if I could do a script like:

const firstOverlay = timeline.find(e => e.type == 'overlay');
let i = 0;
const dates = ['February 12 2022', 'April 12 2022', /* ... */];
timeline.filter(e => e.type == 'video').forEach(e => {
  if (i++ === 0) { return; }
  const newOverlay = firstOverlay.clone();
  newOverlay.start = e.start;
  newOverlay.elements[0].value = e.fileName.capitalizeFirst().replace('.mov', '') + '\n' + dates[i];
  timeline.push(newOverlay);
});

that would make my life muuuch easier.

Annotation importer

There's a lot of useful annotations that we could be using to speed up video editing:

  • LiveSplits
  • Twitch comments
  • In-game data such as changed map, hit a checkpoint...
  • file name of the video

I want to find a way to display those annotations somehow in the timeline where you are editing.

Automatic tuning of color grading

Automatic tuning of color grading. Have one color grading done manually and then find a way to apply the same kind for each of the other shots in the movie.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.