Bixby Developer Center

References

skip-by-seconds

optionalvalue optional

Specify the value in seconds of the skip forward/backward buttons, if present. If the skip-by-seconds key is not included, the skip buttons will not be shown. If it is included, the number of seconds can be specified; if the key is included but no value is specified, it defaults to 10 seconds.

Examples

Show the skip buttons with their default values:

result-view {
render {
layout {
section {
content {
audio-control {
album-art {
url (https://example.com/meow.jpg)
}
artist (Cool Cat)
title (Hal, It's About Cats)
skip-by-seconds
}
}
}
}
}
}

Explicitly specify a skip value:

...
audio-control {
album-art {
url (https://example.com/meow.jpg)
}
artist (Cool Cat)
title (Hal, It's About Cats)
skip-by-seconds (30)
}
...