├── .gitignore ├── 00-components.pd ├── 01-soundfile_playback.pd ├── 02-videofile_playback.pd ├── 03-soundfile_table.pd ├── 04-A_and_V.pd ├── 05a-av-combination.pd ├── 05b-av-combination_better.pd ├── 06-av-video_buffer.pd ├── 07a-av-filename.pd ├── 07b-abstraction.pd ├── 08a-socket_audio.pd ├── 08b-socket_video.pd ├── 09a-pd-tilde_audio.pd ├── 09b-pd-tilde_video.pd ├── 10-av-more_control.pd ├── 11-av-speed.pd ├── 12a-av-envelope.pd ├── 12b-sampler_MIDI-keyboard.pd ├── 13-liverecording.pd ├── 14a-av-delaying.pd ├── 14b-av-delaying-subtraction.pd ├── 14c-av-echo.pd ├── 15a-remote-quicktime_applescript.pd ├── 15b-remote-vlc_applescript.pd ├── 15c-remote-vlc_python.pd ├── 16a-camera_wavetable.pd ├── 16b-snap-pix_wavetable.pd ├── 16c-snap-3dXY_wavetable.pd ├── 16c-snap-3d_wavetable.pd ├── 16d-snap-3d-stereo_wavetable.pd ├── 17-documentation.pd ├── 18-OSC-remote.pd ├── avplayer~.pd ├── bass2.aiff ├── bass2.mov ├── mn-flip.pd ├── ornament_sound.jpg ├── ornament_sound.pdf ├── oscVideoPlayerLinux ├── oscVideoPlayerOSX.app └── Contents │ ├── Info.plist │ └── MacOS │ ├── libfmodex.dylib │ └── oscVideoPlayerProject ├── oscVideoPlayerProject ├── Makefile ├── addons.make ├── bin │ └── libfmodex.so ├── config.make ├── obj │ └── linux64 │ │ └── Release │ │ ├── .compiler_flags │ │ └── src │ │ ├── main.d │ │ ├── main.o │ │ ├── ofApp.d │ │ └── ofApp.o └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── pix_buffer_filmopen.pd ├── readme.md ├── speedlimit.pd ├── vlc.py └── vlc.pyo /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | .DS_Store 3 | /excluded -------------------------------------------------------------------------------- /00-components.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/00-components.pd -------------------------------------------------------------------------------- /01-soundfile_playback.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/01-soundfile_playback.pd -------------------------------------------------------------------------------- /02-videofile_playback.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/02-videofile_playback.pd -------------------------------------------------------------------------------- /03-soundfile_table.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/03-soundfile_table.pd -------------------------------------------------------------------------------- /04-A_and_V.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/04-A_and_V.pd -------------------------------------------------------------------------------- /05a-av-combination.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/05a-av-combination.pd -------------------------------------------------------------------------------- /05b-av-combination_better.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/05b-av-combination_better.pd -------------------------------------------------------------------------------- /06-av-video_buffer.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/06-av-video_buffer.pd -------------------------------------------------------------------------------- /07a-av-filename.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/07a-av-filename.pd -------------------------------------------------------------------------------- /07b-abstraction.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/07b-abstraction.pd -------------------------------------------------------------------------------- /08a-socket_audio.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/08a-socket_audio.pd -------------------------------------------------------------------------------- /08b-socket_video.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/08b-socket_video.pd -------------------------------------------------------------------------------- /09a-pd-tilde_audio.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/09a-pd-tilde_audio.pd -------------------------------------------------------------------------------- /09b-pd-tilde_video.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/09b-pd-tilde_video.pd -------------------------------------------------------------------------------- /10-av-more_control.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/10-av-more_control.pd -------------------------------------------------------------------------------- /11-av-speed.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/11-av-speed.pd -------------------------------------------------------------------------------- /12a-av-envelope.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/12a-av-envelope.pd -------------------------------------------------------------------------------- /12b-sampler_MIDI-keyboard.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/12b-sampler_MIDI-keyboard.pd -------------------------------------------------------------------------------- /13-liverecording.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/13-liverecording.pd -------------------------------------------------------------------------------- /14a-av-delaying.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/14a-av-delaying.pd -------------------------------------------------------------------------------- /14b-av-delaying-subtraction.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/14b-av-delaying-subtraction.pd -------------------------------------------------------------------------------- /14c-av-echo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/14c-av-echo.pd -------------------------------------------------------------------------------- /15a-remote-quicktime_applescript.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/15a-remote-quicktime_applescript.pd -------------------------------------------------------------------------------- /15b-remote-vlc_applescript.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/15b-remote-vlc_applescript.pd -------------------------------------------------------------------------------- /15c-remote-vlc_python.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/15c-remote-vlc_python.pd -------------------------------------------------------------------------------- /16a-camera_wavetable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/16a-camera_wavetable.pd -------------------------------------------------------------------------------- /16b-snap-pix_wavetable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/16b-snap-pix_wavetable.pd -------------------------------------------------------------------------------- /16c-snap-3dXY_wavetable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/16c-snap-3dXY_wavetable.pd -------------------------------------------------------------------------------- /16c-snap-3d_wavetable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/16c-snap-3d_wavetable.pd -------------------------------------------------------------------------------- /16d-snap-3d-stereo_wavetable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/16d-snap-3d-stereo_wavetable.pd -------------------------------------------------------------------------------- /17-documentation.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/17-documentation.pd -------------------------------------------------------------------------------- /18-OSC-remote.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/18-OSC-remote.pd -------------------------------------------------------------------------------- /avplayer~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/avplayer~.pd -------------------------------------------------------------------------------- /bass2.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/bass2.aiff -------------------------------------------------------------------------------- /bass2.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/bass2.mov -------------------------------------------------------------------------------- /mn-flip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/mn-flip.pd -------------------------------------------------------------------------------- /ornament_sound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/ornament_sound.jpg -------------------------------------------------------------------------------- /ornament_sound.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/ornament_sound.pdf -------------------------------------------------------------------------------- /oscVideoPlayerLinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerLinux -------------------------------------------------------------------------------- /oscVideoPlayerOSX.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerOSX.app/Contents/Info.plist -------------------------------------------------------------------------------- /oscVideoPlayerOSX.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerOSX.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /oscVideoPlayerOSX.app/Contents/MacOS/oscVideoPlayerProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerOSX.app/Contents/MacOS/oscVideoPlayerProject -------------------------------------------------------------------------------- /oscVideoPlayerProject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/Makefile -------------------------------------------------------------------------------- /oscVideoPlayerProject/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc -------------------------------------------------------------------------------- /oscVideoPlayerProject/bin/libfmodex.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/bin/libfmodex.so -------------------------------------------------------------------------------- /oscVideoPlayerProject/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/config.make -------------------------------------------------------------------------------- /oscVideoPlayerProject/obj/linux64/Release/.compiler_flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/obj/linux64/Release/.compiler_flags -------------------------------------------------------------------------------- /oscVideoPlayerProject/obj/linux64/Release/src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/obj/linux64/Release/src/main.d -------------------------------------------------------------------------------- /oscVideoPlayerProject/obj/linux64/Release/src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/obj/linux64/Release/src/main.o -------------------------------------------------------------------------------- /oscVideoPlayerProject/obj/linux64/Release/src/ofApp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/obj/linux64/Release/src/ofApp.d -------------------------------------------------------------------------------- /oscVideoPlayerProject/obj/linux64/Release/src/ofApp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/obj/linux64/Release/src/ofApp.o -------------------------------------------------------------------------------- /oscVideoPlayerProject/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/src/main.cpp -------------------------------------------------------------------------------- /oscVideoPlayerProject/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/src/ofApp.cpp -------------------------------------------------------------------------------- /oscVideoPlayerProject/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/oscVideoPlayerProject/src/ofApp.h -------------------------------------------------------------------------------- /pix_buffer_filmopen.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/pix_buffer_filmopen.pd -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/readme.md -------------------------------------------------------------------------------- /speedlimit.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/speedlimit.pd -------------------------------------------------------------------------------- /vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/vlc.py -------------------------------------------------------------------------------- /vlc.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxa/AudioVideoPatches/HEAD/vlc.pyo --------------------------------------------------------------------------------