BitmovinApiSdk\Models\SceneType

Synopsis

class SceneType extends Enum {
}

Hierarchy

Methods

public

  • ACT_BREAK_EYECATCH() — Short bumpers marking act/ad breaks (incl. anime eyecatches)
  • ADS() — Commercial advertisements with promotional intent and call-to-action
  • END_CREDITS() — Closing credits, copyright notices, staff acknowledgments
  • EPISODE_TITLE_CARD() — Episode-specific title/chapter card (e.g., "S02E04 — The Pact")
  • MAIN_CONTENT() — Main narrative, dialogue, or educational material (default)
  • MID_CREDIT_SCENE() — Narrative content interspersed within end credits
  • NETWORK_OR_PLATFORM_IDENT() — Network/platform idents/slates (e.g., "A Netflix Original", channel idents)
  • OPENING_TITLES() — Opening sequence presenting title, credits, and/or thematic elements; no in-world character dialogue
  • POST_CREDIT_SCENE() — Narrative content appearing after all credits finish
  • PREVIEW_THIS_TITLE() — Teaser for this or the next episode of the same title
  • PROMO_OTHER_TITLE() — Network promo for a different show on the same network/platform (schedule-centric)
  • RECAP() — "Previously on …" montage sequences from previous episodes
  • STUDIO_LOGO_BUMPER() — Production/distributor logo stingers (e.g., MGM, WB, New Line)
  • TECHNICAL_SLATE_OR_TEST() — Technical/packaging: test bars, countdowns, black/slates, legal-only cards
  • TRAILER_OTHER_TITLE() — Full/standard trailer for a different title (cinematic style, not schedule-centric)
  • UNKNOWN() — Fallback when AI confidence below minimum threshold
  • create()

Inherited from BitmovinApiSdk\Common\Enum

public

  • __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
  • __toString()
  • equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
  • getKey() — Returns the enum key (i.e. the constant name).
  • getValue()
  • isValidKey() — Check if is valid enum key
  • jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
  • keys() — Returns the names (keys) of all constants in the Enum class
  • toArray() — Returns all possible values as an array
  • values() — Returns instances of the Enum class of all Enum constants