Skip to content
Snippets Groups Projects
Commit c12dee25 authored by David Trattnig's avatar David Trattnig
Browse files

Added transition types.

parent c1e68080
No related branches found
No related tags found
No related merge requests found
...@@ -92,6 +92,14 @@ class ChannelType(Enum): ...@@ -92,6 +92,14 @@ class ChannelType(Enum):
return str(self.value["id"]) return str(self.value["id"])
class TransitionType(Enum):
"""
Types of fade-in and fade-out transition.
"""
INSTANT = "instant"
FADE = "fade"
class FallbackType(Enum): class FallbackType(Enum):
SHOW = "show" # the first played when the show playlist fails SHOW = "show" # the first played when the show playlist fails
TIMESLOT = "timeslot" # the second played when timeslot fallback fails TIMESLOT = "timeslot" # the second played when timeslot fallback fails
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment