├── .travis.yml ├── COPYING ├── README.md ├── doc └── moodbar-example.svg ├── gst └── moodbar │ ├── gstfastspectrum.cpp │ ├── gstfastspectrum.h │ ├── plugin.cpp │ └── plugin.h ├── meson.build ├── moodbar.cpp ├── moodbar.h ├── moodbar_exe.cpp ├── src └── moodbar │ ├── moodbarbuilder.cpp │ ├── moodbarbuilder.h │ ├── moodbarpipeline.cpp │ └── moodbarpipeline.h └── test.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/README.md -------------------------------------------------------------------------------- /doc/moodbar-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/doc/moodbar-example.svg -------------------------------------------------------------------------------- /gst/moodbar/gstfastspectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/gst/moodbar/gstfastspectrum.cpp -------------------------------------------------------------------------------- /gst/moodbar/gstfastspectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/gst/moodbar/gstfastspectrum.h -------------------------------------------------------------------------------- /gst/moodbar/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/gst/moodbar/plugin.cpp -------------------------------------------------------------------------------- /gst/moodbar/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/gst/moodbar/plugin.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/meson.build -------------------------------------------------------------------------------- /moodbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/moodbar.cpp -------------------------------------------------------------------------------- /moodbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/moodbar.h -------------------------------------------------------------------------------- /moodbar_exe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/moodbar_exe.cpp -------------------------------------------------------------------------------- /src/moodbar/moodbarbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/src/moodbar/moodbarbuilder.cpp -------------------------------------------------------------------------------- /src/moodbar/moodbarbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/src/moodbar/moodbarbuilder.h -------------------------------------------------------------------------------- /src/moodbar/moodbarpipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/src/moodbar/moodbarpipeline.cpp -------------------------------------------------------------------------------- /src/moodbar/moodbarpipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/src/moodbar/moodbarpipeline.h -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exaile/moodbar/HEAD/test.py --------------------------------------------------------------------------------