Difference between revisions of "IC Python API:Audio Driven"

From Reallusion Wiki!
Jump to: navigation, search
m (Required Files)
m (Required Files)
Line 40: Line 40:
  
 
You can download this plugin from the [https://marketplace.reallusion.com/audio-driven Reallusion Marketplace].   
 
You can download this plugin from the [https://marketplace.reallusion.com/audio-driven Reallusion Marketplace].   
To acquire and view the source code, please visit [https://github.com/reallusion/iClone/tree/master/SmoothCameraFollow Reallusion GitHub].
+
To acquire and view the source code, please visit [https://github.com/reallusion/iClone/tree/master/AudioDriven Reallusion GitHub].
  
 
== Steps to Take ==
 
== Steps to Take ==

Revision as of 03:52, 23 December 2019

Main article: RL Python Samples.

Demo Video

Description

This script lets the user pick an audio file in wave format and apply an interpretation of it in movement to a selection of props.

Ic python api audio driven 01.png

Course Prerequisites

Make sure to install Numpy and Scipy Python modules by following the instructions here.

You should familiarize yourself with the following fundamental articles before you proceed:

Learn How to

  • Deal with audio files and data.
  • Drive complex prop animations.
  • Create complex and responsive user interface elements.

Required Files

  • iClone scene with one or more props.
  • An audio file in wave (*.wav) format.
  • Audio Driven Python script.
  • Audio Driven Extensions Python script.

You can download this plugin from the Reallusion Marketplace. To acquire and view the source code, please visit Reallusion GitHub.

Steps to Take

  1. Clone or download the Reallusion/iClone GitHub.
  2. Copy AudioDriven folder into the iClone install directory > ...\Bin64\OpenPlugin.
  3. Load the script into the project from the menu: Plugins > Python Samples > Audio Driven.
  4. Load an audio file in .wav format.
  5. Select a prop in the scene.
  6. Adjust the animation parameters and click the Apply button when finished.

Code Flow

Given an audio file, the script will create an audio spectrum data with the help of the scipy module. Then a collection of clones will be made according to the parameters inside the user interface such as Clones, Spacing, Alignment, Transition Color, Ramp & Fade, and various transformational elements. The clones will then be animated according to the audio spectrum multiplied by the transform strength.

Ic python api audio driven 02.png

APIs Used

You can research the following references for the APIs deployed in this code.

main.py

AD_Extensions.py