Setting the file. One moment.
Skill 31 · Product Launch Video
Subchapter 31.17
scripts/lib/bgm-volume.mjs
JavaScript4 lines236 B
// Music sits under narration; a silent film brings music forward.
export const BGM_BED_VOLUME = 0.12;
export const BGM_SILENT_VOLUME = 0.9;
export const bgmDefaultVolume = (hasVoice) => (hasVoice ? BGM_BED_VOLUME : BGM_SILENT_VOLUME);