2 Star 0 Fork 0

mmuee / ofxAE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

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.

空文件

简介

暂无描述 展开 收起
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/y0/ofxAE.git
git@gitee.com:y0/ofxAE.git
y0
ofxAE
ofxAE
master

搜索帮助