Tree @fb13650 (Download .tar.gz)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | ___________ ._________ \_ _____/______ ____ |__\ _ \_______ | __) \_ __ \_/ __ \| / /_\ \_ __ \ | \ | | \/\ ___/| \ \_/ \ | \/ \___ / |__| \___ >__|\_____ /__| \/ \/ \/ Minimalistic plugin API for video effects v.1.3 http://frei0r.dyne.org by the Piksel Developers Union Table of Contents ================= Introduction What Frei0r is What Frei0r is not Current status Code gallery History Download Source code Build dependencies Debian / Ubuntu Apple / OSX Documentation API explanation C++ Filter example Communication Acknowledgments Introduction ~~~~~~~~~~~~~ What Frei0r is =============== Frei0r is a minimalistic plugin API for video effects. The main emphasis is on simplicity for an API that will round up the most common video effects into simple filters, sources and mixers that can be controlled by parameters. It's our hope that this way these simple effects can be shared between many applications, avoiding their reimplementation by different projects. What Frei0r is not =================== Frei0r is not meant as a competing standard to more ambitious efforts that try to satisfy the needs of many different applications and more complex effects. It is not meant as a generic API for all kinds of video applications, as it doesn't provides things like an extensive parameter mechanism or event handling. Eventually the frei0r API can be wrapped by higher level APIs expanding its functionalities (for instance as GStreamer, MLT, FFmpeg and others do). Current status =============== If you like to peek in what's boiling in the pot, have a look at our TODO Developers are sporadically contributing and we are happy if more people like to get involved, so let us know about your creations! Code and patches are well accepted, get in touch with us on the mailinglist. Code gallery ============= You might want to look at the code in frei0r more in detail, then browse the existing effects by visiting the Frei0r plugin gallery online. History ======== Frei0r has been around since 2004, born from yearly brainstormings held at the Piksel conference with the participation of various free and open source video software developers. It is mostly adopted on GNU/Linux and OSX platforms, counts more than 80 effects implemented and is used by free video applications as PureData, Open Movie Editor, DVEdit, Gephex, LiVES, FreeJ, MøB, VeeJay, MLT and KDEnLive among the others. Wikipedia page about Frei0r: http://en.wikipedia.org/wiki/Frei0r [Piksel]: http://www.piksel.no [PureData]: http://www.artefacte.org/pd/ [Open Movie Editor]: http://openmovieeditor.sourceforge.net/ [DVEdit]: http://www.freenet.org.nz/dvedit [Gephex]: http://www.gephex.org/ [LiVES]: http://lives.sf.net [FreeJ]: http://freej.dyne.org [MøB]: http://mob.bek.no/ [VeeJay]: http://veejayhq.net [MLT]: http://www.mltframework.org/ [KDEnLive]: http://www.kdenlive.org/ Download ~~~~~~~~~ Source code ============ Stable frei0r releases are packaged periodically and distributed on ftp://ftp.dyne.org/frei0r We encourage the unauthorized mirroring of this source repository by all those interested, using the command rsync -Pr rsync.dyne.org::frei0r . Frei0r sourcecode is released under the terms of the GNU General Public License and, eventually other compatible Free Software licenses. The latest source for frei0r plugins can be attained using our revisioning system *GIT* git clone git://code.dyne.org/frei0r.git Some clones made by developers are also found on github, but basically we coalesce around this repository online to pack releases. Make sure to get in touch with our mailinglist if you like to see your code in there. Build dependencies ------------------- + GNU autotools ( ./configure && make ) or + CMake ( cmake . && make ) Frei0r can be built on GNU/Linux, M$/Windows and Apple/OSX platforms, possibly in even more environments like embedded devices/ * Optional Dependencies + [Gavl] ( required for scale0tilt and vectorscope filters ) [Gavl]: http://gmerlin.sourceforge.net + [OpenCV] (required for facebl0r filter ) [OpenCV]: http://opencvlibrary.sourceforge.net Debian / Ubuntu ================ Binary packages are mantained for Debian ([QA]) and Ubuntu ([pkg]), to install the stable version distributed use *apt-get* or *synaptic*: sudo apt-get install frei0r-plugins [QA]: http://packages.qa.debian.org/f/frei0r.html [pkg]: http://packages.ubuntu.com/search?searchon=names&keywords=frei0r Apple / OSX ============ [MacPorts] provide ready to install packages for OSX: in case you have this packaging system installed, you just need to open a terminal and give the following command: sudo port install frei0r-plugins [MacPorts]: http://www.macports.org Documentation ~~~~~~~~~~~~~~ If you are new to frei0r (but not to programming) the best thing is probably to have a look at the [frei0r header], which is quite simple and well documented, or the doxygen code documentation in doc/ API explanation ================ While the main source of documentation for the Frei0r API is the header, the sourcecode is well commented so you can study its full [doxyfied documentation] online. [doxyfied documentation]: http://frei0r.dyne.org/codedoc/html C++ Filter example =================== A simple skeleton for a frei0r video filter looks like this: #include <frei0r.hpp> typedef struct { int16_t w, h; uint8_t bpp; uint32_t size; } ScreenGeometry; class MyExample: public frei0r::filter { public: MyExample(int wdt, int hgt); ~MyExample(); virtual void update(); private: ScreenGeometry geo; void _init(int wdt, int hgt); } MyExample::MyExample() { /* constructor */ } MyExample::~MyExample() { /* destructor */ } void MyExample::_init(int wdt, int hgt) { geo.w = wdt; geo.h = hgt; geo.bpp = 32; // this filter works only in RGBA 32bit geo.size = geo.w*geo.h*(geo.bpp/8); // calculate the size in bytes } void MyExample::update() { // we get video input via buffer pointer (void*)in uint32_t *src = (uint32_t*)in; // and we give video output via buffer pointer (void*)out uint32_t *dst = (uint32_t*)out; // this example here does just a copy of input to output memcpy(dst, src, geo.size); } frei0r::construct<MyExample> plugin("MyExample", "short and simple description for my example", "Who did it", 1, 0); Communication ~~~~~~~~~~~~~~ You can get in touch with our developer community, send your new effects and share your intentions with us. We have a free mailinglist open to subscription on [frei0r-devel] with [public archives] that are also [searchable and indexed] online. For effective and indexed bug reporting regarding plugin implementations and platform builds, here is a publicly available [issue tracker]. [frei0r-devel]: https://piksel.no/mailman/listinfo/frei0r-devel [public archives]: http://piksel.no/pipermail/frei0r-devel/ [searchable and indexed]: http://blog.gmane.org/gmane.comp.video.frei0r.devel [issue tracker]: http://www.piksel.no/projects/frei0r/report Acknowledgments ~~~~~~~~~~~~~~~~ Frei0r is the result of a collective effort in coordination with several software developers meeting at [Piksel] between 2003 and 2005 to find a common standard for video effect plugins to be used among their applications: Andraz Tori (Cinelerra/CVS), Daniel Fischer (Pakt/GStreamet), Denis Jaromil Rojo (FreeJ/Dyne), Gabriel "Salsaman" Finch (LiVES), Kentaro Fukuchi (EffecTV), Niels Elburg (VeeJay), Øyvind Kolås (Gegl/Babl/Gimp), Tom Schouten (PDP/PureData), Georg Seidel, Martin Bayer and Phillip Promesberger (Gephex). We first aimed at the realisation of a comprehensive specification for dynamically loaded plugins named LiViDO, which then spawned two implementations: one being Frei0r, a minimalistic implementation contributed by the Gephex team and the other one being the WEED implementation by LiVES developer Salsaman, sporting more features for GUI integration and scriptability. Within the span of a few years, the minimalistic approach of *frei0r* has been widely adopted among more applications and became a *de-facto standard*. Maintenance and further refinements were contributed by Carlo Prelz (MøB/BEK), Richard Spindler (Open Movie Editor) and Dan Dennedy (MLT/KDEnLive), while Debian/Ubuntu packaging and build system standardization were taken care of by dyne.org developers Filippo Giunchedi and Luca Bigliardi. --------------------------------------------------------------------- |
Commit History @fb1365076eaa950ce37b8c05458ca70aebdfb883
0
»»
- Soft-include CDBS upstream-tarball.mk snippet, providing a get-orig-source target. Jonas Smedegaard 13 years ago
- Shorten Vcs-Git control field. Jonas Smedegaard 13 years ago
- Drop obsolete DM-Upload-Allowed control field. Jonas Smedegaard 13 years ago
- Friendly takeover: Update Maintainer, Uploader and Vcs-* control fields. Thanks for your past contributions, Luca Bigliardi. Jonas Smedegaard 13 years ago
- Add git-buildpackage config, enabling signed tags and pristine-tar (replacing earlier odd config outside debian dir). Jonas Smedegaard 13 years ago
- Imported Debian patch 1.1.22git20091109-1.2 Neil Williams (commit: Jonas Smedegaard) 13 years ago
- Imported Debian patch 1.1.22git20091109-1.1 Moritz Muehlenhoff (commit: Jonas Smedegaard) 14 years ago
- Imported Debian patch 1.1.22git20091109-1 Luca Bigliardi (commit: Jonas Smedegaard) 14 years ago
- Imported Upstream version 1.1.22git20091109 Jonas Smedegaard 14 years ago
- Imported Debian patch 1.1.22git20090409-2 Luca Bigliardi (commit: Jonas Smedegaard) 14 years ago
- Imported Debian patch 1.1.22git20090409-1 Luca Bigliardi (commit: Jonas Smedegaard) 14 years ago
- Imported Upstream version 1.1.22git20090409 Jonas Smedegaard 14 years ago
- Imported Debian patch 1.1.22git20090209-1 Luca Bigliardi (commit: Jonas Smedegaard) 14 years ago
- Imported Upstream version 1.1.22git20090209 Jonas Smedegaard 14 years ago
0
»»