Git Product home page Git Product logo

ofxae's Introduction

ofxAE

by nariakiiwatani

Abstract

This is a project to make an addon for porting Adobe AfterEffects' composition to openFrameworks realtime animation. Currently so buggy, So I need community help. :)

Depends on...

Usage...

Export composition data from AfterEffects

  1. Select composition(s) in project pane.
  2. execute tool/compExport.jsx (File-->Script-->Execute) and choose a folder to export data.

Load and play on OF

ofApp.h

ofxAE::Loader loader_;
ofxAE::Composition *composition_;

ofApp.cpp

void ofApp::setup(){
	loader_.setBasePath("exported_folder");	// if needed
	composition_ = loader_.loadComposition("foo.json");	// this will load from "bin/data/exported_folder/foo.json"
	composition_->setLoopState(FrameCounter::LOOP_ONEWAY);	// if needed
}

//--------------------------------------------------------------
void ofApp::update(){
	composition_->update();
}

//--------------------------------------------------------------
void ofApp::draw(){
	ofBackground(0);
	composition_->draw();
}

The goal is...

  1. Drive all features in AE on OF. But of course it's impossible because AE is not for realtime animations. So I want the exporter to be able to select enable/disable with some features.

  2. Provide interfaces to operate animations interactively. This is why I decide to make this addon. change image sources, motion loop, add realtime effects,,,

  3. Write exporters for various animation softwares. Though this addon is named AE, AE is not only way to make animations. Other softwares will also work if it can export a json file in same format. So it's important to keep independence between AE and OF.

ofxae's People

Contributors

nariakiiwatani avatar

Watchers

James Cloos avatar

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.