diff --git a/streamerbot/3.api/1.sub-actions/core/sounds/play-sound-from-folder.md b/streamerbot/3.api/1.sub-actions/core/sounds/play-sound-from-folder.md index 94f600e2..13e9b18f 100755 --- a/streamerbot/3.api/1.sub-actions/core/sounds/play-sound-from-folder.md +++ b/streamerbot/3.api/1.sub-actions/core/sounds/play-sound-from-folder.md @@ -54,6 +54,14 @@ variables: type: string description: File name of the audio file that was randomly selected for playback value: 'chad.mp3' + - name: soundLength + type: number + description: Length of chosen sound in seconds. + version: 0.2.3 + - name: soundLengthMs + type: number + description: Length of chosen sound in milliseconds. + version: 0.2.3 csharpMethods: - PlaySoundFromFolder --- diff --git a/streamerbot/3.api/1.sub-actions/core/sounds/play-sound.md b/streamerbot/3.api/1.sub-actions/core/sounds/play-sound.md index bce2b916..0991a7a0 100755 --- a/streamerbot/3.api/1.sub-actions/core/sounds/play-sound.md +++ b/streamerbot/3.api/1.sub-actions/core/sounds/play-sound.md @@ -41,7 +41,15 @@ parameters: type: boolean description: Enabling this will use the filename of the sound as the sound name version: 0.2.4 -variables: [] +variables: + - name: soundLength + type: number + description: Length of the sound in seconds. + version: 0.2.3 + - name: soundLengthMs + type: number + description: Length of the sound in milliseconds. + version: 0.2.3 csharpMethods: - PlaySound ---