https://github.com/moebiussurfing/ofxsurfingfx
Helper add-on with a curated list of FX add-ons bundled into a three parallel video channels processor with GUI and presets management.
https://github.com/moebiussurfing/ofxsurfingfx
openframeworks openframeworks-addon
Last synced: 10 months ago
JSON representation
Helper add-on with a curated list of FX add-ons bundled into a three parallel video channels processor with GUI and presets management.
- Host: GitHub
- URL: https://github.com/moebiussurfing/ofxsurfingfx
- Owner: moebiussurfing
- License: mit
- Created: 2021-02-08T00:27:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-10T10:17:29.000Z (almost 5 years ago)
- Last Synced: 2025-02-07T16:19:51.803Z (over 1 year ago)
- Topics: openframeworks, openframeworks-addon
- Language: C++
- Homepage:
- Size: 42.3 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ofxSurfingFX
## Overview
Helper addon for **openFrameworks** to simplify the integration of some curated **OF Fx addons**:
**Glitches/Post/Fx/Color** into your projects. GUI, workflow, and settings manager to be used *Out-Of-The-Box*.
Bundled add-ons:
ofxKsmrFragmentFx, ofxPostGlitch, ofxPostProcessing and ofxWTBSPostGlitch. (CoreFx)
ofxChannelFx, ofxGpuLutCube and ofxShaderGlitch. (ExtraFX)
## GIF/Video

https://imgur.com/a/xKZns9N
## Screenshots
**2_example-ExtraFX**

**2_example-ExtraFX**

**Full controls list**

## Features
* **Three independent channels** with (fixed chain positions) effects:
* One-Channel Mode. (All 3CH Fx chained).
* Dual input channels + Output mixer (Should use your own video/layers-mixer).
* Nice **GUI** with enablers and tweakers.
* **Settings handler** to auto Store/Recall.
* **Key Commands** controller for a selected Fx.
* **ofxPresetsManager** compatible.
## Usage
### ofApp.h
```c++
#include "ofxSurfingFX.h"
ofxSurfingFX processor;
```
### ofApp.cpp
```c++
// setup()
// only one input channel, and all the Fx-Channels routed chained
processor.setModeOneChain(true);
processor.setup();
// update()
processor.begin();
/* draw-your-scene */
processor.end();
// draw()
processor.drawOutput();
processor.drawGui();
```
## Examples
- **1_example-Basic**: One chained channel with **Core Fx**.
- **2_example-ExtraFX**: One chained channel with **Extra Fx**.
- **3_example-Presets**: Integration with **ofxPresetsManager**.
- **4_example-NDI**: *WIP* example to process **webcam/NDI Input** and **NDI Out**.
## Dependencies
- ofxGui
- [ofxGuiExtended2](https://github.com/moebiussurfing/ofxGuiExtended2) ( fork )
- [ofxSurfingHelpers](https://github.com/moebiussurfing/ofxSurfingHelpers)
- [ofxSceneTEST](https://github.com/moebiussurfing/ofxSceneTEST) ( *For the examples scenes only* )
- [ofxPresetsManager](https://github.com/moebiussurfing/ofxPresetsManager) ( *For the 3_example-Presets only* )
* **Core-Bundled Fx Addons**. Already included into **OF/addons/OF_ADDON/libs**
(No need to download or add manually)
* [ofxKsmrFragmentFx](https://github.com/loveandsheep/ofxKsmrFragmentFx)
* [ofxPostGlitch](https://github.com/maxillacult/ofxPostGlitch)
* [ofxPostProcessing](https://github.com/neilmendoza/ofxPostProcessing)
* [ofxWTBSPostGlitch](https://github.com/watab0shi/ofxWTBSPostGlitch)
* **ExtraFX**. Requires to uncomment the line ```#define USE_Extra_ADDONS``` into ```ofxSurfingFX.h```
(You need to download and add them manually)
* [ofxChannelFx](https://github.com/moebiussurfing/ofxChannelFx)
* [ofxGpuLutCube](https://github.com/moebiussurfing/ofxGpuLutCube)
* [ofxShaderGlitch](https://github.com/moebiussurfing/ofxShaderGlitch) ( fork )
## TODO
- Integration with a video/layer mixer. **NEW add-on will be released soon!**
- Improve **ofxPresetsManager** performance. Too many **ofParameters** slowdowns performance.
- Add **MIDI** and **OSC** remote control.
## Tested Systems
- **Windows10** / **VS2017** / **OF ~0.11**
## Author
Addon by **@moebiusSurfing**
*(ManuMolina). 2020.*
**_Thanks to the developers of the included add-ons!_**
**_@loveandsheep, @maxillacult, @neilmendoza, @watab0shi, @pierrextardif & @frauzufall._**
## License
*MIT License.*
**_PLEASE FEEL FREE TO ADD/ASK FOR MODIFICATIONS OR FEATURES, AND TO SEND ME PULL REQUESTS OR ISSUES!_**