Skip to content

Commit

Permalink
DMP-4385 Filter out 0 second audios from ATS processing
Browse files Browse the repository at this point in the history
Added tests for ATS filtering to filter out audio files that have less than a second apart
  • Loading branch information
karen-hedges committed Jan 3, 2025
1 parent 78daf81 commit eaf0d8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public List<AudioFileInfo> processAudioForPlaybacks(Map<MediaEntity, Path> media
// Used for logging only
String audioFilenames = null;
if (log.isDebugEnabled()) {
audioFileInfos.stream().map(AudioFileInfo::getMediaFile).collect(Collectors.joining(", "));
audioFilenames = audioFileInfos.stream().map(AudioFileInfo::getMediaFile).collect(Collectors.joining(", "));
}

List<ChannelAudio> concatenationsList = new ArrayList<>();
Expand Down

0 comments on commit eaf0d8f

Please sign in to comment.