Search
Loading...
Skip to content

For Audio Processing

Export audio from pages, video blocks, audio blocks, and tracks to WAV or MP4 format for external processing, transcription, or analysis.

The exportAudio API allows you to extract audio from any block that contains audio content. This is particularly useful when integrating with external audio processing services like speech-to-text transcription, audio enhancement, or music analysis platforms.

Audio can be exported from multiple block types:

  • Page blocks - Export the complete mixed audio timeline
  • Video blocks - Extract audio tracks from videos
  • Audio blocks - Export standalone audio content
  • Track blocks - Export audio from specific timeline tracks

Export Audio#

Export audio from any block using the exportAudio API:

val page = engine.scene.getCurrentPage()
val audioData = engine.block.exportAudio(
page,
MimeType.AUDIO_WAV,
48000,
2
)
Log.d("AudioExport", "Exported ${audioData.size} bytes")

Export Options#

Configure your audio export with these parameters:

  • mimeType - MimeType.AUDIO_WAV (uncompressed) or MimeType.AUDIO_MP4 (compressed AAC)
  • sampleRate - Audio quality in Hz (default: 48000)
  • numberOfChannels - 1 for mono or 2 for stereo
  • timeOffset - Start time in seconds (default: 0f)
  • duration - Length to export in seconds (0f = entire duration)
  • onProgress - Callback receiving (rendered, encoded, total) for progress tracking

Find Audio Sources#

To find blocks with audio in your scene:

// Find audio blocks
val audioBlocks = engine.block.findByType(BlockType.Audio)
// Find video fills with audio
val videoFills = engine.block.findByType(BlockType.VideoFill)
val videosWithAudio = videoFills.filter { block ->
try {
engine.block.getAudioInfoFromVideo(block).isNotEmpty()
} catch (e: Exception) {
false
}
}

Working with Multi-Track Video Audio#

Videos can contain multiple audio tracks (e.g., different languages). CE.SDK provides APIs to inspect and extract specific tracks.

Check audio track count#

val videoFillId = engine.block.findByType(BlockType.VideoFill).first()
val trackCount = engine.block.getAudioTrackCountFromVideo(videoFillId)
Log.d("AudioExport", "Video has $trackCount audio track(s)")

Get track information#

val audioTracks = engine.block.getAudioInfoFromVideo(videoFillId)
audioTracks.forEachIndexed { index, track ->
Log.d("AudioExport", """
Track $index:
- Channels: ${track.channels} // 1=mono, 2=stereo
- Sample Rate: ${track.sampleRate} Hz
- Language: ${track.language ?: "unknown"}
- Label: ${track.label ?: "Track $index"}
""".trimIndent())
}

Extract a specific track#

// Create audio block from track 0 (first track)
val audioBlockId = engine.block.createAudioFromVideo(videoFillId, 0)
// Export just this track's audio
val trackAudioData = engine.block.exportAudio(
audioBlockId,
MimeType.AUDIO_WAV,
48000,
2
)

Extract all tracks#

// Create audio blocks for all tracks
val audioBlockIds = engine.block.createAudiosFromVideo(videoFillId)
// Export each track
audioBlockIds.forEachIndexed { i, audioBlockId ->
val trackData = engine.block.exportAudio(audioBlockId, MimeType.AUDIO_WAV)
Log.d("AudioExport", "Track $i: ${trackData.size} bytes")
}

Complete Workflow: Audio to Captions#

A common workflow is to export audio, send it to a transcription service, and use the returned captions in your scene.

Step 1: Export Audio#

val page = engine.scene.getCurrentPage()
val audioData = engine.block.exportAudio(
page,
MimeType.AUDIO_WAV,
48000,
2
)

Step 2: Send to Transcription Service#

Send the audio to a service that returns SubRip (SRT) format captions:

suspend fun transcribeAudio(audioData: ByteArray): String = withContext(Dispatchers.IO) {
val client = OkHttpClient()
val requestBody = MultipartBody.Builder()
.setType(MultipartBody.FORM)
.addFormDataPart(
"audio",
"audio.wav",
audioData.toRequestBody("audio/wav".toMediaType())
)
.addFormDataPart("format", "srt")
.build()
val request = Request.Builder()
.url("https://api.transcription-service.com/transcribe")
.addHeader("Authorization", "Bearer YOUR_API_KEY")
.post(requestBody)
.build()
val response = client.newCall(request).execute()
response.body?.string() ?: throw Exception("Empty response")
}
val srtContent = transcribeAudio(audioData)

Step 3: Import Captions from SRT#

Use the built-in API to create caption blocks from the SRT response:

import java.io.File
// Save SRT to temporary file
val tempFile = File.createTempFile("captions", ".srt")
tempFile.writeText(srtContent)
// Import captions from file URI
val uri = tempFile.toURI().toString()
val captions = engine.block.createCaptionsFromURI(uri)
// Clean up temporary file
tempFile.delete()
// Add captions to page
val page = engine.scene.getCurrentPage()
val captionTrack = engine.block.create(DesignBlockType.CaptionTrack)
captions.forEach { caption ->
engine.block.appendChild(captionTrack, caption)
}
engine.block.appendChild(page, captionTrack)
// Center the first caption as a reference point
engine.block.alignHorizontally(listOf(captions[0]), HorizontalBlockAlignment.Center)
engine.block.alignVertically(listOf(captions[0]), VerticalBlockAlignment.Center)

Other Processing Services#

Audio export also supports these workflows:

  • Audio enhancement - Noise removal, normalization
  • Music analysis - Tempo, key, beat detection
  • Language detection - Identify spoken language
  • Speaker diarization - Identify who spoke when

Next Steps#

Now that you understand audio export, explore related audio and video features: