├── .gitignore ├── Assets ├── Movies │ └── .gitignore ├── Notch │ ├── .gitignore │ └── placeholder.dfx ├── PostFX │ ├── Bananagram.tox │ ├── BlockGlitch.tox │ ├── BrokenVHS.tox │ ├── FilmFilter.tox │ ├── LineGarbler.tox │ ├── SimpleBloom.tox │ └── templatePostFX.tox └── Tox │ ├── NDIIn.tox │ ├── SyphonSpoutIn.tox │ ├── VideoDeviceIn.tox │ ├── VideoStreamIn.tox │ ├── WebpageIn.tox │ └── template.tox ├── LICENSE ├── Lib ├── base_addpost.tox ├── base_addpost │ ├── base_emptypostfx.tox │ ├── base_warpa.tox │ ├── stoner.tox │ └── text_Main.py ├── base_assets.tox ├── base_audio_analysis.tox ├── base_audio_input.tox ├── base_device_outputs.tox ├── base_mix.tox ├── base_mix │ └── text_BaseMix.py ├── base_movies.tox ├── base_movies │ └── mov1.tox ├── base_notch.tox ├── base_posttox.tox ├── base_tox.tox ├── container_gui.tox ├── container_gui │ ├── container_mapping.tox │ ├── container_menu.tox │ ├── container_settings.tox │ ├── container_show.tox │ └── container_show │ │ ├── container_audioanalysis.tox │ │ ├── container_grid.tox │ │ ├── container_mixer.tox │ │ ├── container_outputview.tox │ │ ├── container_postfx.tox │ │ ├── container_userpanel.tox │ │ └── container_viewers.tox ├── container_output.tox ├── container_uikit.tox ├── text_Main.py └── version_number.txt ├── README.md ├── Recording └── .gitignore ├── fonts ├── LICENSE.txt ├── README.txt ├── config.json ├── css │ ├── animation.css │ ├── fontello-codes.css │ ├── fontello-embedded.css │ ├── fontello-ie7-codes.css │ ├── fontello-ie7.css │ └── fontello.css ├── demo.html └── font │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ ├── fontello.woff │ └── fontello.woff2 └── simplemixer.toe /.gitignore: -------------------------------------------------------------------------------- 1 | Backup/ 2 | simplemixer.*.toe -------------------------------------------------------------------------------- /Assets/Movies/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /Assets/Notch/.gitignore: -------------------------------------------------------------------------------- 1 | *.dfxdll -------------------------------------------------------------------------------- /Assets/Notch/placeholder.dfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/PostFX/Bananagram.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/Bananagram.tox -------------------------------------------------------------------------------- /Assets/PostFX/BlockGlitch.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/BlockGlitch.tox -------------------------------------------------------------------------------- /Assets/PostFX/BrokenVHS.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/BrokenVHS.tox -------------------------------------------------------------------------------- /Assets/PostFX/FilmFilter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/FilmFilter.tox -------------------------------------------------------------------------------- /Assets/PostFX/LineGarbler.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/LineGarbler.tox -------------------------------------------------------------------------------- /Assets/PostFX/SimpleBloom.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/SimpleBloom.tox -------------------------------------------------------------------------------- /Assets/PostFX/templatePostFX.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/PostFX/templatePostFX.tox -------------------------------------------------------------------------------- /Assets/Tox/NDIIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/Tox/NDIIn.tox -------------------------------------------------------------------------------- /Assets/Tox/SyphonSpoutIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/Tox/SyphonSpoutIn.tox -------------------------------------------------------------------------------- /Assets/Tox/VideoDeviceIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/Tox/VideoDeviceIn.tox -------------------------------------------------------------------------------- /Assets/Tox/VideoStreamIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/Tox/VideoStreamIn.tox -------------------------------------------------------------------------------- /Assets/Tox/WebpageIn.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/Tox/WebpageIn.tox -------------------------------------------------------------------------------- /Assets/Tox/template.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Assets/Tox/template.tox -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/base_addpost.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_addpost.tox -------------------------------------------------------------------------------- /Lib/base_addpost/base_emptypostfx.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_addpost/base_emptypostfx.tox -------------------------------------------------------------------------------- /Lib/base_addpost/base_warpa.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_addpost/base_warpa.tox -------------------------------------------------------------------------------- /Lib/base_addpost/stoner.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_addpost/stoner.tox -------------------------------------------------------------------------------- /Lib/base_addpost/text_Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_addpost/text_Main.py -------------------------------------------------------------------------------- /Lib/base_assets.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_assets.tox -------------------------------------------------------------------------------- /Lib/base_audio_analysis.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_audio_analysis.tox -------------------------------------------------------------------------------- /Lib/base_audio_input.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_audio_input.tox -------------------------------------------------------------------------------- /Lib/base_device_outputs.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_device_outputs.tox -------------------------------------------------------------------------------- /Lib/base_mix.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_mix.tox -------------------------------------------------------------------------------- /Lib/base_mix/text_BaseMix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_mix/text_BaseMix.py -------------------------------------------------------------------------------- /Lib/base_movies.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_movies.tox -------------------------------------------------------------------------------- /Lib/base_movies/mov1.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_movies/mov1.tox -------------------------------------------------------------------------------- /Lib/base_notch.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_notch.tox -------------------------------------------------------------------------------- /Lib/base_posttox.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_posttox.tox -------------------------------------------------------------------------------- /Lib/base_tox.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/base_tox.tox -------------------------------------------------------------------------------- /Lib/container_gui.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_mapping.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_mapping.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_menu.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_menu.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_settings.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_settings.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_audioanalysis.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_audioanalysis.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_grid.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_grid.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_mixer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_mixer.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_outputview.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_outputview.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_postfx.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_postfx.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_userpanel.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_userpanel.tox -------------------------------------------------------------------------------- /Lib/container_gui/container_show/container_viewers.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_gui/container_show/container_viewers.tox -------------------------------------------------------------------------------- /Lib/container_output.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_output.tox -------------------------------------------------------------------------------- /Lib/container_uikit.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/container_uikit.tox -------------------------------------------------------------------------------- /Lib/text_Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/Lib/text_Main.py -------------------------------------------------------------------------------- /Lib/version_number.txt: -------------------------------------------------------------------------------- 1 | 1.9.0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/README.md -------------------------------------------------------------------------------- /Recording/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/LICENSE.txt -------------------------------------------------------------------------------- /fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/README.txt -------------------------------------------------------------------------------- /fonts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/config.json -------------------------------------------------------------------------------- /fonts/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/css/animation.css -------------------------------------------------------------------------------- /fonts/css/fontello-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/css/fontello-codes.css -------------------------------------------------------------------------------- /fonts/css/fontello-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/css/fontello-embedded.css -------------------------------------------------------------------------------- /fonts/css/fontello-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/css/fontello-ie7-codes.css -------------------------------------------------------------------------------- /fonts/css/fontello-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/css/fontello-ie7.css -------------------------------------------------------------------------------- /fonts/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/css/fontello.css -------------------------------------------------------------------------------- /fonts/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/demo.html -------------------------------------------------------------------------------- /fonts/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/font/fontello.eot -------------------------------------------------------------------------------- /fonts/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/font/fontello.svg -------------------------------------------------------------------------------- /fonts/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/font/fontello.ttf -------------------------------------------------------------------------------- /fonts/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/font/fontello.woff -------------------------------------------------------------------------------- /fonts/font/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/fonts/font/fontello.woff2 -------------------------------------------------------------------------------- /simplemixer.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richard-Burns/SimpleMixer/HEAD/simplemixer.toe --------------------------------------------------------------------------------