mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-05 00:56:23 +00:00
fix: address audio volume review feedback
This commit is contained in:
@@ -27,7 +27,7 @@ function formatFilterNumber(value: number): string {
|
||||
}
|
||||
|
||||
function escapeExpressionCommas(expression: string): string {
|
||||
return expression.replace(/,/g, "\\,");
|
||||
return expression.replace(/\\/g, "\\\\").replace(/,/g, "\\,");
|
||||
}
|
||||
|
||||
function buildVolumeExpression(track: AudioTrack): string {
|
||||
|
||||
Reference in New Issue
Block a user