Coder Social home page Coder Social 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

Stargazers

hansi raber avatar Taniharu avatar  avatar Kyosuke Miyamura avatar David Dias avatar Santa avatar czda1100 avatar  avatar  avatar lin avatar moebiusSurfing avatar DcTurner avatar Gustav_Young avatar moxus avatar Mark Grob avatar  avatar Greg Kepler avatar  avatar Shuto avatar  avatar Shunya Hagiwara avatar Baku 麦 avatar Michael Anthony avatar Murasaqi avatar Mike Patrick avatar Eve Weinberg avatar Johan Bichel Lindegaard avatar  avatar Yoshiki Hiraba avatar Takuma Kajikawa avatar Thomas Pachoud avatar James Terry avatar Germán Gómez avatar nodoame avatar  avatar AJW  avatar mori avatar Naoto Hieda avatar banwenxiaoyu avatar Naoto Yoshimoto avatar Reed Tothong avatar John D. Pope avatar dackdel avatar Koki Ibukuro avatar Kato Tetsuro avatar Terry avatar Satoru Higa avatar  avatar Daito Manabe avatar liquid avatar Motoi Shimizu avatar Misaki_Akatsuki avatar Shogo Yano avatar  avatar Atsushi Tadokoro avatar Do avatar

Watchers

Daito Manabe avatar Thomas Pachoud avatar sadmb avatar James Cloos avatar Stephen Detwiler avatar Sheep avatar  avatar  avatar Michael Anthony avatar mori avatar Ovidiu Cincheza avatar Martin Blasko avatar Etern~ avatar Ryan Walker avatar Akihiko SHIRAI, Ph.D avatar AJW  avatar sho7noka avatar halK avatar Taniharu avatar  avatar

ofxae's Issues

バイナリに対応(binary data exporting and loading)

現状のjsonはAEに寄った作りになっているので、読み込み速度向上のためにバイナリへのコンバータとローダーを作成。
AE以外の環境からエクスポートすることを考える際にも楽になるはず。

Making Documents

Wikiで

  • jsonファイルの仕様
  • サポートしている機能/サポート予定の機能
  • AEを再現できない部分
  • 英語/日本語版

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.