Notes on Installing Microsoft Azure Kinect Sensor and Body Tracking SDKs on Linux PC and NVIDIA Jetson Xavier NX
06.12.2020
Jump to:
| bl_info = { | |
| "name": "Run Script in PyConsole", | |
| "author": "CoDEmanX", | |
| "version": (1, 0), | |
| "blender": (2, 80, 0), | |
| "location": "Python Console > Console > Run Script", | |
| "description": "Execute the code of a textblock within the python console.", | |
| "warning": "", | |
| "wiki_url": "", | |
| "tracker_url": "", |
| #!/bin/bash | |
| #install qt5.9 | |
| sudo apt-get install qt5-default qtcreator libqt5xmlpatterns5-dev qtscript5-dev | |
| # install some dependencies | |
| sudo apt-get install libeigen3-dev | |
| #clone repos | |
| git clone --depth 1 https://github.com/cnr-isti-vclab/meshlab.git |
| // Mixamo Animation downloadeer | |
| // | |
| // Author: Antonio Aloisio <[email protected]> | |
| // Contributions: kriNon | |
| // | |
| // The following script make use of mixamo2 API to download all anims for a single character that you choose. | |
| // The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI. | |
| // | |
| // This script has been written by gnuton@gnuton.org and the author is not responsible of its usage | |
| // |
| # Create background noise profile from mp3 | |
| /usr/bin/sox noise.mp3 -n noiseprof noise.prof | |
| # Remove noise from mp3 using profile | |
| /usr/bin/sox input.mp3 output.mp3 noisered noise.prof 0.21 | |
| # Remove silence from mp3 | |
| /usr/bin/sox input.mp3 output.mp3 silence -l 1 0.3 5% -1 2.0 5% | |
| # Remove noise and silence in a single command |