Skip to content

Commit

Permalink
Merge pull request #252 from tv2/SOF-2291/use-studio-microphones-for-…
Browse files Browse the repository at this point in the history
…all-voice-overs

SOF-2291: Use studio microphones for all voice overs
  • Loading branch information
KvelaGorrrrnio authored Oct 7, 2024
2 parents 6efe18b + f4b2f3f commit 5693d1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tv2-common/helpers/sisyfos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function GetSisyfosTimelineObjForRemote(
}

export function GetSisyfosTimelineObjForReplay(config: TV2ShowStyleConfig, sourceInfo: SourceInfo, vo: boolean) {
return GetSisyfosTimelineObjForSource(config, sourceInfo, vo, true)
return GetSisyfosTimelineObjForSource(config, sourceInfo, vo, false)
}

export function GetSisyfosTimelineObjForServer(
Expand Down Expand Up @@ -113,7 +113,7 @@ function GetSisyfosTimelineObjForSource(
})
)
})
if (sourceInfo.useStudioMics && (!enableStudioMicsOnlyForVo || vo)) {
if (vo || (sourceInfo.useStudioMics && !enableStudioMicsOnlyForVo)) {
result.push(getStudioMicsTimelineObj(config, timelineEnable))
}
return result
Expand Down

0 comments on commit 5693d1d

Please sign in to comment.