public static interface NonTalkTimeFilter.Builder extends SdkPojo, CopyableBuilder<NonTalkTimeFilter.Builder,NonTalkTimeFilter>
| Modifier and Type | Method and Description |
|---|---|
NonTalkTimeFilter.Builder |
absoluteTimeRange(AbsoluteTimeRange absoluteTimeRange)
Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search
for a period of silence.
|
default NonTalkTimeFilter.Builder |
absoluteTimeRange(Consumer<AbsoluteTimeRange.Builder> absoluteTimeRange)
Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search
for a period of silence.
|
NonTalkTimeFilter.Builder |
negate(Boolean negate)
Set to
TRUE to flag periods of speech. |
default NonTalkTimeFilter.Builder |
relativeTimeRange(Consumer<RelativeTimeRange.Builder> relativeTimeRange)
Makes it possible to specify a time range (in percentage) in your media file, during which you want to search
for a period of silence.
|
NonTalkTimeFilter.Builder |
relativeTimeRange(RelativeTimeRange relativeTimeRange)
Makes it possible to specify a time range (in percentage) in your media file, during which you want to search
for a period of silence.
|
NonTalkTimeFilter.Builder |
threshold(Long threshold)
Specify the duration, in milliseconds, of the period of silence that you want to flag.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildNonTalkTimeFilter.Builder threshold(Long threshold)
Specify the duration, in milliseconds, of the period of silence that you want to flag. For example, you can flag a silent period that lasts 30,000 milliseconds.
threshold - Specify the duration, in milliseconds, of the period of silence that you want to flag. For example,
you can flag a silent period that lasts 30,000 milliseconds.NonTalkTimeFilter.Builder absoluteTimeRange(AbsoluteTimeRange absoluteTimeRange)
Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for a period of silence. See for more detail.
absoluteTimeRange - Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to
search for a period of silence. See for more detail.default NonTalkTimeFilter.Builder absoluteTimeRange(Consumer<AbsoluteTimeRange.Builder> absoluteTimeRange)
Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for a period of silence. See for more detail.
This is a convenience method that creates an instance of theAbsoluteTimeRange.Builder avoiding the
need to create one manually via AbsoluteTimeRange.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to absoluteTimeRange(AbsoluteTimeRange).
absoluteTimeRange - a consumer that will call methods on AbsoluteTimeRange.BuilderabsoluteTimeRange(AbsoluteTimeRange)NonTalkTimeFilter.Builder relativeTimeRange(RelativeTimeRange relativeTimeRange)
Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for a period of silence. See for more detail.
relativeTimeRange - Makes it possible to specify a time range (in percentage) in your media file, during which you want to
search for a period of silence. See for more detail.default NonTalkTimeFilter.Builder relativeTimeRange(Consumer<RelativeTimeRange.Builder> relativeTimeRange)
Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for a period of silence. See for more detail.
This is a convenience method that creates an instance of theRelativeTimeRange.Builder avoiding the
need to create one manually via RelativeTimeRange.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to relativeTimeRange(RelativeTimeRange).
relativeTimeRange - a consumer that will call methods on RelativeTimeRange.BuilderrelativeTimeRange(RelativeTimeRange)NonTalkTimeFilter.Builder negate(Boolean negate)
Set to TRUE to flag periods of speech. Set to FALSE to flag periods of silence
negate - Set to TRUE to flag periods of speech. Set to FALSE to flag periods of
silenceCopyright © 2022. All rights reserved.