diff --git a/MServer-Config.yaml b/MServer-Config.yaml index 85cb9940f..758fe625f 100644 --- a/MServer-Config.yaml +++ b/MServer-Config.yaml @@ -1,7 +1,7 @@ #### Server configurations #### # The maximum amount of cpu threads to be used. -maximumCpuThreads: 10 +maximumCpuThreads: 1 # The maximum duration in minutes the server should run.
# If set to 0 the server runs without a time limit. @@ -24,15 +24,17 @@ senderIncluded: #- ARTE_PL #- ARTE_IT #- ARTE_ES - #- 3SAT + #- DREISAT #- FUNK #- KIKA - #- DW - #- ORF + # - DW + - ORF #- PHOENIX #- SRF - - SR + #- SR #- ZDF + +#SRF,SR,PHONIX,ORF,KIKA,DW,3SAT< # If set the server will be awake after the crawler run and restarts the run after the given amount. #schedules: @@ -133,7 +135,7 @@ topicsSearchEnabled: true # The maximum amount of sub pages to be crawled.
# Example: If a Sendung overview side has 10 pages with videos for this Sendung and # the amount set by this is 5 then the crawler crawls pages 1 to 5. -maximumSubpages: 1 +maximumSubpages: 5 # The maximum amount of days going to past will be crawled for the "Sendung Verpasst?" section. maximumDaysForSendungVerpasstSection: 7 @@ -155,8 +157,7 @@ senderConfigurations: #10,20,40 ok maximumSubpages: 0 ORF: - #2,4,8 ok - maximumUrlsPerTask: 40 + maximumRequestsPerSecond: 10.0 ARTE_DE: maximumUrlsPerTask: 1 maximumDaysForSendungVerpasstSectionFuture: 0 @@ -178,10 +179,12 @@ senderConfigurations: maximumRequestsPerSecond: 10.0 FUNK: maximumUrlsPerTask: 99 - DW: - maximumSubpages: 0 - SR: + DREISAT: maximumSubpages: 5 + maximumDaysForSendungVerpasstSection: 60 + PHOENIX: + maximumSubpages: 500 + # configure string variables crawlerApiParams: diff --git a/src/main/java/de/mediathekview/mserver/base/utils/JsonUtils.java b/src/main/java/de/mediathekview/mserver/base/utils/JsonUtils.java index 30deb2aa8..00f8fcff5 100644 --- a/src/main/java/de/mediathekview/mserver/base/utils/JsonUtils.java +++ b/src/main/java/de/mediathekview/mserver/base/utils/JsonUtils.java @@ -77,7 +77,18 @@ public static Optional getAttributeAsInt(final JsonObject jsonObject, f } public static Optional getElementValueAsString(final JsonElement aJsonElement, final String... aElementIds) { - Optional rs = Optional.empty(); + Optional rs = JsonUtils.getElement(aJsonElement, aElementIds); + if (rs.isPresent()) { + return Optional.of(rs.get().getAsString()); + } + return Optional.empty(); + } + + public static Optional getElement(final JsonElement aJsonElement, final String... aElementIds) { + Optional rs = Optional.empty(); + if (aElementIds == null || aElementIds.length == 0) { + return rs; + } JsonObject aJsonObject = aJsonElement.getAsJsonObject(); for (int i = 0; i < aElementIds.length-1; i++) { String elementId = aElementIds[i]; @@ -91,7 +102,7 @@ public static Optional getElementValueAsString(final JsonElement aJsonEl // String elementId = aElementIds[aElementIds.length-1]; if (aJsonObject != null && aJsonObject.has(elementId) && !aJsonObject.get(elementId).isJsonNull()) { - rs = Optional.of(aJsonObject.get(elementId).getAsString()); + rs = Optional.of(aJsonObject.get(elementId)); } // return rs; diff --git a/src/main/java/de/mediathekview/mserver/base/webaccess/JsoupConnection.java b/src/main/java/de/mediathekview/mserver/base/webaccess/JsoupConnection.java index 6ff257725..18330f14c 100644 --- a/src/main/java/de/mediathekview/mserver/base/webaccess/JsoupConnection.java +++ b/src/main/java/de/mediathekview/mserver/base/webaccess/JsoupConnection.java @@ -1,6 +1,7 @@ package de.mediathekview.mserver.base.webaccess; import okhttp3.ConnectionPool; +import okhttp3.Headers; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; @@ -11,7 +12,12 @@ import org.jsoup.nodes.Document; import org.jsoup.parser.Parser; +import com.google.gson.Gson; +import com.google.gson.JsonElement; + import java.io.IOException; +import java.util.Map; +import java.util.Map.Entry; import java.util.concurrent.TimeUnit; import static jakarta.ws.rs.core.HttpHeaders.CONTENT_LENGTH; @@ -41,11 +47,32 @@ public JsoupConnection(final int timeout, final int threadPoolSize) { * @throws IOException If no connection to the url could be opened. */ public String requestBodyAsString(final String url) throws IOException { + return requestBodyAsString(url, null); + + } + /** + * Request an url and receive the body as String. Add headers as a string map. + * @param url + * @param headerMap + * @return + * @throws IOException + */ + public String requestBodyAsString(final String url, final Map headerMap) throws IOException { int retry = 0; int httpResponseCode; final String responseString = ""; do { - final Request request = new Request.Builder().url(url).build(); + okhttp3.Headers.Builder headerBuilder = new Headers.Builder(); + if (headerMap != null) { + for (Entry headerValue : headerMap.entrySet()) { + headerBuilder.add(headerValue.getKey(), headerValue.getValue()); + } + } + Request request = new Request.Builder() + .url(url) + .headers(headerBuilder.build()) + .build(); + try (final Response response = client.newCall(request).execute()) { httpResponseCode = response.code(); if (response.body() == null || httpResponseCode == 404 || httpResponseCode == 410) { @@ -62,6 +89,17 @@ public String requestBodyAsString(final String url) throws IOException { return responseString; } + /** + * Request an url and receive the body as HTML JSOUP Document + * + * @param url The url to request. + * @return request body as HTML JSOUP Document + * @throws IOException If no connection to the url could be opened. + */ + public JsonElement requestBodyAsJsonElement(final String url, final Map headerMap) throws IOException { + return new Gson().fromJson(requestBodyAsString(url, headerMap), JsonElement.class); + } + /** * Request an url and receive the body as HTML JSOUP Document * diff --git a/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java b/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java index 6ab02771c..b7799eaf3 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java +++ b/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java @@ -24,7 +24,7 @@ import de.mediathekview.mserver.crawler.dw.DwCrawler; import de.mediathekview.mserver.crawler.funk.FunkCrawler; import de.mediathekview.mserver.crawler.kika.KikaApiCrawler; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; +import de.mediathekview.mserver.crawler.orfon.OrfOnCrawler; import de.mediathekview.mserver.crawler.phoenix.PhoenixCrawler; import de.mediathekview.mserver.crawler.sr.SrCrawler; import de.mediathekview.mserver.crawler.srf.SrfCrawler; @@ -519,8 +519,10 @@ private void initializeCrawler(final MServerConfigManager rootConfig) { new KikaApiCrawler(forkJoinPool, messageListeners, progressListeners, rootConfig)); crawlerMap.put( Sender.DW, new DwCrawler(forkJoinPool, messageListeners, progressListeners, rootConfig)); + //crawlerMap.put( + // Sender.ORF, new OrfCrawler(forkJoinPool, messageListeners, progressListeners, rootConfig)); crawlerMap.put( - Sender.ORF, new OrfCrawler(forkJoinPool, messageListeners, progressListeners, rootConfig)); + Sender.ORF, new OrfOnCrawler(forkJoinPool, messageListeners, progressListeners, rootConfig)); crawlerMap.put( Sender.PHOENIX, new PhoenixCrawler(forkJoinPool, messageListeners, progressListeners, rootConfig)); diff --git a/src/main/java/de/mediathekview/mserver/crawler/basic/AbstractCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/basic/AbstractCrawler.java index b9faa3455..c3f685314 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/basic/AbstractCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/basic/AbstractCrawler.java @@ -193,7 +193,6 @@ public Document requestBodyAsXmlDocument(String url) throws IOException { * @return size of the response in KB or -1 in case we could not determine the size. */ public long determineFileSizeInKB(String url) { - getRateLimiter().acquire(); return getConnection().determineFileSize(url) / 1024; } @@ -203,7 +202,6 @@ public long determineFileSizeInKB(String url) { * @return return true if the request was successfully processed by the server */ public boolean requestUrlExists(String url) { - getRateLimiter().acquire(); return getConnection().requestUrlExists(url); } /** diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfConstants.java b/src/main/java/de/mediathekview/mserver/crawler/orf/OrfConstants.java deleted file mode 100644 index f79832eca..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfConstants.java +++ /dev/null @@ -1,36 +0,0 @@ -package de.mediathekview.mserver.crawler.orf; - -public final class OrfConstants { - - public static final String URL_BASE = "https://tvthek.orf.at"; - - /** - * URL für die Sendungen eines Tages - * Muss am Ende noch um das Datum dd.MM.yyyy ergänzt werden - */ - public static final String URL_DAY = URL_BASE + "/schedule/"; - - /** - * Basis-URL für Übersichtsseite nach Buchstaben - * Muss am Ende noch um Buchstabe bzw. 0 ergänzt werden - */ - public static final String URL_SHOW_LETTER_PAGE = URL_BASE + "/profiles/letter/"; - - /** - * URL für erste Übersichtsseite nach Buchstaben - */ - public static final String URL_SHOW_LETTER_PAGE_A = URL_SHOW_LETTER_PAGE + "A"; - - /** - * URL für verpasste Sendungen eines Tages - * Muss am Ende noch um Datum ergänzt werden im Format DD.MM.YYYY - */ - public static final String URL_DATE = URL_BASE + "/schedule/"; - - /** - * URL für Übersichtsseite des Archivs - */ - public static final String URL_ARCHIVE = URL_BASE + "/history"; - - private OrfConstants() {} -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orf/OrfCrawler.java deleted file mode 100644 index 3fd9d25c8..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfCrawler.java +++ /dev/null @@ -1,140 +0,0 @@ -package de.mediathekview.mserver.crawler.orf; - -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mlib.daten.Sender; -import de.mediathekview.mlib.messages.listener.MessageListener; -import de.mediathekview.mserver.base.config.MServerConfigManager; -import de.mediathekview.mserver.base.messages.ServerMessages; -import de.mediathekview.mserver.crawler.basic.AbstractCrawler; -import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.tasks.*; -import de.mediathekview.mserver.progress.listeners.SenderProgressListener; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.time.LocalDateTime; -import java.time.format.DateTimeFormatter; -import java.time.temporal.ChronoUnit; -import java.util.Collection; -import java.util.Queue; -import java.util.Set; -import java.util.concurrent.ConcurrentLinkedQueue; -import java.util.concurrent.ExecutionException; -import java.util.concurrent.ForkJoinPool; -import java.util.concurrent.RecursiveTask; - -public class OrfCrawler extends AbstractCrawler { - - private static final Logger LOG = LogManager.getLogger(OrfCrawler.class); - - public OrfCrawler( - final ForkJoinPool aForkJoinPool, - final Collection aMessageListeners, - final Collection aProgressListeners, - final MServerConfigManager rootConfig) { - super(aForkJoinPool, aMessageListeners, aProgressListeners, rootConfig); - - } - - @Override - public Sender getSender() { - return Sender.ORF; - } - - private Set getArchiveEntries() throws InterruptedException, ExecutionException { - final OrfHistoryOverviewTask historyTask = new OrfHistoryOverviewTask(this); - final Queue topics = forkJoinPool.submit(historyTask).get(); - - final OrfHistoryTopicTask topicTask = new OrfHistoryTopicTask(this, topics); - final Set shows = forkJoinPool.submit(topicTask).get(); - - printMessage( - ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), shows.size()); - - return shows; - } - - private Set getDaysEntries() throws InterruptedException, ExecutionException { - final OrfDayTask dayTask = new OrfDayTask(this, getDayUrls()); - final Set shows = forkJoinPool.submit(dayTask).get(); - - printMessage( - ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), shows.size()); - - return shows; - } - - private Queue getDayUrls() { - final Queue urls = new ConcurrentLinkedQueue<>(); - for (int i = 0; - i - < crawlerConfig.getMaximumDaysForSendungVerpasstSection() - + crawlerConfig.getMaximumDaysForSendungVerpasstSectionFuture(); - i++) { - urls.add( - new CrawlerUrlDTO( - OrfConstants.URL_DAY - + LocalDateTime.now() - .plus( - crawlerConfig.getMaximumDaysForSendungVerpasstSectionFuture(), - ChronoUnit.DAYS) - .minus(i, ChronoUnit.DAYS) - .format(DateTimeFormatter.ofPattern("dd.MM.yyyy")))); - } - - return urls; - } - - private Queue getLetterEntries() throws InterruptedException, ExecutionException { - final OrfLetterPageTask letterTask = new OrfLetterPageTask(this); - final Queue shows = forkJoinPool.submit(letterTask).get(); - - printMessage( - ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), shows.size()); - - return shows; - } - - @Override - protected RecursiveTask> createCrawlerTask() { - try { - boolean processMoreEpisodes = false; - - final Queue shows = new ConcurrentLinkedQueue<>(); - - if (Boolean.TRUE.equals(crawlerConfig.getTopicsSearchEnabled())) { - shows.addAll(getArchiveEntries()); - addShows(shows, getLetterEntries()); - processMoreEpisodes = true; - } else { - addShows(shows, getDaysEntries()); - processMoreEpisodes = false; - } - - printMessage( - ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), shows.size()); - getAndSetMaxCount(shows.size()); - - return new OrfFilmDetailTask(this, shows, processMoreEpisodes); - } catch (final InterruptedException ex) { - LOG.debug("{} crawler interrupted.", getSender().getName(), ex); - Thread.currentThread().interrupt(); - } catch (final ExecutionException ex) { - LOG.fatal("Exception in {} crawler.", getSender().getName(), ex); - } - return null; - } - - private void addShows(Queue shows, Collection showsToAdd) { - showsToAdd.forEach( - show -> { - // compare only urls because topics can be different in letter and day lists - if (shows.stream().noneMatch(s -> s.getUrl().equals(show.getUrl()))) { - shows.add(show); - } else { - LOG.debug("duplicated url {} of topic {} removed", show.getUrl(), show.getTopic()); - } - }); - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfEpisodeInfoDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orf/OrfEpisodeInfoDTO.java deleted file mode 100644 index ce058688d..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfEpisodeInfoDTO.java +++ /dev/null @@ -1,38 +0,0 @@ -package de.mediathekview.mserver.crawler.orf; - -import java.time.Duration; -import java.util.Optional; - -public class OrfEpisodeInfoDTO { - private final OrfVideoInfoDTO videoInfo; - private final Optional description; - private final Optional duration; - private final Optional title; - - public OrfEpisodeInfoDTO(final OrfVideoInfoDTO aVideoInfo, - final Optional aTitle, - final Optional aDescription, - final Optional aDuration - ) { - title = aTitle; - description = aDescription; - duration = aDuration; - videoInfo = aVideoInfo; - } - - public OrfVideoInfoDTO getVideoInfo() { - return videoInfo; - } - - public Optional getDescription() { - return description; - } - - public Optional getDuration() { - return duration; - } - - public Optional getTitle() { - return title; - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfVideoInfoDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orf/OrfVideoInfoDTO.java deleted file mode 100644 index 596fa9393..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/OrfVideoInfoDTO.java +++ /dev/null @@ -1,50 +0,0 @@ -package de.mediathekview.mserver.crawler.orf; - -import java.util.EnumMap; -import java.util.Map; -import de.mediathekview.mlib.daten.Resolution; - -public class OrfVideoInfoDTO { - - private static final String FILTER_JUGENDSCHUTZ = ".*/Jugendschutz\\d{4}b\\d{4}_.*"; - private final Map videoUrls; - private String subtitleUrl; - - public OrfVideoInfoDTO() { - videoUrls = new EnumMap<>(Resolution.class); - } - - public boolean hasVideoUrls() { - return !videoUrls.isEmpty(); - } - - public Resolution getDefaultQuality() { - if (videoUrls.containsKey(Resolution.NORMAL)) { - return Resolution.NORMAL; - } - return videoUrls.keySet().iterator().next(); - } - - public String getDefaultVideoUrl() { - return videoUrls.get(getDefaultQuality()); - } - - public String getSubtitleUrl() { - return subtitleUrl; - } - - public Map getVideoUrls() { - return videoUrls; - } - - public String put(final Resolution key, final String value) { - if (value == null || value.matches(FILTER_JUGENDSCHUTZ)) { - return ""; - } - return videoUrls.put(key, value); - } - - public void setSubtitleUrl(final String subtitleUrl) { - this.subtitleUrl = subtitleUrl; - } -} \ No newline at end of file diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializer.java deleted file mode 100644 index 45b52710b..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializer.java +++ /dev/null @@ -1,26 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.json; - -import com.google.gson.JsonDeserializationContext; -import com.google.gson.JsonDeserializer; -import com.google.gson.JsonElement; -import de.mediathekview.mserver.base.utils.JsonUtils; -import de.mediathekview.mserver.base.utils.UrlUtils; -import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfConstants; - -import java.lang.reflect.Type; -import java.util.Optional; - -public class OrfMoreEpisodesDeserializer implements JsonDeserializer { - - private static final String ATTRIBUTE_URL = "url"; - - @Override - public CrawlerUrlDTO deserialize( - JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) { - - final Optional url = - JsonUtils.getAttributeAsString(jsonElement.getAsJsonObject(), ATTRIBUTE_URL); - return url.map(s -> new CrawlerUrlDTO(UrlUtils.addDomainIfMissing(s, OrfConstants.URL_BASE))).orElse(null); - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParser.java b/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParser.java deleted file mode 100644 index 28a6c3418..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParser.java +++ /dev/null @@ -1,25 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.parser; - -import de.mediathekview.mserver.base.HtmlConsts; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import java.util.ArrayList; -import java.util.List; -import org.jsoup.nodes.Document; - -public class OrfMoreEpisodesParser { - private static final String EPISODES_SELECTOR = "article.b-teaser > a.teaser-link"; - - public List parse(final Document document, final String topic) { - final List result = new ArrayList<>(); - - document - .select(EPISODES_SELECTOR) - .forEach( - episode -> { - final String url = episode.attr(HtmlConsts.ATTRIBUTE_HREF); - result.add(new TopicUrlDTO(topic, url)); - }); - - return result; - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializer.java deleted file mode 100644 index 9716a1e03..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializer.java +++ /dev/null @@ -1,110 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.parser; - -import com.google.gson.JsonArray; -import com.google.gson.JsonDeserializationContext; -import com.google.gson.JsonDeserializer; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import de.mediathekview.mserver.base.utils.JsonUtils; -import de.mediathekview.mserver.crawler.orf.OrfEpisodeInfoDTO; -import de.mediathekview.mserver.crawler.orf.OrfVideoInfoDTO; -import java.lang.reflect.Type; -import java.time.Duration; -import java.util.ArrayList; -import java.util.List; -import java.util.Optional; - -public class OrfPlaylistDeserializer implements JsonDeserializer> { - - private static final String ELEMENT_GAPLESS_VIDEO = "gapless_video"; - private static final String ELEMENT_PLAYLIST = "playlist"; - private static final String ELEMENT_VIDEOS = "videos"; - - private static final String ATTRIBUTE_TITLE = "title"; - private static final String ATTRIBUTE_DESCRIPTION = "description"; - private static final String ATTRIBUTE_DURATION = "duration"; - private static final String ATTRIBUTE_DURATION_IN_SECONDS = "duration_in_seconds"; - - @Override - public List deserialize( - JsonElement aJsonElement, Type aType, JsonDeserializationContext aContext) { - - List episodes = new ArrayList<>(); - - if (!aJsonElement.getAsJsonObject().has(ELEMENT_PLAYLIST)) { - return episodes; - } - - JsonObject playlistObject = - aJsonElement.getAsJsonObject().get(ELEMENT_PLAYLIST).getAsJsonObject(); - if (JsonUtils.hasElements(playlistObject, ELEMENT_GAPLESS_VIDEO)) { - parseGaplessVideo(episodes, playlistObject); - } - - parseVideos(episodes, playlistObject); - - return episodes; - } - - private void parseGaplessVideo(List aEpisodes, JsonObject aPlaylistObject) { - - final Optional title = JsonUtils.getAttributeAsString(aPlaylistObject, ATTRIBUTE_TITLE); - final Optional duration = parseDurationInSeconds(aPlaylistObject); - - final Optional videoInfoOptional = - parseUrls(aPlaylistObject.getAsJsonObject(ELEMENT_GAPLESS_VIDEO)); - - if (videoInfoOptional.isPresent()) { - OrfEpisodeInfoDTO episode = - new OrfEpisodeInfoDTO(videoInfoOptional.get(), title, Optional.empty(), duration); - aEpisodes.add(episode); - } - } - - private void parseVideos(List aEpisodes, JsonObject aPlaylistObject) { - JsonArray videosArray = aPlaylistObject.getAsJsonObject().get(ELEMENT_VIDEOS).getAsJsonArray(); - - for (JsonElement videoElement : videosArray) { - JsonObject videoObject = videoElement.getAsJsonObject(); - final Optional title = JsonUtils.getAttributeAsString(videoObject, ATTRIBUTE_TITLE); - final Optional description = - JsonUtils.getAttributeAsString(videoObject, ATTRIBUTE_DESCRIPTION); - final Optional duration = parseDuration(videoObject); - - final Optional videoInfoOptional = parseUrls(videoObject); - - if (videoInfoOptional.isPresent()) { - OrfEpisodeInfoDTO episode = - new OrfEpisodeInfoDTO(videoInfoOptional.get(), title, description, duration); - aEpisodes.add(episode); - } - } - } - - private Optional parseUrls(final JsonObject aVideoObject) { - - OrfVideoDetailDeserializer deserializer = new OrfVideoDetailDeserializer(); - return deserializer.deserializeVideoObject(aVideoObject); - } - - private static Optional parseDuration(final JsonObject aVideoObject) { - if (aVideoObject.has(ATTRIBUTE_DURATION)) { - Long durationValue = aVideoObject.get(ATTRIBUTE_DURATION).getAsLong(); - - // Duration ist in Millisekunden angegeben, diese interessieren aber nicht - return Optional.of(Duration.ofSeconds(durationValue / 1000)); - } - - return Optional.empty(); - } - - private static Optional parseDurationInSeconds(final JsonObject aVideoObject) { - if (aVideoObject.has(ATTRIBUTE_DURATION_IN_SECONDS)) { - Double durationValue = aVideoObject.get(ATTRIBUTE_DURATION_IN_SECONDS).getAsDouble(); - - return Optional.of(Duration.ofSeconds(durationValue.longValue())); - } - - return Optional.empty(); - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfVideoDetailDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfVideoDetailDeserializer.java deleted file mode 100644 index 2a9c70b11..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfVideoDetailDeserializer.java +++ /dev/null @@ -1,163 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.parser; - -import com.google.gson.JsonDeserializationContext; -import com.google.gson.JsonDeserializer; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import de.mediathekview.mlib.daten.Resolution; -import de.mediathekview.mserver.crawler.orf.OrfVideoInfoDTO; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.lang.reflect.Type; -import java.util.Optional; - -import static de.mediathekview.mserver.base.HtmlConsts.ATTRIBUTE_SRC; - -public class OrfVideoDetailDeserializer implements JsonDeserializer> { - - private static final Logger LOG = LogManager.getLogger(OrfVideoDetailDeserializer.class); - - private static final String WRONG_HTTPS_URL_PART = ".apa."; - private static final String RIGHT_HTTPS_URL_PART = ".sf.apa."; - - private static final String ELEMENT_PLAYLIST = "playlist"; - private static final String ELEMENT_VIDEOS = "videos"; - private static final String ELEMENT_SUBTITLES = "subtitles"; - private static final String ELEMENT_SOURCES = "sources"; - - private static final String ATTRIBUTE_DELIVERY = "delivery"; - private static final String ATTRIBUTE_PROTOCOL = "protocol"; - private static final String ATTRIBUTE_QUALITY = "quality"; - private static final String ATTRIBUTE_TYPE = "type"; - - private static final String RELEVANT_DELIVERY1 = "progressive"; - private static final String RELEVANT_DELIVERY2 = "hls"; - private static final String RELEVANT_PROTOCOL = "http"; - private static final String RELEVANT_SUBTITLE_TYPE = "ttml"; - private static final String RELEVANT_VIDEO_TYPE1 = "video/mp4"; - private static final String RELEVANT_VIDEO_TYPE2 = "application/x-mpegURL"; - - private static String fixHttpsUrl(final String url) { - if (url.contains(RIGHT_HTTPS_URL_PART)) { - return url; - } - return url.replace(WRONG_HTTPS_URL_PART, RIGHT_HTTPS_URL_PART); - } - - private static void parseVideo(final JsonElement aVideoElement, final OrfVideoInfoDTO dto) { - if (aVideoElement.isJsonArray()) { - aVideoElement - .getAsJsonArray() - .forEach( - videoElement -> { - final JsonObject videoObject = videoElement.getAsJsonObject(); - if (videoObject.has(ATTRIBUTE_PROTOCOL) - && videoObject.has(ATTRIBUTE_QUALITY) - && videoObject.has(ATTRIBUTE_SRC) - && videoObject.has(ATTRIBUTE_TYPE)) { - final String type = videoObject.get(ATTRIBUTE_TYPE).getAsString(); - final String protocol = videoObject.get(ATTRIBUTE_PROTOCOL).getAsString(); - final String delivery = videoObject.get(ATTRIBUTE_DELIVERY).getAsString(); - - if (isVideoRelevant(type, protocol, delivery)) { - final String quality = videoObject.get(ATTRIBUTE_QUALITY).getAsString(); - final String url = fixHttpsUrl(videoObject.get(ATTRIBUTE_SRC).getAsString()); - - final Optional resolution = getQuality(quality); - resolution.ifPresent(resolution1 -> dto.put(resolution1, url)); - } - } - }); - } - } - - public Optional deserializeVideoObject(final JsonObject aVideoObject) { - final OrfVideoInfoDTO dto = new OrfVideoInfoDTO(); - - if (aVideoObject.has(ELEMENT_SOURCES)) { - parseVideo(aVideoObject.get(ELEMENT_SOURCES), dto); - } - - if (aVideoObject.has(ELEMENT_SUBTITLES)) { - parseSubtitles(aVideoObject.get(ELEMENT_SUBTITLES), dto); - } - - if (dto.hasVideoUrls()) { - return Optional.of(dto); - } - - return Optional.empty(); - } - - private static boolean isVideoRelevant( - final String type, final String protocol, final String delivery) { - return (type.equalsIgnoreCase(RELEVANT_VIDEO_TYPE1) - || type.equalsIgnoreCase(RELEVANT_VIDEO_TYPE2)) - && protocol.equalsIgnoreCase(RELEVANT_PROTOCOL) - && (delivery.equalsIgnoreCase(RELEVANT_DELIVERY1) - || delivery.equalsIgnoreCase(RELEVANT_DELIVERY2)); - } - - private static void parseSubtitles( - final JsonElement aSubtitlesElement, final OrfVideoInfoDTO dto) { - if (aSubtitlesElement.isJsonArray()) { - aSubtitlesElement - .getAsJsonArray() - .forEach( - subtitleElement -> { - final JsonObject subtitleObject = subtitleElement.getAsJsonObject(); - if (subtitleObject.has(ATTRIBUTE_SRC) && subtitleObject.has(ATTRIBUTE_TYPE)) { - final String type = subtitleObject.get(ATTRIBUTE_TYPE).getAsString(); - - if (type.equalsIgnoreCase(RELEVANT_SUBTITLE_TYPE)) { - final String url = fixHttpsUrl(subtitleObject.get(ATTRIBUTE_SRC).getAsString()); - dto.setSubtitleUrl(url); - } - } - }); - } - } - - private static Optional getQuality(final String aQuality) { - switch (aQuality) { - case "Q1A": - return Optional.of(Resolution.VERY_SMALL); - case "Q4A": - return Optional.of(Resolution.SMALL); - case "Q6A": - return Optional.of(Resolution.NORMAL); - case "Q8C": - return Optional.of(Resolution.HD); - case "Q0A": - // QXA/QXB(DRM): another m3u8 has to be loaded which is often geoblocked - case "QXA": - case "QXADRM": - case "QXB": - case "QXBDRM": - case "Q8A": - return Optional.empty(); - default: - LOG.debug("ORF: unknown quality: {}", aQuality); - } - return Optional.empty(); - } - - @Override - public Optional deserialize( - final JsonElement aJsonElement, final Type aType, final JsonDeserializationContext aContext) { - - final JsonObject jsonObject = aJsonElement.getAsJsonObject(); - if (jsonObject.has(ELEMENT_PLAYLIST)) { - final JsonObject playlistObject = jsonObject.get(ELEMENT_PLAYLIST).getAsJsonObject(); - if (playlistObject.has(ELEMENT_VIDEOS)) { - final JsonObject videoObject = - playlistObject.get(ELEMENT_VIDEOS).getAsJsonArray().get(0).getAsJsonObject(); - - return deserializeVideoObject(videoObject); - } - } - - return Optional.empty(); - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTask.java b/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTask.java deleted file mode 100644 index b9312c748..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTask.java +++ /dev/null @@ -1,52 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.HtmlConsts; -import de.mediathekview.mserver.crawler.basic.*; -import org.jsoup.nodes.Document; -import org.jsoup.nodes.Element; -import org.jsoup.select.Elements; - -import java.util.Queue; - -public class OrfDayTask extends AbstractDocumentTask { - - private static final String ITEM_SELECTOR = "article a"; - private static final String TITLE_SELECTOR1 = ".item-title"; - private static final String TITLE_SELECTOR2 = ".teaser-title"; - - public OrfDayTask( - final AbstractCrawler crawler, - final Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs); - } - - @Override - protected void processDocument(final CrawlerUrlDTO urlDto, final Document document) { - final Elements elements = document.select(ITEM_SELECTOR); - elements.forEach( - item -> { - final Element titleElement = getTitleElement(item); - if (titleElement != null) { - final String theme = OrfHelper.parseTheme(titleElement.text()); - final String url = item.attr(HtmlConsts.ATTRIBUTE_HREF); - - final TopicUrlDTO dto = new TopicUrlDTO(theme, url); - taskResults.add(dto); - } - }); - } - - private Element getTitleElement(final Element item) { - Element titleElement = item.selectFirst(TITLE_SELECTOR1); - if (titleElement == null) { - titleElement = item.selectFirst(TITLE_SELECTOR2); - } - return titleElement; - } - - @Override - protected AbstractUrlTask createNewOwnInstance( - final Queue aUrlsToCrawl) { - return new OrfDayTask(crawler, aUrlsToCrawl); - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTask.java b/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTask.java deleted file mode 100644 index b3544fd9f..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTask.java +++ /dev/null @@ -1,306 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import com.google.gson.reflect.TypeToken; -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mlib.daten.FilmUrl; -import de.mediathekview.mlib.daten.GeoLocations; -import de.mediathekview.mlib.daten.Resolution; -import de.mediathekview.mserver.base.utils.HtmlDocumentUtils; -import de.mediathekview.mserver.crawler.basic.*; -import de.mediathekview.mserver.crawler.orf.OrfEpisodeInfoDTO; -import de.mediathekview.mserver.crawler.orf.OrfVideoInfoDTO; -import de.mediathekview.mserver.crawler.orf.json.OrfMoreEpisodesDeserializer; -import de.mediathekview.mserver.crawler.orf.parser.OrfMoreEpisodesParser; -import de.mediathekview.mserver.crawler.orf.parser.OrfPlaylistDeserializer; -import org.apache.commons.lang3.StringUtils; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; -import org.jsoup.nodes.Document; - -import java.io.IOException; -import java.lang.reflect.Type; -import java.net.MalformedURLException; -import java.net.URL; -import java.time.Duration; -import java.time.LocalDateTime; -import java.time.format.DateTimeFormatter; -import java.time.format.DateTimeParseException; -import java.time.temporal.ChronoUnit; -import java.util.*; -import java.util.concurrent.ConcurrentLinkedQueue; - -public class OrfFilmDetailTask extends AbstractDocumentTask { - - private static final Logger LOG = LogManager.getLogger(OrfFilmDetailTask.class); - - private static final String TITLE_SELECTOR = ".description-container .description-title"; - private static final String VIDEO_META_DATA_SELECTOR = ".video-meta-data"; - private static final String TIME_SELECTOR = VIDEO_META_DATA_SELECTOR + " time"; - private static final String DURATION_SELECTOR = VIDEO_META_DATA_SELECTOR + " span.duration"; - private static final String DESCRIPTION_SELECTOR = ".description-container .description-text"; - private static final String VIDEO_SELECTOR = "div.jsb_VideoPlaylist"; - private static final String MORE_EPISODES_SELECTOR = "div.more-episodes"; - - private static final String ATTRIBUTE_DATETIME = "datetime"; - private static final String ATTRIBUTE_DATA_JSB = "data-jsb"; - private static final String PREFIX_AUDIO_DESCRIPTION = "AD |"; - - private static final DateTimeFormatter DATE_TIME_FORMATTER = - DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); - - private static final Type CRAWLER_URL_TYPE_TOKEN = new TypeToken() {}.getType(); - private static final Type LIST_EPISODEINFO_TYPE_TOKEN = - new TypeToken>() {}.getType(); - private final boolean processMoreEpisodes; - - public OrfFilmDetailTask( - final AbstractCrawler aCrawler, final Queue aUrlToCrawlDtos, boolean processMoreEpisodes) { - super(aCrawler, aUrlToCrawlDtos); - - this.processMoreEpisodes = processMoreEpisodes; - } - - private static Optional parseDate(final Document aDocument) { - final Optional date = - HtmlDocumentUtils.getElementAttributeString(TIME_SELECTOR, ATTRIBUTE_DATETIME, aDocument); - if (date.isPresent()) { - final String dateValue = date.get().replace("CET", " ").replace("CEST", " "); - try { - final LocalDateTime localDate = LocalDateTime.parse(dateValue, DATE_TIME_FORMATTER); - return Optional.of(localDate); - } catch (final DateTimeParseException e) { - LOG.debug("OrfFilmDetailTask: unknown date format: {}", date.get()); - } - } - - return Optional.empty(); - } - - private static Optional parseDuration(final Document aDocument) { - final Optional duration = - HtmlDocumentUtils.getElementString(DURATION_SELECTOR, aDocument); - if (!duration.isPresent()) { - return Optional.empty(); - } - - final Optional unit = determineChronoUnit(duration.get()); - if (!unit.isPresent()) { - LOG.debug("OrfFilmDetailTask: unknown duration type: {}", duration.get()); - return Optional.empty(); - } - - final String[] parts = duration.get().split(" ")[0].trim().split(":"); - if (parts.length != 2) { - LOG.debug("OrfFilmDetailTask: unknown duration part count: {}", duration.get()); - return Optional.empty(); - } - - final ChronoUnit unitValue = unit.get(); - if (unitValue == ChronoUnit.SECONDS || unitValue == ChronoUnit.MINUTES) { - return Optional.of( - Duration.ofMinutes(Long.parseLong(parts[0])).plusSeconds(Long.parseLong(parts[1]))); - } - if (unitValue == ChronoUnit.HOURS) { - return Optional.of( - Duration.ofHours(Long.parseLong(parts[0])).plusMinutes(Long.parseLong(parts[1]))); - } - - return Optional.empty(); - } - - private static Optional determineChronoUnit(final String aDuration) { - if (aDuration.contains("Min.")) { - return Optional.of(ChronoUnit.MINUTES); - } - if (aDuration.contains("Std.")) { - return Optional.of(ChronoUnit.HOURS); - } - if (aDuration.contains("Sek.")) { - return Optional.of(ChronoUnit.SECONDS); - } - - return Optional.empty(); - } - - @Override - protected void processDocument(final TopicUrlDTO aUrlDto, final Document aDocument) { - final Optional title = HtmlDocumentUtils.getElementString(TITLE_SELECTOR, aDocument); - final Optional time = parseDate(aDocument); - final Optional duration = parseDuration(aDocument); - final Optional description = - HtmlDocumentUtils.getElementString(DESCRIPTION_SELECTOR, aDocument); - - final List episodes = parseEpisodes(aDocument); - if (episodes.size() > 1) { - crawler.incrementMaxCountBySizeAndGetNewSize(episodes.size() - 1L); - crawler.updateProgress(); - } - - for (int i = 0; i < episodes.size(); i++) { - final OrfEpisodeInfoDTO episode = episodes.get(i); - if (i == 0) { - createFilm(aUrlDto, episode.getVideoInfo(), title, description, time, duration); - } else { - createFilm( - aUrlDto, - episode.getVideoInfo(), - episode.getTitle(), - episode.getDescription(), - time, - episode.getDuration()); - } - } - - if (processMoreEpisodes) { - final List topicUrlDTOS = parseMoreEpisodes(aDocument, aUrlDto.getTopic()); - topicUrlDTOS.remove(aUrlDto); - processMoreEpisodes(topicUrlDTOS); - } - } - - @Override - protected AbstractUrlTask createNewOwnInstance( - final Queue aUrlsToCrawl) { - return createNewOwnInstance(aUrlsToCrawl, processMoreEpisodes); - } - - private AbstractUrlTask createNewOwnInstance(final Queue urlsToCrawl, boolean processMoreEpisodes) { - return new OrfFilmDetailTask(crawler, urlsToCrawl, processMoreEpisodes); - } - - private void createFilm( - final TopicUrlDTO aUrlDto, - final OrfVideoInfoDTO aVideoInfo, - final Optional aTitle, - final Optional aDescription, - final Optional aTime, - final Optional aDuration) { - - try { - if (aTitle.isPresent()) { - boolean isAudioDescription = aUrlDto.getTopic().startsWith(PREFIX_AUDIO_DESCRIPTION); - - final Film film = - new Film( - UUID.randomUUID(), - crawler.getSender(), - isAudioDescription - ? trimAudioDescriptionPrefix(aTitle.get()) - : aTitle.get(), - isAudioDescription - ? trimAudioDescriptionPrefix(aUrlDto.getTopic()) - : aUrlDto.getTopic(), - aTime.orElse(LocalDateTime.now()), - aDuration.orElse(Duration.ZERO)); - - film.setWebsite(new URL(aUrlDto.getUrl())); - aDescription.ifPresent(film::setBeschreibung); - - if (StringUtils.isNotBlank(aVideoInfo.getSubtitleUrl())) { - film.addSubtitle(new URL(aVideoInfo.getSubtitleUrl())); - } - - addUrls(film, aVideoInfo.getVideoUrls(), isAudioDescription); - - setGeoLocations(aVideoInfo, film); - - taskResults.add(film); - crawler.incrementAndGetActualCount(); - crawler.updateProgress(); - } else { - LOG.error("OrfFilmDetailTask: no title or video found for url {}", aUrlDto.getUrl()); - crawler.incrementAndGetErrorCount(); - crawler.updateProgress(); - } - } catch (final MalformedURLException ex) { - LOG.fatal("A ORF URL can't be parsed.", ex); - crawler.printErrorMessage(); - crawler.incrementAndGetErrorCount(); - crawler.updateProgress(); - } - } - - private String trimAudioDescriptionPrefix(String text) { - return text.substring(PREFIX_AUDIO_DESCRIPTION.length()); - } - - private void setGeoLocations(final OrfVideoInfoDTO aVideoInfo, final Film film) { - final List geoLocations = new ArrayList<>(); - if (aVideoInfo.getDefaultVideoUrl().contains("cms-austria")) { - geoLocations.add(GeoLocations.GEO_AT); - } else { - geoLocations.add(GeoLocations.GEO_NONE); - } - film.setGeoLocations(geoLocations); - } - - private void addUrls( - final Film aFilm, final Map aVideoUrls, boolean isAudioDescription) - throws MalformedURLException { - - for (final Map.Entry qualitiesEntry : aVideoUrls.entrySet()) { - final String url = qualitiesEntry.getValue(); - final FilmUrl filmUrl = new FilmUrl(url, crawler.determineFileSizeInKB(url)); - final Resolution key = qualitiesEntry.getKey(); - - if (isAudioDescription) { - aFilm.addAudioDescription(key, filmUrl); - } else { - aFilm.addUrl(key, filmUrl); - } - - } - } - - private List parseEpisodes(final Document aDocument) { - final Optional json = - HtmlDocumentUtils.getElementAttributeString(VIDEO_SELECTOR, ATTRIBUTE_DATA_JSB, aDocument); - - if (json.isPresent()) { - - final Gson gson = - new GsonBuilder() - .registerTypeAdapter(LIST_EPISODEINFO_TYPE_TOKEN, new OrfPlaylistDeserializer()) - .create(); - - return gson.fromJson(json.get(), LIST_EPISODEINFO_TYPE_TOKEN); - } - - return new ArrayList<>(); - } - - private List parseMoreEpisodes(final Document document, final String topic) { - final Optional json = HtmlDocumentUtils.getElementAttributeString(MORE_EPISODES_SELECTOR, ATTRIBUTE_DATA_JSB, document); - if (json.isPresent()) { - final Gson gson = - new GsonBuilder() - .registerTypeAdapter(CRAWLER_URL_TYPE_TOKEN, new OrfMoreEpisodesDeserializer()) - .create(); - - CrawlerUrlDTO moreEpisodesUrl = gson.fromJson(json.get(), CRAWLER_URL_TYPE_TOKEN); - if (moreEpisodesUrl != null) { - try { - final Document moreEpisodesDocument = crawler.requestBodyAsHtmlDocument(moreEpisodesUrl.getUrl()); - OrfMoreEpisodesParser parser = new OrfMoreEpisodesParser(); - return parser.parse(moreEpisodesDocument, topic); - } catch (IOException e) { - LOG.error("OrfFilmDetailTask: loading more episodes url {} failed.", moreEpisodesUrl.getUrl()); - crawler.incrementAndGetErrorCount(); - } - } - } - - return new ArrayList<>(); - } - - private void processMoreEpisodes(final List moreFilms) { - if (moreFilms != null && !moreFilms.isEmpty()) { - final Queue queue = new ConcurrentLinkedQueue<>(moreFilms); - final OrfFilmDetailTask task = (OrfFilmDetailTask) createNewOwnInstance(queue, false); - task.fork(); - taskResults.addAll(task.join()); - } - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelper.java b/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelper.java deleted file mode 100644 index 900e37f46..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelper.java +++ /dev/null @@ -1,61 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.HtmlConsts; -import de.mediathekview.mserver.crawler.orf.OrfConstants; -import org.jsoup.nodes.Document; -import org.jsoup.nodes.Element; -import org.jsoup.select.Elements; - -import java.util.ArrayList; -import java.util.List; - -/** Helper methods for ORF tasks. */ -class OrfHelper { - - private static final String LETTER_URL_SELECTOR = "li.letter-item > a"; - - private OrfHelper() {} - - static String parseTheme(final Element aItem) { - final String theme = aItem.attr(HtmlConsts.ATTRIBUTE_TITLE); - return parseTheme(theme); - } - - static String parseTheme(final String theme) { - final String result = theme.replaceAll("\\d{1,2}:\\d{2}$", "").trim(); - // Thema steht vor Doppelpunkt - // Ausnahmen - // - ZIB-Sendungen mit Uhrzeit - // - DokEins-Sendungen - // - Ungarisches Magazin - final int index = result.indexOf(':'); - if (index > 0 - && !result.startsWith("ZIB") - && !result.startsWith("DOKeins") - && !result.contains("Ungarisches Magazin")) { - return result.substring(0, index).trim(); - } - return result; - } - - /** - * determines the links to the letter pages. - * - * @param aDocument the html document with letter links - * @return list with urls - */ - static List parseLetterLinks(final Document aDocument) { - final List results = new ArrayList<>(); - - final Elements links = aDocument.select(LETTER_URL_SELECTOR); - links.forEach( - element -> { - if (element.hasAttr(HtmlConsts.ATTRIBUTE_HREF)) { - final String subpage = element.attr(HtmlConsts.ATTRIBUTE_HREF); - results.add(OrfConstants.URL_BASE + subpage); - } - }); - - return results; - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTask.java b/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTask.java deleted file mode 100644 index 567992534..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTask.java +++ /dev/null @@ -1,42 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.HtmlConsts; -import de.mediathekview.mserver.crawler.basic.AbstractCrawler; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfConstants; -import org.jsoup.nodes.Document; -import org.jsoup.select.Elements; - -import java.util.Queue; -import java.util.concurrent.Callable; -import java.util.concurrent.ConcurrentLinkedQueue; - -public class OrfHistoryOverviewTask implements Callable> { - - private static final String TOPIC_URL_SELECTOR = "section.has-4-in-row article > a"; - - private final AbstractCrawler crawler; - - public OrfHistoryOverviewTask( - final AbstractCrawler aCrawler) { - crawler = aCrawler; - } - - @Override - public Queue call() throws Exception { - final Queue results = new ConcurrentLinkedQueue<>(); - - // URLs für Seiten parsen - final Document document = crawler.requestBodyAsHtmlDocument(OrfConstants.URL_ARCHIVE); - - final Elements topics = document.select(TOPIC_URL_SELECTOR); - topics.forEach( - topicElement -> { - final String url = topicElement.attr(HtmlConsts.ATTRIBUTE_HREF); - final String topic = topicElement.attr(HtmlConsts.ATTRIBUTE_TITLE); - results.add(new TopicUrlDTO(topic, url)); - }); - - return results; - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTask.java b/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTask.java deleted file mode 100644 index 546844237..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTask.java +++ /dev/null @@ -1,39 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.HtmlConsts; -import de.mediathekview.mserver.crawler.basic.AbstractCrawler; -import de.mediathekview.mserver.crawler.basic.AbstractDocumentTask; -import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import org.jsoup.nodes.Document; - -import java.util.Queue; - -public class OrfHistoryTopicTask extends AbstractDocumentTask { - - private static final String SHOW_URL_SELECTOR = "article > a"; - - public OrfHistoryTopicTask( - final AbstractCrawler crawler, - final Queue urlToCrawlDTOs - ) { - super(crawler, urlToCrawlDTOs); - } - - @Override - protected AbstractRecursiveConverterTask createNewOwnInstance( - final Queue aElementsToProcess) { - return new OrfHistoryTopicTask(crawler, aElementsToProcess); - } - - @Override - protected void processDocument(final TopicUrlDTO aUrlDto, final Document aDocument) { - aDocument - .select(SHOW_URL_SELECTOR) - .forEach( - showElement -> { - final String url = showElement.attr(HtmlConsts.ATTRIBUTE_HREF); - taskResults.add(new TopicUrlDTO(aUrlDto.getTopic(), url)); - }); - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTask.java b/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTask.java deleted file mode 100644 index d4ea67344..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTask.java +++ /dev/null @@ -1,70 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.HtmlConsts; -import de.mediathekview.mserver.crawler.basic.AbstractCrawler; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfConstants; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; -import org.jsoup.nodes.Document; -import org.jsoup.select.Elements; - -import java.io.IOException; -import java.util.List; -import java.util.Queue; -import java.util.concurrent.Callable; -import java.util.concurrent.ConcurrentLinkedQueue; - -public class OrfLetterPageTask implements Callable> { - - private static final Logger LOG = LogManager.getLogger(OrfLetterPageTask.class); - - private static final String SHOW_URL_SELECTOR = "article > a"; - private final AbstractCrawler crawler; - - /** @param aCrawler The crawler which uses this task. */ - public OrfLetterPageTask(final AbstractCrawler aCrawler) { - crawler = aCrawler; - } - - @Override - public Queue call() throws Exception { - final Queue results = new ConcurrentLinkedQueue<>(); - - // URLs für Seiten parsen - final Document document = crawler.getConnection().requestBodyAsHtmlDocument(OrfConstants.URL_SHOW_LETTER_PAGE_A); - final List overviewLinks = OrfHelper.parseLetterLinks(document); - - // Sendungen für die einzelnen Seiten pro Buchstabe ermitteln - overviewLinks.forEach( - url -> { - try { - final Document subpageDocument = crawler.requestBodyAsHtmlDocument(url); - results.addAll(parseOverviewPage(subpageDocument)); - } catch (final IOException ex) { - LOG.fatal("OrfLetterPageTask: error parsing url {}", url, ex); - } catch (final NullPointerException e) { - LOG.fatal(e); - } - }); - - return results; - } - - private Queue parseOverviewPage(final Document aDocument) { - final Queue results = new ConcurrentLinkedQueue<>(); - - final Elements links = aDocument.select(SHOW_URL_SELECTOR); - links.forEach( - element -> { - if (element.hasAttr(HtmlConsts.ATTRIBUTE_HREF)) { - final String link = element.attr(HtmlConsts.ATTRIBUTE_HREF); - final String theme = OrfHelper.parseTheme(element); - - results.add(new TopicUrlDTO(theme, link)); - } - }); - - return results; - } -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java new file mode 100644 index 000000000..90a8bd82e --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java @@ -0,0 +1,61 @@ +package de.mediathekview.mserver.crawler.orfon; + +import java.util.ArrayList; +import java.util.List; +import java.util.Objects; + +import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; + +public class OrfOnBreadCrumsUrlDTO extends CrawlerUrlDTO { + private List breadCrums = new ArrayList<>(); + + public OrfOnBreadCrumsUrlDTO(String breadCrum, String aUrl) { + super(aUrl); + setBreadCrums(List.of(breadCrum)); + } + public OrfOnBreadCrumsUrlDTO(List breadCrums, String aUrl) { + super(aUrl); + setBreadCrums(breadCrums); + } + + public List getBreadCrums() { + return breadCrums; + } + + public void setBreadCrums(List breadCrums) { + this.breadCrums = breadCrums; + } + + public void setBreadCrumsPath(List breadCrums) { + List fullPath = new ArrayList<>(); + fullPath.addAll(breadCrums); + fullPath.addAll(getBreadCrums()); + setBreadCrums(fullPath); + } + + public boolean addBreadCrum(String value) { + if (!breadCrums.contains(value)) { + breadCrums.add(value); + return true; + } + return false; + } + + @Override + public boolean equals(final Object obj) { + if (obj == null || getClass() != obj.getClass()) { + return false; + } + + if (super.equals(obj)) { + return breadCrums.containsAll(((OrfOnBreadCrumsUrlDTO)obj).breadCrums); + } + + return false; + } + + @Override + public int hashCode() { + return Objects.hash(super.hashCode(), this.breadCrums); + } +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java new file mode 100644 index 000000000..9404439b5 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java @@ -0,0 +1,23 @@ +package de.mediathekview.mserver.crawler.orfon; + +public final class OrfOnConstants { + // + public static final String HOST = "https://api-tvthek.orf.at/api/v4.3"; + // + public static final String SCHEDULE = HOST + "/schedule"; + // + public static final String AZ = HOST + "/profiles/lettergroup"; + public static final int PAGE_SIZE = 200; + // + public static final String HISTORY = HOST + "/history"; + // + public static final String EPISODE = HOST + "/episode"; + // + public static final String AUTH = "Basic b3JmX29uX3Y0MzpqRlJzYk5QRmlQU3h1d25MYllEZkNMVU41WU5aMjhtdA=="; + // + private OrfOnConstants() {} + // + public static String createMaxLimmitUrl(String plainUrl) { + return plainUrl + "?limit=" + OrfOnConstants.PAGE_SIZE; + } +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java new file mode 100644 index 000000000..00894ef43 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -0,0 +1,149 @@ +package de.mediathekview.mserver.crawler.orfon; + +import de.mediathekview.mlib.daten.Film; +import de.mediathekview.mlib.daten.Sender; +import de.mediathekview.mlib.messages.listener.MessageListener; +import de.mediathekview.mserver.base.config.MServerConfigManager; +import de.mediathekview.mserver.base.messages.ServerMessages; +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnAZTask; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodeTask; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodesTask; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnHistoryChildrenTask; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnHistoryTask; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnHistoryVideoItemTask; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnScheduleTask; +import de.mediathekview.mserver.progress.listeners.SenderProgressListener; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; +import java.util.Collection; +import java.util.HashSet; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.ForkJoinPool; +import java.util.concurrent.ForkJoinTask; +import java.util.concurrent.RecursiveTask; + +public class OrfOnCrawler extends AbstractCrawler { + private static final Logger LOG = LogManager.getLogger(OrfOnCrawler.class); + private static final DateTimeFormatter DAY_PAGE_DATE_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd"); + + public OrfOnCrawler( + final ForkJoinPool aForkJoinPool, + final Collection aMessageListeners, + final Collection aProgressListeners, + final MServerConfigManager aRootConfig) { + super(aForkJoinPool, aMessageListeners, aProgressListeners, aRootConfig); + } + + @Override + public Sender getSender() { + return Sender.ORF; + } + + @Override + protected RecursiveTask> createCrawlerTask() { + Set allVideos = new HashSet<>(); + try { + // Sendungen Verpasst (letzten 14 Tage) + // TAG > Episode > Episode2Film + final Set epsiodesFromDay = processDayUrlsToCrawl(); + allVideos.addAll(epsiodesFromDay); + printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + getAndSetMaxCount(allVideos.size()); + + if (Boolean.TRUE.equals(crawlerConfig.getTopicsSearchEnabled())) { + // + // Sendungen a-z + // Buchstabe > Episoden > Episode2Film + final Set videosFromTopics = processAZUrlsToCrawl(); + allVideos.addAll(videosFromTopics); + printMessage( + ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + getAndSetMaxCount(allVideos.size()); + // + // History (top categories) > children > VideoItem > Episode > Episode2Film + final Set historyVideos = processHistoryUrlToCrawl(); + allVideos.addAll(historyVideos); + printMessage( + ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + getAndSetMaxCount(allVideos.size()); + } + // + return new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(allVideos)); + } catch (final Exception ex) { + LOG.fatal("Exception in ORFON crawler.", ex); + Thread.currentThread().interrupt(); + } + + return null; + } + + private Set processDayUrlsToCrawl() throws InterruptedException, ExecutionException { + final ForkJoinTask> dayTask = forkJoinPool.submit(new OrfOnScheduleTask(this, createDayUrlsToCrawl())); + final Set dayTaskFilms = dayTask.get(); + return dayTaskFilms; + } + + private Queue createDayUrlsToCrawl() { + final Queue dayUrlsToCrawl = new ConcurrentLinkedQueue<>(); + final LocalDateTime now = LocalDateTime.now(); + for (int i = 0; i <= crawlerConfig.getMaximumDaysForSendungVerpasstSection(); i++) { + final String day = now.minusDays(i).format(DAY_PAGE_DATE_FORMATTER); + final String url = OrfOnConstants.SCHEDULE + "/" + day; + dayUrlsToCrawl.offer(new OrfOnBreadCrumsUrlDTO(day,url)); + } + return dayUrlsToCrawl; + } + + private Set processAZUrlsToCrawl() throws InterruptedException, ExecutionException { + final ForkJoinTask> letterTask = forkJoinPool.submit(new OrfOnAZTask(this, createAZUrlsToCrawl())); + final Set letterTaskTopics = letterTask.get(); + final ForkJoinTask> episodesFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(letterTaskTopics))); + final Set episodesFromTopics = episodesFromTopicsTask.get(); + return episodesFromTopics; + + } + + + private Queue createAZUrlsToCrawl() { + final Queue letterUrlsToCrawl = new ConcurrentLinkedQueue<>(); + for (char letter = 'A'; letter <= 'Z'; letter++) { + final String url = OrfOnConstants.AZ + "/" + letter + "?limit="+OrfOnConstants.PAGE_SIZE; + letterUrlsToCrawl.offer(new OrfOnBreadCrumsUrlDTO(String.valueOf(letter),url)); + } + // 0 gibt es auch + final String url = OrfOnConstants.AZ + "/0" + "?limit="+OrfOnConstants.PAGE_SIZE; + letterUrlsToCrawl.offer(new OrfOnBreadCrumsUrlDTO("0",url)); + return letterUrlsToCrawl; + } + + private Set processHistoryUrlToCrawl() throws InterruptedException, ExecutionException { + final ForkJoinTask> histroyTask = forkJoinPool.submit(new OrfOnHistoryTask(this, createHistoryUrlToCrawl())); + final Set historyChidrenUrls = histroyTask.get(); + LOG.debug("Found {} entries in OrfOnHistoryTask ", historyChidrenUrls.size()); + // + final ForkJoinTask> historyChildrenTask = forkJoinPool.submit(new OrfOnHistoryChildrenTask(this, new ConcurrentLinkedQueue<>(historyChidrenUrls))); + final Set historyItemUrls = historyChildrenTask.get(); + LOG.debug("Found {} entries in OrfOnHistoryChildrenTask ", historyItemUrls.size()); + // + final ForkJoinTask> historyItemTask = forkJoinPool.submit(new OrfOnHistoryVideoItemTask(this, new ConcurrentLinkedQueue<>(historyItemUrls))); + final Set historyEpisodesUrls = historyItemTask.get(); + LOG.debug("Found {} entries in OrfOnHistoryVideoItemTask ", historyEpisodesUrls.size()); + // + return historyEpisodesUrls; + } + + private Queue createHistoryUrlToCrawl() { + final Queue history = new ConcurrentLinkedQueue<>(); + history.offer(new OrfOnBreadCrumsUrlDTO("Base",OrfOnConstants.HISTORY)); + return history; + } + + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java new file mode 100644 index 000000000..442c857f0 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java @@ -0,0 +1,122 @@ +package de.mediathekview.mserver.crawler.orfon; + +import java.net.URL; +import java.time.Duration; +import java.time.LocalDateTime; +import java.util.Collection; +import java.util.Map; +import java.util.Optional; +import java.util.Set; + +import de.mediathekview.mlib.daten.FilmUrl; +import de.mediathekview.mlib.daten.GeoLocations; +import de.mediathekview.mlib.daten.Resolution; + + +public class OrfOnVideoInfoDTO { + private Optional id; + private Optional channel; + private Optional title; + private Optional titleWithDate; + private Optional topic; + private Optional topicForArchive; + private Optional aired; + private Optional duration; + private Optional description; + private Optional website; + private Optional> georestriction; + private Optional subtitleSource; + private Optional> videoUrls; + private Optional> subtitleUrls; + + public OrfOnVideoInfoDTO( + Optional id, + Optional channel, + Optional title, + Optional titleWithDate, + Optional topic, + Optional topicForArchive, + Optional aired, + Optional duration, + Optional description, + Optional website, + Optional> georestriction, + Optional subtitleSource, + Optional> videoUrls, + Optional> subtitleUrls) { + super(); + this.id = id; + this.channel = channel; + this.title = title; + this.titleWithDate = titleWithDate; + this.topic = topic; + this.topicForArchive = topicForArchive; + this.aired = aired; + this.duration = duration; + this.description = description; + this.website = website; + this.georestriction = georestriction; + this.subtitleSource = subtitleSource; + this.videoUrls = videoUrls; + this.subtitleUrls = subtitleUrls; + } + + public Optional getId() { + return id; + } + public Optional getChannel() { + return channel; + } + public Optional getTitle() { + return title; + } + public Optional getTitleWithDate() { + return titleWithDate; + } + public Optional getTopic() { + return topic; + } + public Optional getTopicForArchive() { + return topicForArchive; + } + public Optional getAired() { + return aired; + } + public Optional getDuration() { + return duration; + } + public Optional getDescription() { + return description; + } + public Optional getWebsite() { + return website; + } + public Optional> getGeorestriction() { + return georestriction; + } + public Optional getSubtitleSource() { + return subtitleSource; + } + public Optional> getVideoUrls() { + return videoUrls; + } + public Optional> getSubtitleUrls() { + return subtitleUrls; + } + + @Override + public int hashCode() { + if (getId().isPresent()) { + return Integer.valueOf(getId().get()); + } + return super.hashCode(); + } + + @Override + public boolean equals(final Object obj) { + if (obj == null || getClass() != obj.getClass()) { + return false; + } + return this.hashCode() == obj.hashCode(); + } +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java new file mode 100644 index 000000000..e2b2f5376 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java @@ -0,0 +1,47 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; + +import java.lang.reflect.Type; +import java.util.Optional; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnAZDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnAZDeserializer.class); + private static final String[] TAG_NEXT_PAGE = {"_links", "next", "href"}; + private static final String[] TAG_ITEMS = {"_embedded", "items"}; + private static final String TAG_ITEM_ID = "id"; + private static final String[] TAG_ITEM_EPISODES = {"_links", "episodes", "href"}; + + @Override + public PagedElementListDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + JsonObject jsonPage = jsonElement.getAsJsonObject(); + // + PagedElementListDTO page = new PagedElementListDTO<>(); + page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); + // + final Optional items = JsonUtils.getElement(jsonPage, TAG_ITEMS); + if (items.isPresent() && items.get().isJsonArray()) { + for (JsonElement topic : items.get().getAsJsonArray()) { + final Optional id = JsonUtils.getElementValueAsString(topic, TAG_ITEM_ID); + final Optional url = JsonUtils.getElementValueAsString(topic, TAG_ITEM_EPISODES); + if (id.isPresent() && url.isPresent()) { + page.addElement(new OrfOnBreadCrumsUrlDTO(id.get(), OrfOnConstants.createMaxLimmitUrl(url.get()))); + } else { + LOG.debug("No episodes found in item {}", id); + } + } + } + return page; + } +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java new file mode 100644 index 000000000..112c7977c --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -0,0 +1,320 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mlib.daten.FilmUrl; +import de.mediathekview.mlib.daten.GeoLocations; +import de.mediathekview.mlib.daten.Resolution; +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; + +import java.io.IOException; +import java.lang.reflect.Type; +import java.net.MalformedURLException; +import java.net.URL; +import java.time.Duration; +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; +import java.util.ArrayList; +import java.util.Collection; +import java.util.EnumMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Optional; +import java.util.Set; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnEpisodeDeserializer implements JsonDeserializer { + private static final Logger LOG = LogManager.getLogger(OrfOnEpisodeDeserializer.class); + private static final String[] TAG_CHANNEL = {"_embedded", "channel", "name"}; + private static final String TAG_ID = "id"; + private static final String TAG_TITLE = "title"; + private static final String TAG_TITLE_WITH_DATE = "share_subject"; + private static final String TAG_TOPIC = "profile_title"; + private static final String TAG_TOPIC_ARCHIVE = "sub_headline"; + private static final String TAG_AIRED = "date"; + private static final String TAG_DURATION = "duration_seconds"; + private static final String TAG_DESCRIPTION = "description"; + private static final String TAG_SHARE_BODY = "share_body"; + private static final String TAG_RIGHT = "right"; + private static final String TAG_VIDEO_TYPE ="video_type"; + private static final String[] TAG_SUBTITLE = {"_links", "subtitle", "href"}; + private static final String[] TAG_VIDEO_PATH_1 = {"_embedded","segments"}; + private static final String[] TAG_VIDEO_PATH_2 = {"_embedded", "playlist", "sources"}; + private static final String TAG_VIDEO_URL = "src"; + private static final String TAG_VIDEO_CODEC = "delivery"; + private static final String TAG_VIDEO_QUALITY = "quality"; + private static final String TAG_VIDEO_FALLBACK = "sources"; + private static final String TAG_VIDEO_FALLBACK_URL = "src"; + + private static final String[] TAG_SUBTITLE_SECTION = {"_embedded", "subtitle"}; + private static final String TAG_SUBTITLE_SMI = "sami_url"; + private static final String TAG_SUBTITLE_SRT = "srt_url"; + private static final String TAG_SUBTITLE_TTML = "ttml_url"; + private static final String TAG_SUBTITLE_VTT = "vtt_url"; + private static final String TAG_SUBTITLE_XML = "xml_url"; + // + private AbstractCrawler crawler = null; + private static final String[] PREFERED_CODEC = {"hls", "hds", "progressive"}; + // + + public OrfOnEpisodeDeserializer(AbstractCrawler crawler) { + this.crawler = crawler; + } + + @Override + public OrfOnVideoInfoDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + OrfOnVideoInfoDTO aFilm = new OrfOnVideoInfoDTO( + JsonUtils.getElementValueAsString(jsonElement, TAG_ID), + JsonUtils.getElementValueAsString(jsonElement, TAG_CHANNEL), + JsonUtils.getElementValueAsString(jsonElement, TAG_TITLE), + JsonUtils.getElementValueAsString(jsonElement, TAG_TITLE_WITH_DATE), + JsonUtils.getElementValueAsString(jsonElement, TAG_TOPIC), + JsonUtils.getElementValueAsString(jsonElement, TAG_TOPIC_ARCHIVE), + parseAiredDate(JsonUtils.getElementValueAsString(jsonElement, TAG_AIRED)), + parseDuration(JsonUtils.getElementValueAsString(jsonElement, TAG_DURATION)), + JsonUtils.getElementValueAsString(jsonElement, TAG_DESCRIPTION), + parseWebsite(JsonUtils.getElementValueAsString(jsonElement, TAG_SHARE_BODY)), + parseGeoLocations(JsonUtils.getElementValueAsString(jsonElement, TAG_RIGHT)), + parseSubtitleSource(JsonUtils.getElementValueAsString(jsonElement, TAG_SUBTITLE)), + optimizeUrls(parseUrl(jsonElement)), + buildOrResolveSubs(jsonElement) + + ); + return aFilm; + } + + private Optional> optimizeUrls(Optional> urls) { + if (urls.isPresent() && urls.get().size() == 1) { + final Map urlMap = urls.get(); + final FilmUrl url = urlMap.get(Resolution.NORMAL); + final String urlToOptimize = url.getUrl().toString(); + try { + urlMap.put(Resolution.SMALL, new FilmUrl(urlToOptimize.replace("QXA", "Q4A"), 0L)); + urlMap.put(Resolution.NORMAL, new FilmUrl(urlToOptimize.replace("QXA", "Q6A"), 0L)); + urlMap.put(Resolution.HD, new FilmUrl(urlToOptimize.replace("QXA", "Q8C"), 0L)); + } catch (MalformedURLException e) {} + } + return urls; + } + + private Optional> buildOrResolveSubs(JsonElement jsonElement) { + Optional subtitleSource = JsonUtils.getElementValueAsString(jsonElement, TAG_SUBTITLE); + Optional embeddedSubtitleSection = JsonUtils.getElement(jsonElement, TAG_SUBTITLE_SECTION); + Optional> setOfSubs = Optional.empty(); + if (embeddedSubtitleSection.isPresent()) { + setOfSubs = parseSubtitleUrls(embeddedSubtitleSection.get()); + } else if (subtitleSource.isPresent()) { + Map myMap = Map.ofEntries( + Map.entry("Authorization", OrfOnConstants.AUTH), + Map.entry("Accept-Charset", "UTF_8"), + Map.entry("User-Agent", "Mozilla"), + Map.entry("Accept-Encoding", "*")); + JsonElement newRequestForSubs = null; + try { + newRequestForSubs = crawler.getConnection().requestBodyAsJsonElement(subtitleSource.get(), myMap); + if (newRequestForSubs != null) { + setOfSubs = parseSubtitleUrls(newRequestForSubs); + } + } catch (IOException e) { + LOG.error("Failed to resolve subtitle from {} error {}", subtitleSource, e); + } + + } + return setOfSubs; + } + + private Optional parseSubtitleSource(Optional text) { + Optional sub = Optional.empty(); + if (text.isPresent()) { + try { + sub = Optional.of(new URL(text.get())); + } catch (Exception e) { + LOG.error("parseSubtitle failed for string {} exception {}", text.get(), e); + } + } + return sub; + + } + + private Optional> parseSubtitleUrls(JsonElement element) { + Set urls = new HashSet<>(); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SMI).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(urls::add)); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SRT).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(urls::add)); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_TTML).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(urls::add)); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_VTT).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(urls::add)); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_XML).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(urls::add)); + if (urls.isEmpty()) { + return Optional.empty(); + } + return Optional.of(urls); + } + + private Optional toURL(String aString) { + try { + return Optional.of(new URL(aString)); + } catch (MalformedURLException e) { + LOG.debug("error converting {} to URL {}", aString, e); + } + return Optional.empty(); + } + + private Optional> parseUrl(JsonElement jsonElement) { + Optional videoPath1 = JsonUtils.getElement(jsonElement, TAG_VIDEO_PATH_1); + if (videoPath1.isEmpty() || !videoPath1.get().isJsonArray() || videoPath1.get().getAsJsonArray().size() == 0) { + return Optional.empty(); + } + // We need to fallback to episode.sources in case there are many elements in the playlist + if (videoPath1.get().getAsJsonArray().size() == 1) { + Optional videoPath2 = JsonUtils.getElement(videoPath1.get().getAsJsonArray().get(0), TAG_VIDEO_PATH_2); + if (videoPath2.isEmpty() || !videoPath2.get().isJsonArray()) { + return Optional.empty(); + } + for (String key : PREFERED_CODEC) { + Optional> resultingVideos = readVideoForTargetCodec(videoPath2.get(),key); + if (resultingVideos.isPresent()) { + return resultingVideos; + } + } + } + return parseFallbackVideo(jsonElement); + } + + private Optional> parseFallbackVideo(JsonElement root) { + Optional videoSources = JsonUtils.getElement(root, TAG_VIDEO_FALLBACK); + if (videoSources.isPresent()) { + Map urls = new EnumMap<>(Resolution.class); + for (String key : PREFERED_CODEC) { + Optional codecs = JsonUtils.getElement(videoSources.get(), key); + if (codecs.isPresent() && codecs.get().isJsonArray()) { + for (JsonElement singleVideo : codecs.get().getAsJsonArray()) { + Optional tgtUrl = JsonUtils.getElementValueAsString(singleVideo, TAG_VIDEO_FALLBACK_URL); + if (tgtUrl.isPresent() && !tgtUrl.get().contains("/Jugendschutz") && !tgtUrl.get().contains("/no_drm_support") && !tgtUrl.get().contains("/schwarzung")) { + try { + urls.put(Resolution.NORMAL, new FilmUrl(tgtUrl.get(), 0L)); + } catch (MalformedURLException e) { + LOG.warn("invalid video url {} error {}", tgtUrl, e ); + } + return Optional.of(urls); + } + } + } + } + } + return Optional.empty(); + } + + private Optional> readVideoForTargetCodec(JsonElement urlArray, String targetCodec) { + Map urls = new EnumMap<>(Resolution.class); + for (JsonElement videoElement : urlArray.getAsJsonArray()) { + Optional codec = JsonUtils.getElementValueAsString(videoElement, TAG_VIDEO_CODEC); + Optional quality = JsonUtils.getElementValueAsString(videoElement, TAG_VIDEO_QUALITY); + Optional url = JsonUtils.getElementValueAsString(videoElement, TAG_VIDEO_URL); + if (url.isPresent() && codec.isPresent() && quality.isPresent() && targetCodec.equalsIgnoreCase(codec.get()) && OrfOnEpisodeDeserializer.getQuality(quality.get()).isPresent()) { + // dummy urls + if (!url.get().contains("/Jugendschutz") && !url.get().contains("/no_drm_support") && !url.get().contains("/schwarzung")) { + try { + long fileSize = crawler.determineFileSizeInKB(url.get()); + urls.put( + OrfOnEpisodeDeserializer.getQuality(quality.get()).get(), + new FilmUrl(url.get(), fileSize) + ); + } catch (MalformedURLException e) { + LOG.error("Malformed video url {} {}", url.get(), e); + } + } + } + } + if (urls.isEmpty()) { + return Optional.empty(); + } + return Optional.of(urls); + } + + + private Optional parseWebsite(Optional text) { + Optional result = Optional.empty(); + if (text.isPresent()) { + try { + result = Optional.of(new URL(text.get())); + } catch (Exception e) { + LOG.error("parseWebsite failed for string {} exception {}", text.get(), e); + } + } + return result; + } + + private Optional> parseGeoLocations(Optional text) { + if (text.isPresent()) { + if (text.get().equalsIgnoreCase("worldwide")) { + ArrayList a = new ArrayList<>(); + a.add(GeoLocations.GEO_NONE); + return Optional.of(a); + } else if (text.get().equalsIgnoreCase("austria")) { + ArrayList a = new ArrayList<>(); + a.add(GeoLocations.GEO_AT); + return Optional.of(a); + } else { + LOG.error("parseGeoLocations failed for unknown string {}", text.get()); + } + } + return Optional.empty(); + } + private Optional parseAiredDate(Optional text) { + Optional result = Optional.empty(); + if (text.isPresent()) { + try { + result = Optional.of(LocalDateTime.parse(text.get(), DateTimeFormatter.ISO_ZONED_DATE_TIME)); + } catch (Exception e) { + LOG.error("DateTimeFormatter failed for string {} exception {}", text.get(), e); + } + } + return result; + } + + private Optional parseDuration(Optional text) { + if (text.isPresent()) { + try { + return Optional.of(Duration.ofSeconds(Integer.parseInt(text.get()))); + } catch (Exception e) { + LOG.error("Duration failed for string {} exception {}", text.get(), e); + } + } + return Optional.empty(); + + } + + /////////////// + + private static Optional getQuality(final String aQuality) { + switch (aQuality) { + case "Q0A": + return Optional.of(Resolution.VERY_SMALL); + case "Q1A": + return Optional.of(Resolution.VERY_SMALL); + case "Q4A": + return Optional.of(Resolution.SMALL); + case "Q6A": + return Optional.of(Resolution.NORMAL); + case "Q8C": + return Optional.of(Resolution.HD); + case "QXA": + case "QXADRM": + case "QXB": + case "QXBDRM": + case "Q8A": + return Optional.empty(); + default: + LOG.debug("ORF: unknown quality: {}", aQuality); + } + return Optional.empty(); + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java new file mode 100644 index 000000000..efacb650d --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -0,0 +1,38 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; + +import java.lang.reflect.Type; +import java.util.Optional; + +public class OrfOnEpisodesDeserializer implements JsonDeserializer> { + private static final String[] TAG_NEXT_PAGE = {"_links", "next", "href"}; + private static final String[] TAG_ITEMS = {"_embedded", "items"}; + private static final String TAG_EPISODE_ID = "id"; + private static final String[] TAG_EPISODE_LINK = { "_links", "self", "href"}; + + @Override + public PagedElementListDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + JsonObject jsonPage = jsonElement.getAsJsonObject(); + // + PagedElementListDTO page = new PagedElementListDTO<>(); + page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); + // + final Optional items = JsonUtils.getElement(jsonPage, TAG_ITEMS); + if (items.isPresent() && items.get().isJsonArray()) { + for (JsonElement item : items.get().getAsJsonArray()) { + Optional episodeId = JsonUtils.getElementValueAsString(item, TAG_EPISODE_ID); + Optional episodeLink = JsonUtils.getElementValueAsString(item, TAG_EPISODE_LINK); + episodeLink.ifPresent( link -> page.addElement(new OrfOnBreadCrumsUrlDTO(episodeId.orElse("EMPTY"), link))); + } + } + return page; + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java new file mode 100644 index 000000000..c0cb744fb --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -0,0 +1,58 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; + +import java.lang.reflect.Type; +import java.util.Optional; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnHistoryChildrenDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChildrenDeserializer.class); + private static final String[] TAG_NEXT_PAGE = { "next" }; + private static final String[] TAG_ITEM_ARRAY = { "_items" }; + private static final String[] TAG_ITEM_TITLE = {"title"}; + private static final String[] TAG_TARGET_URL = {"_links", "video_items", "href"}; + private static final String[] TAG_TARGET_URL2 = {"_links", "children", "href"}; + + @Override + public PagedElementListDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + // + PagedElementListDTO page = new PagedElementListDTO<>(); + page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); + // + Optional itemArray = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); + if (itemArray.isPresent() && itemArray.get().isJsonArray()) { + for (JsonElement item : itemArray.get().getAsJsonArray()) { + final Optional videoItemUrl = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + final Optional childrenUrl = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2); + final Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + if (videoItemUrl.isPresent()) { + page.addElement(new OrfOnBreadCrumsUrlDTO( + title.orElse("MISSING TITLE"), + OrfOnConstants.createMaxLimmitUrl(videoItemUrl.get()) + )); + } else if (childrenUrl.isPresent()) { + page.addElement(new OrfOnBreadCrumsUrlDTO( + title.orElse("MISSING TITLE"), + OrfOnConstants.createMaxLimmitUrl(childrenUrl.get()) + )); + } else { + LOG.info("No video_items or children tag found {}",JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE) ); + } + } + } + // + return page; + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java new file mode 100644 index 000000000..fd718d41d --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java @@ -0,0 +1,64 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; + +import java.lang.reflect.Type; +import java.util.Optional; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnHistoryDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnHistoryDeserializer.class); + private static final String[] TAG_NEXT_PAGE = {}; + private static final String[] TAG_ITEM_ARRAY_TOP = {"history_highlights"}; + private static final String[] TAG_ITEM_TITLE = {"title"}; + private static final String[] TAG_ITEM_ARRAY_BUTTOM = {"history_items"}; + private static final String[] TAG_TARGET_URL = {"_links", "children", "href"}; + + @Override + public PagedElementListDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + // + PagedElementListDTO page = new PagedElementListDTO<>(); + page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); + // + final Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_TOP); + if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { + page.addElements(parseSection(itemArrayTop.get().getAsJsonArray()).getElements()); + } + // + final Optional itemArrayButtom = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_BUTTOM); + if (itemArrayButtom.isPresent() && itemArrayButtom.get().isJsonArray()) { + page.addElements(parseSection(itemArrayButtom.get().getAsJsonArray()).getElements()); + } + // + return page; + } + + public PagedElementListDTO parseSection(JsonArray itemArray) { + PagedElementListDTO items = new PagedElementListDTO<>(); + for (JsonElement item : itemArray) { + final Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + final Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + if (url.isPresent()) { + items.addElement(new OrfOnBreadCrumsUrlDTO( + title.orElse("EMPTY"), + url.get() + )); + } else { + LOG.debug("missing url for {}", title); + } + } + return items; + } + + + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java new file mode 100644 index 000000000..40db2ee02 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -0,0 +1,56 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; + +import java.lang.reflect.Type; +import java.util.Optional; + +public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { + private static final String[] TAG_NEXT_PAGE = { "next" }; + private static final String[] TAG_ITEM_ARRAY = { "_items" }; + private static final String[] TAG_ITEM_TITLE = {"title"}; + private static final String[] TAG_TARGET_URL = {"_links", "self", "href"}; + private static final String[] TAG_TARGET_URL_EPISODE = {"_links", "episode", "href"}; + + + + @Override + public PagedElementListDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + // + PagedElementListDTO page = new PagedElementListDTO<>(); + page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); + // + Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); + if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { + for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { + final Optional urlSelf = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + final Optional urlEpisode = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL_EPISODE); + final Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + // self should be an episode but in some cases a segment - only in this cases we have an additional episode element + if (urlSelf.isPresent() && !urlSelf.get().contains("/segment/")) { + page.addElement(new OrfOnBreadCrumsUrlDTO( + title.orElse("MISSING TITLE"), + urlSelf.get() + )); + } else if (urlEpisode.isPresent()) { + page.addElement(new OrfOnBreadCrumsUrlDTO( + title.orElse("MISSING TITLE"), + urlEpisode.get() + )); + } + } + } + // + return page; + } + + + + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java new file mode 100644 index 000000000..09d90b91e --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java @@ -0,0 +1,34 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; + +import java.lang.reflect.Type; +import java.util.Optional; + + +public class OrfOnScheduleDeserializer implements JsonDeserializer> { + private static final String TAG_FILM_NAME = "title"; + private static final String TAG_FILM_ID = "id"; + + @Override + public PagedElementListDTO deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + PagedElementListDTO collectIds = new PagedElementListDTO<>(); + final JsonArray elements = jsonElement.getAsJsonArray(); + for (JsonElement element : elements) { + final Optional name = JsonUtils.getElementValueAsString(element, TAG_FILM_NAME); + final Optional id = JsonUtils.getElementValueAsString(element, TAG_FILM_ID); + if (id.isPresent()) { + final String url = OrfOnConstants.EPISODE + "/" + id.get(); + collectIds.addElement(new OrfOnBreadCrumsUrlDTO(id.get(), url)); + } + } + return collectIds; + } +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java new file mode 100644 index 000000000..8856e1e21 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java @@ -0,0 +1,39 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.util.Queue; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnAZDeserializer; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnAZTask extends OrfOnPagedTask { + private static final long serialVersionUID = 1L; + + public OrfOnAZTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } + + @Override + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnAZDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnAZTask(crawler, aElementsToProcess); + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java new file mode 100644 index 000000000..2bdf42a07 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -0,0 +1,123 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.time.Duration; +import java.time.LocalDateTime; +import java.util.Queue; +import java.util.UUID; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mlib.daten.Film; +import de.mediathekview.mlib.daten.Sender; +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractJsonRestTask; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnEpisodeDeserializer; +import jakarta.ws.rs.core.Response; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnEpisodeTask extends AbstractJsonRestTask { + private static final long serialVersionUID = 3272445100769901305L; + private static final Logger LOG = LogManager.getLogger(OrfOnEpisodeTask.class); + private static final String ORF_AUDIODESCRIPTION_PREFIX = "AD | "; + + public OrfOnEpisodeTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.AUTH); + } + + @Override + protected JsonDeserializer getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnEpisodeDeserializer(this.crawler); + } + + @Override + protected Type getType() { + return new TypeToken() {}.getType(); + } + + @Override + protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { + if (aResponseObj.getTitle().isEmpty() && aResponseObj.getTitleWithDate().isEmpty()) { + LOG.warn("Missing title for {}", aDTO); + crawler.incrementAndGetErrorCount(); + return; + } + if (aResponseObj.getTopic().isEmpty()) { + LOG.warn("Missing topic for {}", aDTO); + crawler.incrementAndGetErrorCount(); + return; + } + if (aResponseObj.getVideoUrls().isEmpty()) { + LOG.warn("Missing videoUrls for {}", aDTO); + crawler.incrementAndGetErrorCount(); + return; + } + if (aResponseObj.getDuration().isEmpty()) { + LOG.warn("Missing duration for {}", aDTO); + } + if (aResponseObj.getAired().isEmpty()) { + LOG.warn("Missing aired date for {}", aDTO); + } + if (aResponseObj.getWebsite().isEmpty()) { + LOG.warn("Missing website for {}", aDTO); + } + Film aFilm = new Film( + UUID.randomUUID(), + Sender.ORF, + buildTitle(aResponseObj.getTitle().get(), aResponseObj.getTopic().get()), + buildTopic(aResponseObj.getTitle().get(), aResponseObj.getTopic().get(), aResponseObj.getTopicForArchive().orElse("")), + aResponseObj.getAired().orElse(LocalDateTime.of(1970,1,1,00,00,00)), + aResponseObj.getDuration().orElse(Duration.ofMinutes(0L)) + ); + aResponseObj.getGeorestriction().ifPresent(aFilm::addAllGeoLocations); + aResponseObj.getDescription().ifPresent(aFilm::setBeschreibung); + aResponseObj.getVideoUrls().ifPresent(aFilm::setUrls); + aResponseObj.getWebsite().ifPresent(aFilm::setWebsite); + aResponseObj.getSubtitleUrls().ifPresent(aFilm::addAllSubtitleUrls); + crawler.incrementAndGetActualCount(); + taskResults.add(aFilm); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { + return new OrfOnEpisodeTask(crawler, aElementsToProcess); + } + + @Override + protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response response) { + crawler.printErrorMessage(); + LOG.fatal( + "A HTTP error {} occurred when getting REST information from: \"{}\".", + response.getStatus(), + url); + } + + private String buildTopic(String title, String topic, String archiveTopic) { + String newTopic = topic; + if (newTopic.startsWith(ORF_AUDIODESCRIPTION_PREFIX)) { + newTopic = newTopic.replace(ORF_AUDIODESCRIPTION_PREFIX, ""); + } + if (newTopic.equalsIgnoreCase("archiv")) { + newTopic = archiveTopic.replace("History | ", ""); + } + return newTopic; + } + + private String buildTitle(String title, String topic) { + if (title.startsWith(ORF_AUDIODESCRIPTION_PREFIX)) { + return title.replace(ORF_AUDIODESCRIPTION_PREFIX, "").concat(" (Audiodeskription)"); + } + return title; + } +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java new file mode 100644 index 000000000..ba4ed4627 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -0,0 +1,41 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.util.Queue; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnEpisodesDeserializer; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnEpisodesTask extends OrfOnPagedTask { + private static final long serialVersionUID = 1L; + + public OrfOnEpisodesTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } + + @Override + public JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnEpisodesDeserializer(); + } + + @Override + public Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + public AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnEpisodesTask(crawler, aElementsToProcess); + } + + + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java new file mode 100644 index 000000000..7a2ef396d --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java @@ -0,0 +1,60 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryChildrenDeserializer; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnHistoryChildrenTask extends OrfOnPagedTask { + private static final long serialVersionUID = 1L; + + public OrfOnHistoryChildrenTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } + + @Override + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnHistoryChildrenDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected void postProcessingElements(Set elements, OrfOnBreadCrumsUrlDTO originalDTO) { + for (OrfOnBreadCrumsUrlDTO element : elements) { + if (element.getUrl().contains("/children")) { + final Queue moreContentOnNewPage = new ConcurrentLinkedQueue<>(); + moreContentOnNewPage.add(element); + AbstractRecursiveConverterTask resolveChildren = createNewOwnInstance(moreContentOnNewPage); + resolveChildren.fork(); + for(OrfOnBreadCrumsUrlDTO moreElements : resolveChildren.join()) { + moreElements.setBreadCrumsPath(originalDTO.getBreadCrums()); + taskResults.add(moreElements); + } + } else { + element.setBreadCrumsPath(originalDTO.getBreadCrums()); + taskResults.add(element); + } + } + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnHistoryChildrenTask(crawler, aElementsToProcess); + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryTask.java new file mode 100644 index 000000000..70911b0d5 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryTask.java @@ -0,0 +1,41 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.util.Queue; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryDeserializer; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnHistoryTask extends OrfOnPagedTask { + private static final long serialVersionUID = 1L; + + + public OrfOnHistoryTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } + + @Override + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnHistoryDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnHistoryTask(crawler, aElementsToProcess); + } + + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java new file mode 100644 index 000000000..684270f3d --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java @@ -0,0 +1,39 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.util.Queue; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryVideoItemDeserializer; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnHistoryVideoItemTask extends OrfOnPagedTask { + private static final long serialVersionUID = 1L; + + public OrfOnHistoryVideoItemTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } + + @Override + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnHistoryVideoItemDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnHistoryVideoItemTask(crawler, aElementsToProcess); + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java new file mode 100644 index 000000000..a054951de --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java @@ -0,0 +1,66 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.net.URI; +import java.util.Optional; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractJsonRestTask; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import jakarta.ws.rs.core.Response; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public abstract class OrfOnPagedTask extends AbstractJsonRestTask, OrfOnBreadCrumsUrlDTO> { + private static final long serialVersionUID = 1L; + protected final transient Logger log = LogManager.getLogger(this.getClass()); + protected Optional> nextPageTask = Optional.empty(); + + protected OrfOnPagedTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.AUTH); + } + + protected void postProcessingNextPage(PagedElementListDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { + if (aResponseObj.getNextPage().isEmpty()) { + return; + } + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(new OrfOnBreadCrumsUrlDTO(aDTO.getBreadCrums(), aResponseObj.getNextPage().get())); + nextPageTask = Optional.of(createNewOwnInstance(nextPageLinks)); + nextPageTask.get().fork(); + log.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); + } + + protected void postProcessingElements(Set elements, OrfOnBreadCrumsUrlDTO originalDTO) { + for (OrfOnBreadCrumsUrlDTO element : elements) { + element.setBreadCrumsPath(originalDTO.getBreadCrums()); + taskResults.add(element); + } + } + + @Override + protected void postProcessing(PagedElementListDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { + postProcessingNextPage(aResponseObj, aDTO); + postProcessingElements(aResponseObj.getElements(), aDTO); + nextPageTask.ifPresent(paginationResults -> postProcessingElements(paginationResults.join(), aDTO)); + } + + @Override + protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response response) { + crawler.printErrorMessage(); + log.fatal( + "A HTTP error {} occurred when getting REST information from: \"{}\".", + response.getStatus(), + url); + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java new file mode 100644 index 000000000..58ada48cd --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java @@ -0,0 +1,42 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.util.Queue; +import java.util.Set; + +import com.google.gson.JsonDeserializer; +import com.google.gson.reflect.TypeToken; + +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnScheduleDeserializer; + +// extends AbstractRestTask +// return T Class from this task, desirialisation of class R , D , Reasearch in this url +public class OrfOnScheduleTask extends OrfOnPagedTask { + private static final long serialVersionUID = -2556623295745879044L; + + public OrfOnScheduleTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } + + @Override + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnScheduleDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { + return new OrfOnScheduleTask(crawler, aElementsToProcess); + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/zdf/json/ZdfFilmDetailDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/zdf/json/ZdfFilmDetailDeserializer.java index d8220f136..b2fb9662e 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/zdf/json/ZdfFilmDetailDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/zdf/json/ZdfFilmDetailDeserializer.java @@ -269,7 +269,7 @@ private Optional parseTitleValue(final JsonObject aRootNode, final JsonO final JsonElement titleElement = aRootNode.get(JSON_ELEMENT_TITLE); if (titleElement != null) { final JsonElement subTitleElement = aRootNode.get(JSON_ELEMENT_SUBTITLE); - if (subTitleElement != null) { + if (subTitleElement != null && !subTitleElement.getAsString().isBlank()) { return Optional.of( titleElement.getAsString().trim() + " - " + subTitleElement.getAsString()); } else { diff --git a/src/main/java/de/mediathekview/mserver/crawler/zdf/tasks/ZdfFilmDetailTask.java b/src/main/java/de/mediathekview/mserver/crawler/zdf/tasks/ZdfFilmDetailTask.java index 86a003c61..87037af0f 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/zdf/tasks/ZdfFilmDetailTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/zdf/tasks/ZdfFilmDetailTask.java @@ -173,7 +173,9 @@ private void addFilm(final DownloadDto downloadDto, final Film result) getOptimizedUrls(downloadDto.getDownloadUrls(language)); urls.forEach(filmWithLanguage::addUrl); - taskResults.add(filmWithLanguage); + if (!taskResults.add(filmWithLanguage)) { + LOG.error("Rejected duplicate {}", filmWithLanguage); + } previousMainFilm = filmWithLanguage; previousLanguage = language; } diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializerTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializerTest.java deleted file mode 100644 index b7f536160..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializerTest.java +++ /dev/null @@ -1,23 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.json; - -import com.google.gson.JsonElement; -import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; -import de.mediathekview.mserver.testhelper.JsonFileReader; -import org.junit.jupiter.api.Test; - -import static org.junit.jupiter.api.Assertions.*; - -class OrfMoreEpisodesDeserializerTest { - - @Test - void testDeserialize() { - final JsonElement jsonElement = JsonFileReader.readJson("/orf/orf_film_more_episodes.json"); - - final OrfMoreEpisodesDeserializer target = new OrfMoreEpisodesDeserializer(); - final CrawlerUrlDTO actual = target.deserialize(jsonElement, null, null); - - assertNotNull(actual); - assertEquals("https://tvthek.orf.at/lane-plus/other_episodes_of_profile?profileId=13895917&profileSlug=Biester", actual.getUrl()); - - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParserTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParserTest.java deleted file mode 100644 index 63893dc77..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParserTest.java +++ /dev/null @@ -1,39 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.parser; - -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.testhelper.FileReader; -import org.hamcrest.MatcherAssert; -import org.hamcrest.Matchers; -import org.jsoup.Jsoup; -import org.jsoup.nodes.Document; -import org.junit.jupiter.api.Test; - -import java.util.List; - -import static org.junit.jupiter.api.Assertions.*; - -class OrfMoreEpisodesParserTest { - @Test - void parseDocumentWithEpisodes() { - TopicUrlDTO[] expectedFilms = new TopicUrlDTO[] { - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-9/14207236"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-8/14207235"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-7/14207234"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-6/14207233"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-5/14207232"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-4/14207231"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-3/14207230"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-2/14207229"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Alle-Folgen-jetzt-Biester-1-10/14207227"), - new TopicUrlDTO("Biester", "https://tvthek.orf.at/profile/Biester/13895917/Biester-Folge-10/14207252"), - }; - - final Document document = Jsoup.parse(FileReader.readFile("/orf/orf_film_more_episodes.html")); - - OrfMoreEpisodesParser target = new OrfMoreEpisodesParser(); - final List actual = target.parse(document, "Biester"); - - assertEquals(10, actual.size()); - MatcherAssert.assertThat(actual, Matchers.containsInAnyOrder(expectedFilms)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializerTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializerTest.java deleted file mode 100644 index 8c6ad8c94..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializerTest.java +++ /dev/null @@ -1,110 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.parser; - -import com.google.gson.JsonElement; -import de.mediathekview.mlib.daten.Resolution; -import de.mediathekview.mserver.crawler.orf.OrfEpisodeInfoDTO; -import de.mediathekview.mserver.crawler.orf.OrfVideoInfoDTO; -import de.mediathekview.mserver.testhelper.JsonFileReader; -import org.junit.Test; - -import java.time.Duration; -import java.util.List; -import java.util.Map; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; - -public class OrfPlaylistDeserializerTest { - - @Test - public void testDeserializeSingleFilm() { - final JsonElement jsonElement = JsonFileReader.readJson("/orf/orf_playlist_no_episodes.json"); - - final OrfPlaylistDeserializer target = new OrfPlaylistDeserializer(); - final List actual = target.deserialize(jsonElement, null, null); - - assertThat(actual.size(), equalTo(1)); - - final OrfEpisodeInfoDTO actualEpisode = actual.get(0); - assertEpisode( - actualEpisode, - "Rede des Bundespräsidenten", - Duration.ofSeconds(430), - "Bundespräsident Alexander Van der Bellen zeigt sich optimistisch, wünscht sich aber, sich an das österreichische zu erinnern, also das Gemeinsame vor das Trennende zu stellen.", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-26_1947_sd_02_Rede-des-Bundes_____13993313__o__1465128264__s14386692_2__ORF2HD_19461317P_19532320P_Q4A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-26_1947_sd_02_Rede-des-Bundes_____13993313__o__1465128264__s14386692_2__ORF2HD_19461317P_19532320P_Q6A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-26_1947_sd_02_Rede-des-Bundes_____13993313__o__1465128264__s14386692_2__ORF2HD_19461317P_19532320P_Q8C.mp4/playlist.m3u8", - "https://api-tvthek.orf.at/uploads/media/subtitles/0055/75/02ea0c39f7d1f220fbc45284dd13b1d096abd5c8.ttml"); - } - - @Test - public void testDeserializeFilmWithEpisodes() { - final JsonElement jsonElement = JsonFileReader.readJson("/orf/orf_playlist_with_episodes1.json"); - - final OrfPlaylistDeserializer target = new OrfPlaylistDeserializer(); - final List actual = target.deserialize(jsonElement, null, null); - - assertThat(actual.size(), equalTo(3)); - - assertEpisode( - actual.get(0), - "ZIB 1", - Duration.ofSeconds(1094), - "", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/13993106_0016_Q4A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/13993106_0016_Q6A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/13993106_0016_Q8C.mp4/playlist.m3u8", - null); - assertEpisode( - actual.get(1), - "Signation | Themen", - Duration.ofSeconds(42), - "", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-24_1930_tl_02_ZIB-1_Signation---The__13993106__o__1886650622__s14385479_9__ORF2HD_19293322P_19301604P_Q4A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-24_1930_tl_02_ZIB-1_Signation---The__13993106__o__1886650622__s14385479_9__ORF2HD_19293322P_19301604P_Q6A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-24_1930_tl_02_ZIB-1_Signation---The__13993106__o__1886650622__s14385479_9__ORF2HD_19293322P_19301604P_Q8C.mp4/playlist.m3u8", - null); - assertEpisode( - actual.get(2), - "Ministerrat segnet Kassenreform ab", - Duration.ofSeconds(126), - "Die Regierung hat im Ministerrat die Reform der Krankenkassen abgesegnet. Der Gesetzesvorschlag geht ohne große Korrekturen ins Parlament, erste Teile sollen schon ab 1. Jänner 2019 gelten.", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-24_1930_tl_02_ZIB-1_Ministerrat-seg__13993106__o__5309298085__s14385480_0__ORF2HD_19301604P_19322213P_Q4A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-24_1930_tl_02_ZIB-1_Ministerrat-seg__13993106__o__5309298085__s14385480_0__ORF2HD_19301604P_19322213P_Q6A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2018-10-24_1930_tl_02_ZIB-1_Ministerrat-seg__13993106__o__5309298085__s14385480_0__ORF2HD_19301604P_19322213P_Q8C.mp4/playlist.m3u8", - null); - } - - private void assertEpisode( - final OrfEpisodeInfoDTO actualEpisode, - final String expectedTitle, - final Duration expectedDuration, - final String expectedDescription, - final String expectedUrlSmall, - final String expectedUrlNormal, - final String expectedUrlHd, - final String expectedSubtitle) { - assertThat(actualEpisode.getTitle().get(), equalTo(expectedTitle)); - assertThat(actualEpisode.getDuration().get(), equalTo(expectedDuration)); - - if (expectedDescription.isEmpty()) { - assertThat(actualEpisode.getDescription().isPresent(), equalTo(false)); - } else { - assertThat(actualEpisode.getDescription().get(), equalTo(expectedDescription)); - } - - final OrfVideoInfoDTO actualVideoInfo = actualEpisode.getVideoInfo(); - assertThat(actualVideoInfo, notNullValue()); - - final Map actualVideoUrls = actualVideoInfo.getVideoUrls(); - assertThat(actualVideoUrls.get(Resolution.SMALL), equalTo(expectedUrlSmall)); - assertThat(actualVideoUrls.get(Resolution.NORMAL), equalTo(expectedUrlNormal)); - assertThat(actualVideoUrls.containsKey(Resolution.HD), equalTo(!expectedUrlHd.isEmpty())); - if (!expectedUrlHd.isEmpty()) { - assertThat(actualVideoUrls.get(Resolution.HD), equalTo(expectedUrlHd)); - } - - assertThat(actualVideoInfo.getSubtitleUrl(), equalTo(expectedSubtitle)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTaskTest.java deleted file mode 100644 index c45f897fe..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTaskTest.java +++ /dev/null @@ -1,86 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.JsoupMock; -import org.hamcrest.Matchers; -import org.junit.Before; -import org.junit.Test; -import org.mockito.Mock; -import org.mockito.MockitoAnnotations; - -import java.io.IOException; -import java.util.Queue; -import java.util.Set; -import java.util.concurrent.ConcurrentLinkedQueue; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; - -public class OrfDayTaskTest extends OrfTaskTestBase { - - @Mock JsoupConnection jsoupConnection; - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - @Test - public void test() throws IOException { - final String requestUrl = "http://tvthek.orf.at/schedule/03.02.2018"; - jsoupConnection = JsoupMock.mock(requestUrl, "/orf/orf_day.html"); - OrfCrawler crawler = createCrawler(); - crawler.setConnection(jsoupConnection); - - final TopicUrlDTO[] expected = - new TopicUrlDTO[] { - new TopicUrlDTO( - "Wetter-Panorama", - "https://tvthek.orf.at/profile/Wetter-Panorama/7268748/Wetter-Panorama/14007692"), - new TopicUrlDTO( - "Hallo okidoki", - "https://tvthek.orf.at/profile/Hallo-okidoki/2616615/Hallo-okidoki/14007693"), - new TopicUrlDTO( - "Tolle Tiere", - "https://tvthek.orf.at/profile/Tolle-Tiere/13764575/Tolle-Tiere/14007694"), - new TopicUrlDTO( - "Skiweltcup", - "https://tvthek.orf.at/profile/Ski-alpin-Damen-Herren/13886795/Skiweltcup-Siegerehrungen-inkl-Uebergabe-der-Kristallkugeln/14007719"), - new TopicUrlDTO( - "Was ich glaube", - "https://tvthek.orf.at/profile/Was-ich-glaube/1287/Was-ich-glaube/14007720"), - new TopicUrlDTO( - "ZIB", "https://tvthek.orf.at/profile/ZIB-1700/71284/ZIB-1700/14007722"), - new TopicUrlDTO( - "Vorarlberg heute", - "https://tvthek.orf.at/profile/Vorarlberg-heute/70024/Vorarlberg-heute/14007821"), - new TopicUrlDTO( - "Wien heute", "https://tvthek.orf.at/profile/Wien-heute/70018/Wien-heute/14007816"), - new TopicUrlDTO( - "Fußball", "https://tvthek.orf.at/profile/Fussball/8205855/Fussball/14007727"), - new TopicUrlDTO( - "AD | Fußball", - "https://tvthek.orf.at/profile/AD-Fussball/13886317/AD-Fussball/14007846"), - new TopicUrlDTO("ZIB 1", "https://tvthek.orf.at/profile/ZIB-1/1203/ZIB-1/14007730"), - new TopicUrlDTO( - "ZIB 1 (ÖGS)", "https://tvthek.orf.at/profile/ZIB-1-OeGS/145302/ZIB-1-OeGS/14007848"), - new TopicUrlDTO( - "Embrace - Du bist schön", - "https://tvthek.orf.at/profile/Embrace-Du-bist-schoen/13890275/Embrace-Du-bist-schoen/14007745") - }; - - final Queue queue = new ConcurrentLinkedQueue<>(); - queue.add(new CrawlerUrlDTO(requestUrl)); - - final OrfDayTask target = new OrfDayTask(crawler, queue); - final Set actual = target.invoke(); - - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(expected.length)); - assertThat(actual, Matchers.containsInAnyOrder(expected)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskJugendschutzTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskJugendschutzTest.java deleted file mode 100644 index 95199d540..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskJugendschutzTest.java +++ /dev/null @@ -1,42 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.JsoupMock; -import org.junit.Before; -import org.junit.Test; -import org.mockito.Mock; -import org.mockito.MockitoAnnotations; - -import java.io.IOException; -import java.util.Set; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; - -public class OrfFilmDetailTaskJugendschutzTest extends OrfFilmDetailTaskTestBase { - - @Mock JsoupConnection jsoupConnection; - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - @Test - public void testJugendschutzNotAdded() throws IOException { - setupHeadRequestForFileSize(); - final String requestUrl = - "https://tvthek.orf.at/profile/Tatort/2713749/Tatort-Hetzjagd/14081980"; - jsoupConnection = JsoupMock.mock(requestUrl, "/orf/orf_film_jugendschutz.html"); - OrfCrawler crawler = createCrawler(); - crawler.setConnection(jsoupConnection); - - final Set actual = executeTask(crawler, "Tatort", requestUrl); - - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(0)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTest.java deleted file mode 100644 index 555772290..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTest.java +++ /dev/null @@ -1,237 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; - -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mlib.daten.GeoLocations; -import de.mediathekview.mlib.daten.Sender; -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.AssertFilm; -import de.mediathekview.mserver.testhelper.JsoupMock; -import java.io.IOException; -import java.time.Duration; -import java.time.LocalDateTime; -import java.util.Arrays; -import java.util.Collection; -import java.util.Set; -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; -import org.mockito.Mock; -import org.mockito.MockitoAnnotations; - -@RunWith(Parameterized.class) -public class OrfFilmDetailTaskTest extends OrfFilmDetailTaskTestBase { - - private final String requestUrl; - private final String filmPageFile; - private final String theme; - private final String expectedTheme; - private final String expectedTitle; - private final LocalDateTime expectedDate; - private final Duration expectedDuration; - private final String expectedDescription; - private final String expectedSubtitle; - private final String expectedUrlSmall; - private final String expectedUrlNormal; - private final String expectedUrlHd; - private final String expectedUrlAudioDescriptionSmall; - private final String expectedUrlAudioDescriptionNormal; - private final String expectedUrlAudioDescriptionHd; - private final GeoLocations[] expectedGeoLocations; - @Mock JsoupConnection jsoupConnection; - - public OrfFilmDetailTaskTest( - final String aRequestUrl, - final String aFilmPageFile, - final String aTheme, - final String aExpectedTheme, - final String aExpectedTitle, - final LocalDateTime aExpectedDate, - final Duration aExpectedDuration, - final String aExpectedDescription, - final String aExpectedSubtitle, - final String aExpectedUrlSmall, - final String aExpectedUrlNormal, - final String aExpectedUrlHd, - final String aExpectedUrlAudioDescriptionSmall, - final String aExpectedUrlAudioDescriptionNormal, - final String aExpectedUrlAudioDescriptionHd, - final GeoLocations[] aExpectedGeoLocations) { - requestUrl = aRequestUrl; - filmPageFile = aFilmPageFile; - theme = aTheme; - expectedTheme = aExpectedTheme; - expectedTitle = aExpectedTitle; - expectedDate = aExpectedDate; - expectedDuration = aExpectedDuration; - expectedDescription = aExpectedDescription; - expectedUrlSmall = buildWireMockUrl(aExpectedUrlSmall); - expectedUrlNormal = buildWireMockUrl(aExpectedUrlNormal); - expectedUrlHd = buildWireMockUrl(aExpectedUrlHd); - expectedUrlAudioDescriptionSmall = buildWireMockUrl(aExpectedUrlAudioDescriptionSmall); - expectedUrlAudioDescriptionNormal = buildWireMockUrl(aExpectedUrlAudioDescriptionNormal); - expectedUrlAudioDescriptionHd = buildWireMockUrl(aExpectedUrlAudioDescriptionHd); - expectedSubtitle = aExpectedSubtitle; - expectedGeoLocations = aExpectedGeoLocations; - } - - @Parameterized.Parameters - public static Collection data() { - return Arrays.asList( - new Object[][] { - { - "https://tvthek.orf.at/profile/Hilfe-ich-hab-meine-Lehrerin-geschrumpft/13889696/Hilfe-ich-hab-meine-Lehrerin-geschrumpft/13993284", - "/orf/orf_film_audiodescription_duration_hour.html", - "AD | Tatort", - "Tatort", - "Tatort: Spieglein, Spieglein", - LocalDateTime.of(2019, 3, 17, 20, 15, 0), - Duration.ofMinutes(87), - "Staatsanwältin Klemm ist fassungslos. Die Frau, die mitten auf der Promenade in Münster erschossen wurde, sieht ihr zum Verwechseln ähnlich. Für Kommissar Thiel gibt es zunächst keinerlei Anhaltspunkte für ein Tatmotiv.", - "", - "", - "", - "", - "/apasfiis.sf.apa.at/ipad/cms-austria/2019-03-17_2015_sd_00_AD---Tatort--Sp_____14007849__o__2088184633__s14465114_4__ORF2ADHD_20144904P_21415115P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-austria/2019-03-17_2015_sd_00_AD---Tatort--Sp_____14007849__o__2088184633__s14465114_4__ORF2ADHD_20144904P_21415115P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-austria/2019-03-17_2015_sd_00_AD---Tatort--Sp_____14007849__o__2088184633__s14465114_4__ORF2ADHD_20144904P_21415115P_Q8C.mp4/playlist.m3u8", - new GeoLocations[] {GeoLocations.GEO_AT} - }, - { - "https://tvthek.orf.at/profile/BUNDESLAND-HEUTE/8461416/Bundesland-heute/13890700", - "/orf/orf_film_date_cest.html", - "Bundesland heute", - "Bundesland heute", - "Bundesland heute", - LocalDateTime.of(2016, 10, 1, 12, 55, 9), - Duration.ofSeconds(30), - "", - "", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/20161011_1040_in_02_Bundesland-heut_____13890700__o__1693823857__s13890997_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/20161011_1040_in_02_Bundesland-heut_____13890700__o__1693823857__s13890997_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/20161011_1040_in_02_Bundesland-heut_____13890700__o__1693823857__s13890997_Q8C.mp4/playlist.m3u8", - "", - "", - "", - new GeoLocations[] {GeoLocations.GEO_NONE} - }, - { - "http://tvthek.orf.at/archive/Die-Geschichte-des-Burgenlands/9236430/Zweisprachige-Ortstafeln/9056913", - "/orf/orf_history_film.html", - "Die Geschichte des Burgenlandes", - "Die Geschichte des Burgenlandes", - "Erste zweisprachige Ortstafel im Burgenland enthüllt", - LocalDateTime.of(2000, 7, 13, 12, 0, 0), - Duration.ofSeconds(174), - "Der Ort Großwarasdorf war die erste burgenländische Gemeinde mit einer offiziellen zweisprachigen Ortstafel. Der damaliger Bundeskanzler Wolfgang Schüssel (ÖVP) war vor Ort, um sie feierlich zu enthüllen. Otkrita prva dvojezična seoska tabla u Gradišću Općina Veliki Borištof je bila prva gradišćanska općina u koj je postavljena oficijelna dvojezična tabla. Tadašnji savezni kancelar Wolfgang Schüss\n.....", - "", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2000-07-13_1200_in_00_Zweisprachige-Ortsta_____9056913__o__0001362620__s9056914___Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2000-07-13_1200_in_00_Zweisprachige-Ortsta_____9056913__o__0001362620__s9056914___Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2000-07-13_1200_in_00_Zweisprachige-Ortsta_____9056913__o__0001362620__s9056914___Q8C.mp4/playlist.m3u8", - "", - "", - "", - new GeoLocations[] {GeoLocations.GEO_NONE} - }, - { - "https://tvthek.orf.at/profile/Soko-Donau/2672809/Soko-Donau-Entfesselt/14007925", - "/orf/orf_film_with_subtitle.html", - "Soko Donau", - "Soko Donau", - "Soko Donau: Entfesselt", - LocalDateTime.of(2019, 3, 19, 20, 15, 0), - Duration.ofMinutes(43).plusSeconds(16), - "Gewalttäter Gerd Weinzierl kommt nach drei Jahren Haft in elektronisch überwachten Hausarrest. Richard Kofler, Vater von Weinzierls damaligen Opfer Daniela, nimmt das mit großer Sorge wahr.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/35/d184eb43cd1d3a3c926810728cb99ee82204c43e.ttml", - "/apasfiis.sf.apa.at/ipad/cms-austria/2019-03-19_2015_in_01_Soko-Donau--Ent_____14007925__o__2552019395__s14465271_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-austria/2019-03-19_2015_in_01_Soko-Donau--Ent_____14007925__o__2552019395__s14465271_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-austria/2019-03-19_2015_in_01_Soko-Donau--Ent_____14007925__o__2552019395__s14465271_Q8C.mp4/playlist.m3u8", - "", - "", - "", - new GeoLocations[] {GeoLocations.GEO_AT} - }, - { - "https://tvthek.orf.at/profile/DENK-mit-KULTUR/8728536/DENK-mit-KULTUR-Gerda-Rogers-und-Schiffkowitz/14034271", - "/orf/orf_film_new_description_block.html", - "DENK mit KULTUR", - "DENK mit KULTUR", - "Gerda Rogers und Schiffkowitz", - LocalDateTime.of(2019, 12, 6, 21, 5, 0), - Duration.ofMinutes(45).plusSeconds(0), - "Birgit Denk hat diesmal Astrologin Gerda Rogers und STS-Star Schiffkowitz zum gemütlichen Late-Night-Talk ins Casino Baden eingeladen.", - "", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2019-12-06_2105_sd_06_DENK-mit-KULTUR_____14034271__o__1025186593__s14603593_3__ORF3HD_21062006P_21511908P_Q4A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2019-12-06_2105_sd_06_DENK-mit-KULTUR_____14034271__o__1025186593__s14603593_3__ORF3HD_21062006P_21511908P_Q6A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2019-12-06_2105_sd_06_DENK-mit-KULTUR_____14034271__o__1025186593__s14603593_3__ORF3HD_21062006P_21511908P_Q8C.mp4/playlist.m3u8", - "", - "", - "", - new GeoLocations[] {GeoLocations.GEO_NONE} - }, - { - "https://tvthek.orf.at/profile/Burgenland-heute-kompakt/13891025/Burgenland-heute-kompakt/14203644", - "/orf/orf_film_with_seconds.html", - "Burgenland heute kompakt", - "Burgenland heute kompakt", - "Burgenland heute kompakt", - LocalDateTime.of(2023, 12, 1, 16, 57, 0), - Duration.ofSeconds(49), - "", - "", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-12-01_1657_tl_23_Burgenland-heut_____14203644__o__1338501503__s15520121_1__BLBHD_16570412P_16575304P_Q4A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-12-01_1657_tl_23_Burgenland-heut_____14203644__o__1338501503__s15520121_1__BLBHD_16570412P_16575304P_Q6A.mp4/playlist.m3u8", - "https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-12-01_1657_tl_23_Burgenland-heut_____14203644__o__1338501503__s15520121_1__BLBHD_16570412P_16575304P_Q8C.mp4/playlist.m3u8", - "", - "", - "", - new GeoLocations[] {GeoLocations.GEO_NONE} - } - }); - } - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - @Test - public void test() throws IOException { - setupHeadRequestForFileSize(); - jsoupConnection = JsoupMock.mock(requestUrl, filmPageFile); - OrfCrawler crawler = createCrawler(); - crawler.setConnection(jsoupConnection); - - final Set actual = executeTask(crawler, theme, requestUrl); - - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(1)); - - final Film actualFilm = (Film) actual.toArray()[0]; - AssertFilm.assertEquals( - actualFilm, - Sender.ORF, - expectedTheme, - expectedTitle, - expectedDate, - expectedDuration, - expectedDescription, - requestUrl, - expectedGeoLocations, - expectedUrlSmall, - expectedUrlNormal, - expectedUrlHd, - "", - "", - "", - expectedUrlAudioDescriptionSmall, - expectedUrlAudioDescriptionNormal, - expectedUrlAudioDescriptionHd, - expectedSubtitle); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTestBase.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTestBase.java deleted file mode 100644 index 85a0ee3fd..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTestBase.java +++ /dev/null @@ -1,18 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mlib.daten.Film; - -import de.mediathekview.mserver.crawler.orf.OrfCrawler; - -import java.util.Set; - -public abstract class OrfFilmDetailTaskTestBase extends OrfTaskTestBase { - - public OrfFilmDetailTaskTestBase() { - } - - protected Set executeTask(OrfCrawler crawler, String aTheme, String aRequestUrl) { - return new OrfFilmDetailTask(crawler, createCrawlerUrlDto(aTheme, aRequestUrl), false) - .invoke(); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskWithEpisodesTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskWithEpisodesTest.java deleted file mode 100644 index 1ba587b01..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskWithEpisodesTest.java +++ /dev/null @@ -1,189 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mlib.daten.GeoLocations; -import de.mediathekview.mlib.daten.Sender; -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.AssertFilm; -import de.mediathekview.mserver.testhelper.JsoupMock; -import org.junit.Before; -import org.junit.Test; -import org.junit.runners.Parameterized; -import org.mockito.Mock; -import org.mockito.MockitoAnnotations; - -import java.io.IOException; -import java.time.Duration; -import java.time.LocalDateTime; -import java.util.Arrays; -import java.util.Collection; -import java.util.Set; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; - -public class OrfFilmDetailTaskWithEpisodesTest extends OrfFilmDetailTaskTestBase { - - private static final String REQUEST_URL = - "https://tvthek.orf.at/profile/ZIB-900/71256/ZIB-900/14007767"; - private static final String EXPECTED_THEME = "ZIB 9:00"; - private static final LocalDateTime EXPECTED_TIME = LocalDateTime.of(2019, 3, 18, 9, 0, 0); - private static final GeoLocations[] EXPECTED_GEO = new GeoLocations[] {GeoLocations.GEO_NONE}; - - private static final int INDEX_TITLE = 0; - private static final int INDEX_DURATION = 1; - private static final int INDEX_DESCRIPTION = 2; - private static final int INDEX_SUBTITLE = 3; - private static final int INDEX_URL_SMALL = 4; - private static final int INDEX_URL_NORMAL = 5; - private static final int INDEX_URL_HD = 6; - - @Mock JsoupConnection jsoupConnection; - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - @Parameterized.Parameters - public static Collection data() { - return Arrays.asList( - new Object[][] { - { - "ZIB 9:00", - Duration.ofMinutes(8).plusSeconds(38), - "Neuseeland: Attentäter will sich selbst verteidigen | Jölli (ORF) über Prozess in Chemnitz | Boeing: USA überprüft Zulassungsverfahren | Fünf Jahre Annexion der Krim | Peter Kraus ist 80 | Thiem auf Platz vier der Weltrangliste | Wetter", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/ab9769266a0be435d2fd5d73cabde0076ef9d55c.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14007767_0011_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14007767_0011_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14007767_0011_Q8C.mp4/playlist.m3u8" - }, - { - "Thiem auf Platz vier der Weltrangliste", - Duration.ofSeconds(35), - "Der Tennisspieler Dominic Thiem hat Superstar Roger Federer geschlagen und erstmals einen Masters-1000-Titel gewonnen. Auf der Weltrangliste steht Thiem nun auf Platz vier.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/c10d2fa4eda80c8b90d3d449ada6d68736fa4395.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Thiem-auf-Platz__14007767__o__7185021595__s14465213_3__ORF2HD_09063916P_09071423P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Thiem-auf-Platz__14007767__o__7185021595__s14465213_3__ORF2HD_09063916P_09071423P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Thiem-auf-Platz__14007767__o__7185021595__s14465213_3__ORF2HD_09063916P_09071423P_Q8C.mp4/playlist.m3u8" - }, - { - "Signation | Themen", - Duration.ofSeconds(16), - "Neuseeland: Attentäter will sich selbst verteidigen | Jölli (ORF) über Prozess in Chemnitz | Boeing: USA überprüft Zulassungsverfahren | Fünf Jahre Annexion der Krim | Peter Kraus ist 80 | Thiem auf Platz vier der Weltrangliste | Wetter", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/6d222f74207d1d1dee0d2d4611815951e745e6c3.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Signation---The__14007767__o__1412221432__s14465207_7__ORF2HD_09000021P_09001714P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Signation---The__14007767__o__1412221432__s14465207_7__ORF2HD_09000021P_09001714P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Signation---The__14007767__o__1412221432__s14465207_7__ORF2HD_09000021P_09001714P_Q8C.mp4/playlist.m3u8" - }, - { - "Wetter", - Duration.ofSeconds(85), - "Nach dem sonnigen und milden Sonntag ist über Nacht feuchte Luft von Nordeuropa nach Österreich geströmt. Damit wird es ein unbeständiger und kühler Wochenstart", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/f1488a72dde1d0dbfc892d431503b5d8e005b75b.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Wetter__14007767__o__1404024135__s14465214_4__ORF2HD_09071423P_09084015P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Wetter__14007767__o__1404024135__s14465214_4__ORF2HD_09071423P_09084015P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Wetter__14007767__o__1404024135__s14465214_4__ORF2HD_09071423P_09084015P_Q8C.mp4/playlist.m3u8" - }, - { - "Peter Kraus ist 80", - Duration.ofSeconds(74), - "Peter Kraus feiert am Montag seinen 80. Geburtstag. Der österreichische Sänger und Schauspieler ist seit den 1950er Jahren berühmt und hat den Rock & Roll im deutschsprachigen Raum salonfähig gemacht.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/d5c8eb0e78c1226a38639615ada85592533cf20c.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Peter-Kraus-ist__14007767__o__1330093995__s14465212_2__ORF2HD_09052421P_09063916P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Peter-Kraus-ist__14007767__o__1330093995__s14465212_2__ORF2HD_09052421P_09063916P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Peter-Kraus-ist__14007767__o__1330093995__s14465212_2__ORF2HD_09052421P_09063916P_Q8C.mp4/playlist.m3u8" - }, - { - "Jölli (ORF) über Prozess in Chemnitz", - Duration.ofSeconds(64), - "In Chemnitz in Deutschland beginnt der Prozess um ein Messerangriff. Als Täter gelten zwei Asylwerber und das löst nach der Tat Aufruhr aus. Andreas Jölli (ORF) berichtet.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/e9a6bbc0d3a34adaf677a7845ef923abf46c75e1.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Joelli--ORF--ue__14007767__o__1318216483__s14465209_9__ORF2HD_09013812P_09024309P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Joelli--ORF--ue__14007767__o__1318216483__s14465209_9__ORF2HD_09013812P_09024309P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Joelli--ORF--ue__14007767__o__1318216483__s14465209_9__ORF2HD_09013812P_09024309P_Q8C.mp4/playlist.m3u8" - }, - { - "Fünf Jahre Annexion der Krim", - Duration.ofSeconds(85), - "Vor fünf Jahren hat Russland die ukrainische Halbinsel Krim per Staatsvertrag annektiert. Die Aktion hat viel Kritik ausgelöst, Moskau ist seitdem mit Sanktionen belegt.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/559b2abe436554513bf9b6d7adc5a6c86976390b.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Fuenf-Jahre-Ann__14007767__o__1979729045__s14465211_1__ORF2HD_09035904P_09052421P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Fuenf-Jahre-Ann__14007767__o__1979729045__s14465211_1__ORF2HD_09035904P_09052421P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Fuenf-Jahre-Ann__14007767__o__1979729045__s14465211_1__ORF2HD_09035904P_09052421P_Q8C.mp4/playlist.m3u8" - }, - { - "Boeing: USA überprüft Zulassungsverfahren", - Duration.ofSeconds(75), - "Die Abstürze zweier Boeing-Flugzeuge vom Typ 737 Max 8 haben immer mehr Konsequenzen. Die US-Regierung überprüft das Zulassungsverfahren der amerikanischen Flug-Aufsichtsbehörde.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/39b45f3c67d9db34fa39590756959b78bd036345.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Boeing--USA-ueb__14007767__o__1038723783__s14465210_0__ORF2HD_09024309P_09035904P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Boeing--USA-ueb__14007767__o__1038723783__s14465210_0__ORF2HD_09024309P_09035904P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Boeing--USA-ueb__14007767__o__1038723783__s14465210_0__ORF2HD_09024309P_09035904P_Q8C.mp4/playlist.m3u8" - }, - { - "Attentäter will sich selbst verteidigen", - Duration.ofSeconds(80), - "Nach dem Terroranschlag in Neuseeland mit mindestens 50 Todesopfern will sich der mutmaßliche Attentäter selbst vor Gericht verteidigen. Der 28-jährige Australier ist wegen Mordes angeklagt.", - "https://api-tvthek.orf.at/uploads/media/subtitles/0076/23/86e33a5c356a973fcb78527c822f89b1d4fa5709.ttml", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Neuseeland--Att__14007767__o__1967360405__s14465208_8__ORF2HD_09001810P_09013812P_Q4A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Neuseeland--Att__14007767__o__1967360405__s14465208_8__ORF2HD_09001810P_09013812P_Q6A.mp4/playlist.m3u8", - "/apasfiis.sf.apa.at/ipad/cms-worldwide/2019-03-18_0900_tl_02_ZIB-9-00_Neuseeland--Att__14007767__o__1967360405__s14465208_8__ORF2HD_09001810P_09013812P_Q8C.mp4/playlist.m3u8" - } - }); - } - - @Test - public void test() throws IOException { - setupHeadRequestForFileSize(); - jsoupConnection = JsoupMock.mock(REQUEST_URL, "/orf/orf_film_with_several_parts.html"); - OrfCrawler crawler = createCrawler(); - crawler.setConnection(jsoupConnection); - - final Collection films = data(); - - final Set actual = executeTask(crawler, EXPECTED_THEME, REQUEST_URL); - - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(films.size())); - - actual.forEach( - actualFilm -> { - final Object[] expectedData = getExpectedValues(films, actualFilm.getTitel()); - assertThat(expectedData, notNullValue()); - - AssertFilm.assertEquals( - actualFilm, - Sender.ORF, - EXPECTED_THEME, - expectedData[INDEX_TITLE].toString(), - EXPECTED_TIME, - (Duration) expectedData[INDEX_DURATION], - expectedData[INDEX_DESCRIPTION].toString(), - REQUEST_URL, - EXPECTED_GEO, - expectedData[INDEX_URL_SMALL].toString().isEmpty() - ? "" - : getWireMockBaseUrlSafe() + expectedData[INDEX_URL_SMALL].toString(), - expectedData[INDEX_URL_NORMAL].toString().isEmpty() - ? "" - : getWireMockBaseUrlSafe() + expectedData[INDEX_URL_NORMAL].toString(), - expectedData[INDEX_URL_HD].toString().isEmpty() - ? "" - : getWireMockBaseUrlSafe() + expectedData[INDEX_URL_HD].toString(), - expectedData[INDEX_SUBTITLE].toString()); - }); - } - - private Object[] getExpectedValues(final Collection aExpectedFilms, final String aActualTitle) { - for (final Object[] expected : aExpectedFilms) { - if (expected[INDEX_TITLE].toString().compareToIgnoreCase(aActualTitle) == 0) { - return expected; - } - } - - return new Object[0]; - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelperTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelperTest.java deleted file mode 100644 index 075fb4916..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelperTest.java +++ /dev/null @@ -1,48 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; - -import java.util.Arrays; -import java.util.Collection; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.MatcherAssert.assertThat; - -@RunWith(Parameterized.class) -public class OrfHelperTest { - - private final String expectedTheme; - private final String inputTheme; - - public OrfHelperTest(String inputTheme, String expectedTheme) { - this.expectedTheme = expectedTheme; - this.inputTheme = inputTheme; - } - - @Parameterized.Parameters - public static Collection data() { - return Arrays.asList( - new Object[][] { - {"Hallo Österreich", "Hallo Österreich"}, - {"Adj'Isten magyarok", "Adj'Isten magyarok"}, - {"ZIB 1", "ZIB 1"}, - {"ZIB 18", "ZIB 18"}, - {"Sport 20", "Sport 20"}, - {"ZIB Flash 19:55", "ZIB Flash"}, - {"ZIB 17:00", "ZIB"}, - {"ZIB 9:00", "ZIB"}, - {"Guten Morgen Österreich 8:30", "Guten Morgen Österreich"}, - {"Guten Morgen Österreich 08:00", "Guten Morgen Österreich"}, - {"Thema hier : hier kommt was anderes", "Thema hier"} - }); - } - - @Test - public void parseTheme() { - - final String actualTheme = OrfHelper.parseTheme(inputTheme); - assertThat(actualTheme, equalTo(expectedTheme)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTaskTest.java deleted file mode 100644 index 5f3f29a5a..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTaskTest.java +++ /dev/null @@ -1,67 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mlib.daten.Sender; -import de.mediathekview.mserver.base.config.MServerConfigManager; -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfConstants; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.JsoupMock; -import org.hamcrest.Matchers; -import org.jsoup.nodes.Document; -import org.junit.Before; -import org.junit.Test; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; - -import java.util.Queue; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.mockito.ArgumentMatchers.eq; -import static org.mockito.Mockito.when; - -public class OrfHistoryOverviewTaskTest { - - @Mock JsoupConnection jsoupConnection; - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - private final TopicUrlDTO[] expectedUrls = - new TopicUrlDTO[] { - new TopicUrlDTO( - "Die Geschichte des Burgenlands", - "https://tvthek.orf.at/history/Die-Geschichte-des-Burgenlands/9236430"), - new TopicUrlDTO( - "Die Geschichte Niederösterreichs", - "https://tvthek.orf.at/history/Die-Geschichte-Niederoesterreichs/8378971"), - new TopicUrlDTO( - "Volksgruppen in Österreich", - "https://tvthek.orf.at/history/Volksgruppen-in-Oesterreich/13557924") - }; - - @Test - public void test() throws Exception { - final OrfCrawler crawler = Mockito.mock(OrfCrawler.class); - when(crawler.getCrawlerConfig()) - .thenReturn( - new MServerConfigManager("MServer-JUnit-Config.yaml").getSenderConfig(Sender.ORF)); - final Document document = JsoupMock.getFileDocument("/orf/orf_history_overview.html"); - when(jsoupConnection.requestBodyAsHtmlDocument(eq(OrfConstants.URL_ARCHIVE))) - .thenReturn(document); - when(crawler.requestBodyAsHtmlDocument(eq(OrfConstants.URL_ARCHIVE))).thenReturn(document); - when(crawler.getConnection()).thenReturn(jsoupConnection); - - final OrfHistoryOverviewTask target = new OrfHistoryOverviewTask(crawler); - - final Queue actual = target.call(); - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(expectedUrls.length)); - assertThat(actual, Matchers.containsInAnyOrder(expectedUrls)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTaskTest.java deleted file mode 100644 index 3d47033b4..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTaskTest.java +++ /dev/null @@ -1,137 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.JsoupMock; -import org.hamcrest.Matchers; -import org.junit.Before; -import org.junit.Test; -import org.mockito.Mock; -import org.mockito.MockitoAnnotations; - -import java.io.IOException; -import java.util.Queue; -import java.util.Set; -import java.util.concurrent.ConcurrentLinkedQueue; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; - -public class OrfHistoryTopicTaskTest extends OrfTaskTestBase { - - @Mock JsoupConnection jsoupConnection; - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - @Test - public void test() throws IOException { - final String requestUrl = - "https://tvthek.orf.at/history/Die-Geschichte-Niederoesterreichs/8378971"; - final String topic = "Die Geschichte Niederösterreichs"; - - jsoupConnection = JsoupMock.mock(requestUrl, "/orf/orf_history_topic_overview.html"); - OrfCrawler crawler = createCrawler(); - crawler.setConnection(jsoupConnection); - - final TopicUrlDTO[] expected = - new TopicUrlDTO[] { - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Johanna-Mikl-Leitner-erste-Landeshauptfrau-Niederoesterreichs/13927331"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Letzte-Rede-von-Erwin-Proell-als-Landeshauptmann/13927148"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Landeshauptmann-Erwin-Proell-OeVP-tritt-zurueck/13914863"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Der-Werdegang-des-Julius-Raab/8293346"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Leopold-Figl-Glaubt-an-dieses-Oesterreich/9697062"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Liese-Prokop-erste-Innenministerin-Oesterreichs/13919164"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Niederoesterreich-erhaelt-seine-erste-Landeshymne/8602764"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Ein-Land-sucht-seine-Hauptstadt/8293238"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Protest-gegen-Kraftwerk-in-der-Wachau/8323916"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Siegfried-Ludwig-im-Portraet/8675677"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Der-vorletzte-Kuenringer-Andreas-Maurer/8298065"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Karl-Schloegl-zieht-sich-aus-Politik-zurueck/13988092"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Eroeffnung-des-Josef-Reither-Museums/8764784"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Nachruf-Siegfried-Ludwig/8322787"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Regierungsviertel-Spatenstich-in-St-Poelten/8276763"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Landeshauptleute-und-Politik/8378973/Feierliche-Eroeffnung-des-Regierungsviertels/8276738"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Ein-Tag-im-Stift-Melk/8313371"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Moench-und-Manager-Ein-Blick-in-das-Stift-Altenburg/8313396"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Das-belebte-Stift-Goettweig/8323032"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Die-Schatzkammer-von-Klosterneuburg/8294667"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Doppelkloster-Stift-Geras-Pernegg/8313494"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Bildband-Die-Wienerwaldkloester/8276592"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Kulturerbe-Stift-Lilienfeld/8313407"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/350-Jahre-Basilika-Maria-Taferl/8293327"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/900-Jahre-Stift-Seitenstetten/8302230"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Jubilaeum-im-Stift-Zwettl/8323108"), - new TopicUrlDTO( - topic, - "https://tvthek.orf.at/history/Stifte-und-Kloester/8378976/Pilgerstaette-am-Sonntagberg/8328932") - }; - - final Queue queue = new ConcurrentLinkedQueue<>(); - queue.add(new TopicUrlDTO(topic, requestUrl)); - - final OrfHistoryTopicTask target = - new OrfHistoryTopicTask(crawler, queue); - final Set actual = target.invoke(); - - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(expected.length)); - assertThat(actual, Matchers.containsInAnyOrder(expected)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTaskTest.java deleted file mode 100644 index 45649d4bd..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTaskTest.java +++ /dev/null @@ -1,131 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mlib.daten.Sender; -import de.mediathekview.mserver.base.config.MServerConfigManager; -import de.mediathekview.mserver.base.webaccess.JsoupConnection; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfConstants; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.testhelper.JsoupMock; -import org.hamcrest.Matchers; -import org.jsoup.nodes.Document; -import org.junit.Before; -import org.junit.Test; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; - -import java.io.IOException; -import java.util.HashMap; -import java.util.Map; -import java.util.Queue; - -import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.junit.Assert.fail; -import static org.mockito.ArgumentMatchers.eq; -import static org.mockito.Mockito.when; - -public class OrfLetterPageTaskTest { - - private static final String ORF_EMPTY_PAGE = "/orf/orf_letter_empty.html"; - - @Mock JsoupConnection jsoupConnection; - - @Before - public void setUp() { - MockitoAnnotations.openMocks(this); - } - - private final TopicUrlDTO[] expectedUrls = - new TopicUrlDTO[] { - new TopicUrlDTO( - "Adj'Isten magyarok", - "https://tvthek.orf.at/profile/AdjIsten-magyarok/13886441/AdjIsten-magyarok/14007007"), - new TopicUrlDTO( - "Aktuell in Österreich", - "https://tvthek.orf.at/profile/Aktuell-in-Oesterreich/13887571/Aktuell-in-Oesterreich/14007906"), - new TopicUrlDTO( - "Alltagsgeschichten", - "https://tvthek.orf.at/profile/Alltagsgeschichten/13887428/Alltagsgeschichte-Am-Wuerstelstand/14007519"), - new TopicUrlDTO( - "Alpine Ski World Cup Magazin", - "https://tvthek.orf.at/profile/Alpine-Ski-World-Cup-Magazin/13889761/FIS-Alpine-SKI-World-Cup-Magazin-2018-2019-Folge-16/14007422"), - new TopicUrlDTO( - "Am Schauplatz Gericht", - "https://tvthek.orf.at/profile/Am-Schauplatz-Gericht/13886290/Am-Schauplatz-Gericht-Der-glaubt-ich-bin-deppert/14007403"), - new TopicUrlDTO( - "Aufgetischt", - "https://tvthek.orf.at/profile/Aufgetischt/13886333/Aufgetischt-am-Sonntag-Dornbirn/14007714"), - new TopicUrlDTO( - "Aus dem Rahmen", - "https://tvthek.orf.at/profile/Aus-dem-Rahmen/3078207/Aus-dem-Rahmen-Kunst-Karl-und-die-Basken-Das-Guggenheim-Museum-in-Bilbao/14007927"), - new TopicUrlDTO( - "Autofocus", - "https://tvthek.orf.at/profile/Autofocus/13886508/Autofocus-LKW-Gas-und-Strom-statt-Diesel/14007294"), - new TopicUrlDTO( - "Yoga-Magazin", - "https://tvthek.orf.at/profile/Yoga-Magazin/7708946/Das-Yoga-Magazin-Folge-110/14007507") - }; - - @Test - public void test() throws Exception { - final OrfCrawler crawler = Mockito.mock(OrfCrawler.class); - - final Map urlMapping = new HashMap<>(); - urlMapping.put( - OrfConstants.URL_SHOW_LETTER_PAGE + "A", - "/orf/orf_letter_multiple_themes_multiple_films.html"); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "B", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "C", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "D", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "E", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "F", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "G", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "H", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "I", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "J", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "K", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "L", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "M", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "N", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "O", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "P", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "Q", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "R", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "S", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "T", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "U", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "V", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "W", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "X", ORF_EMPTY_PAGE); - urlMapping.put( - OrfConstants.URL_SHOW_LETTER_PAGE + "Y", "/orf/orf_letter_single_theme_single_film.html"); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "Z", ORF_EMPTY_PAGE); - urlMapping.put(OrfConstants.URL_SHOW_LETTER_PAGE + "0", ORF_EMPTY_PAGE); - - urlMapping.forEach( - (url, fileName) -> { - try { - final Document document = JsoupMock.getFileDocument(fileName); - when(jsoupConnection.requestBodyAsHtmlDocument(eq(url))).thenReturn(document); - when(crawler.requestBodyAsHtmlDocument(eq(url))).thenReturn(document); - } catch (final IOException iox) { - fail(); - } - }); - - when(crawler.getCrawlerConfig()) - .thenReturn( - new MServerConfigManager("MServer-JUnit-Config.yaml").getSenderConfig(Sender.ORF)); - when(crawler.getConnection()).thenReturn(jsoupConnection); - - final OrfLetterPageTask target = new OrfLetterPageTask(crawler); - - final Queue actual = target.call(); - assertThat(actual, notNullValue()); - assertThat(actual.size(), equalTo(expectedUrls.length)); - assertThat(actual, Matchers.containsInAnyOrder(expectedUrls)); - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfTaskTestBase.java b/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfTaskTestBase.java deleted file mode 100644 index 3ab81708f..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfTaskTestBase.java +++ /dev/null @@ -1,34 +0,0 @@ -package de.mediathekview.mserver.crawler.orf.tasks; - -import de.mediathekview.mlib.messages.listener.MessageListener; -import de.mediathekview.mserver.base.config.MServerConfigManager; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orf.OrfCrawler; -import de.mediathekview.mserver.progress.listeners.SenderProgressListener; -import de.mediathekview.mserver.testhelper.WireMockTestBase; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Queue; -import java.util.concurrent.ConcurrentLinkedQueue; -import java.util.concurrent.ForkJoinPool; - -public abstract class OrfTaskTestBase extends WireMockTestBase { - - protected MServerConfigManager rootConfig = new MServerConfigManager("MServer-JUnit-Config.yaml"); - - public OrfTaskTestBase() {} - - protected OrfCrawler createCrawler() { - final ForkJoinPool forkJoinPool = new ForkJoinPool(); - final Collection nachrichten = new ArrayList<>(); - final Collection fortschritte = new ArrayList<>(); - return new OrfCrawler(forkJoinPool, nachrichten, fortschritte, rootConfig); - } - - protected Queue createCrawlerUrlDto(final String aTheme, final String aUrl) { - final Queue input = new ConcurrentLinkedQueue<>(); - input.add(new TopicUrlDTO(aTheme, aUrl)); - return input; - } -} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnAZTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnAZTaskTest.java new file mode 100644 index 000000000..e4f761d74 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnAZTaskTest.java @@ -0,0 +1,52 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; + +import java.util.ArrayList; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.junit.Test; + +import de.mediathekview.mserver.crawler.orfon.task.OrfOnAZTask; +import de.mediathekview.mserver.testhelper.WireMockTestBase; + +import static java.util.Arrays.asList; + + +public class OrfOnAZTaskTest extends WireMockTestBase { + + @Test + public void test() { + setupSuccessfulJsonResponse("/azTask", "/orfOn/letter_1.json"); + Set result = executeTask("/azTask"); + List expectedResult = generateExpectedResult(); + assertTrue(result.size() == 9); + assertIterableEquals(result, expectedResult); + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnAZTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + private List generateExpectedResult() { + ArrayList expectedResult = new ArrayList<>(asList( + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13892414/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/8850620/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13895942/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/8850612/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13890803/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13894465/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13732047/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13895899/episodes?limit=200"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/profile/13887359/episodes?limit=200"))); + return expectedResult; + } +} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java new file mode 100644 index 000000000..b0efe7fc3 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -0,0 +1,244 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import de.mediathekview.mlib.daten.*; +import de.mediathekview.mlib.messages.listener.MessageListener; +import de.mediathekview.mserver.base.config.MServerConfigManager; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodeTask; +import de.mediathekview.mserver.progress.listeners.SenderProgressListener; +import de.mediathekview.mserver.testhelper.AssertFilm; +import java.net.URL; +import java.time.Duration; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Optional; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.concurrent.ForkJoinPool; +import org.junit.Test; + +public class OrfOnEpisodeTaskTest extends OrfOnEpisodesTaskTest { + + protected static OrfOnCrawler createCrawler() { + final ForkJoinPool forkJoinPool = new ForkJoinPool(); + final Collection nachrichten = new ArrayList<>(); + final Collection fortschritte = new ArrayList<>(); + return new OrfOnCrawler(forkJoinPool, nachrichten, fortschritte, new MServerConfigManager("MServer-JUnit-Config.yaml")); + } + + @Test + public void testNormal_1() { + setupSuccessfulJsonResponse("/episode1", "/orfOn/episode_1.json"); + Set result = executeTask("/episode1"); + assertTrue(result.size() == 1); + Film actual = result.toArray(new Film[1])[0]; + // + try { + assertEquals("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian",actual.getTitel()); + assertEquals("Servus Kasperl",actual.getThema()); + assertEquals(LocalDateTime.of(2024,01,04,07,07,38),actual.getTime()); + assertEquals("Kasperl und Strolchi besuchen den Zirkusdirektor des Zirkus Kindleroni. Dieser ist verzweifelt, weil sein Stallbursche krank ist und er die ganze Arbeit alleine kaum schaffen kann. Doch da kommt Hilfe durch Maximilian, der Arbeit sucht. Sofort darf Maximilian die Stelle als Stallbursche antreten. Eine seiner Aufgaben ist es auch auf Koko, den Papagei des Direktors, aufzupassen. Dieser ist in Gefah",actual.getBeschreibung().substring(0,400)); + assertEquals(Duration.parse("PT21M56S"),actual.getDuration()); + assertEquals(Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")),actual.getWebsite()); + assertTrue(List.of(GeoLocations.GEO_NONE).containsAll(actual.getGeoLocations())); + assertTrue(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/07aead27b4c0b09b36750db54b8ce15ff9b8499c.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/4dd6932d7cf6ceaad90a536c3e03981267e32941.vtt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/09477f02c5e0392ecd2f717461ed136237d70050.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/808e2453d38fd8a5e4fab4794cc034ee89fcfd9c.xml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/8547597f31429d87a5418918ae471b44fcf9ab55.smi") + ).containsAll(actual.getSubtitles())); + assertEquals(Map.of( + Resolution.HD, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q8C.mp4/playlist.m3u8", 0L), + Resolution.NORMAL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q6A.mp4/playlist.m3u8", 0L), + Resolution.SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q4A.mp4/playlist.m3u8", 0L), + Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q1A.3gp/playlist.m3u8", 0L) + ), actual.getUrls()); + } catch (Exception e) { + assertTrue(false); + } + } + + @Test + public void testNormal_2() { + setupSuccessfulJsonResponse("/episode2", "/orfOn/episode_2.json"); + Set result = executeTask("/episode2"); + assertTrue(result.size() == 1); + Film actual = result.toArray(new Film[1])[0]; + // + try { + assertEquals("ABC Bär",actual.getTitel()); + assertEquals("ABC-Bär",actual.getThema()); + assertEquals(LocalDateTime.of(2024,01,04,06,45),actual.getTime()); + assertEquals("Der ABC Bär und seine Tierfreunde reisen mit ihrem lustigen Baumhaus durch das Land, um ihre Zahl- und Buchstabenspiele aufzuführen und erleben dabei jede Menge spannender Geschichten. Bildquelle: ORF",actual.getBeschreibung()); + assertEquals(Duration.parse("PT13M29S"),actual.getDuration()); + assertEquals(Optional.of(new URL("https://tvthek.orf.at/profile/ABC-Baer/4611813/ABC-Baer/14207790")),actual.getWebsite()); + assertTrue(List.of(GeoLocations.GEO_AT).containsAll(actual.getGeoLocations())); + assertTrue(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/b682365a2a3fd1d45a2f029a597735a9df5b7524.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/20c53ed98f58a5045da663191516bc7fbf09e3d2.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/c50d4ed5c4f912e8d7f7b5e94cd9155bd31b247d.vtt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/1f178ebeae4aea09e03697e85082701de6df436c.xml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0166/92/7096926d900006d0d196e1dab952a62200118c2c.smi") + ).containsAll(actual.getSubtitles())); + assertEquals(Map.of( + Resolution.HD, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q8C.mp4/playlist.m3u8", 0L), + Resolution.NORMAL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q6A.mp4/playlist.m3u8", 0L), + Resolution.SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q4A.mp4/playlist.m3u8", 0L), + Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q1A.3gp/playlist.m3u8", 0L) + ), actual.getUrls()); + } catch (Exception e) { + assertTrue(false); + } + } + + @Test + public void testZib() { + setupSuccessfulJsonResponse("/zib", "/orfOn/episode_zib.json"); + Set result = executeTask("/zib"); + assertTrue(result.size() == 1); + Film actual = result.toArray(new Film[1])[0]; + + AssertFilm.assertEquals( + actual, + Sender.ORF, + "ZIB 13:00", + "ZIB 13:00 vom 20.03.2024", + LocalDateTime.of(2024, 3, 20, 13, 0, 0), + Duration.ofSeconds(1177), + "Wohnbaupaket passiert Nationalrat | ORF-Analyse: Details zum Wohnbaupaket | Neue Lehrerausbildung kommt ein Jahr später | Agrarprodukte aus Ukraine werden wieder verzollt | ORF-Analyse: Zölle auf Landwirtschaftsgüter aus Ukraine | London: Zweiter Anlauf für \"Ruanda-Plan\" | Vorschau: GB stimmt über \"Ruanda-Plan\" ab | 2023: Über 1.300 Vorfälle von Rassismus in Österreich | Rekordhoch bei Insolvenze\n.....", + "https://tvthek.orf.at/profile/ZIB-1300/71280/ZIB-1300-vom-20-03-2024/14218665", + new GeoLocations[] { GeoLocations.GEO_NONE}, + "https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14218665_0017_Q4A.mp4/playlist.m3u8", + "https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14218665_0017_Q6A.mp4/playlist.m3u8", + "https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14218665_0017_Q8C.mp4/playlist.m3u8", + "https://api-tvthek.orf.at/assets/subtitles/0171/59/69a0deabec546a7fb5fabc7ebb44e55a031987ac.ttml"); + } + + @Test + public void testAD() { + setupSuccessfulJsonResponse("/episodeAD", "/orfOn/episode_ad.json"); + Set result = executeTask("/episodeAD"); + assertTrue(result.size() == 1); + Film actual = result.toArray(new Film[1])[0]; + // + try { + assertEquals("Vorstadtweiber: Folge 18 (Audiodeskription)",actual.getTitel()); + assertEquals("Vorstadtweiber Staffel 2",actual.getThema()); + assertEquals(LocalDateTime.of(2023,12,06,23,07,52),actual.getTime()); + assertEquals("Chaos wegen der Entführung von Waltrauds Baby. Die betrunkene Sylvia sagt, sie habe Simon vor der Türe gesehen. Waltraud ist sofort klar, dass nur Simon der Entführer sein kann. Den trifft sie zuhause, wo er gerade packt, um abzuhauen. Er beteuert, das Baby nicht entführt zu haben. Währenddessen rast Vanessa mit ihrem Wagen durch die Stadt, verheult, überdreht, ein Baby am Rücksitz. Daheim angekom",actual.getBeschreibung().substring(0,400)); + assertEquals(Duration.parse("PT46M32S"),actual.getDuration()); + assertEquals(Optional.of(new URL("https://tvthek.orf.at/profile/AD-Vorstadtweiber-Staffel-2/13895877/AD-Vorstadtweiber-Folge-18/14204417")),actual.getWebsite()); + assertTrue(List.of(GeoLocations.GEO_AT).containsAll(actual.getGeoLocations())); + assertTrue(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0164/35/3c283187a44f9759f83a6731220549dc485d332d.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0164/35/d7726579282af4a4eb7f13bcd0716b0ddd769e78.vtt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0164/35/6146c97d9eb3437f89e05640188093453ad3e1af.smi"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0164/35/cae06428d2dd0a03f6c0a81dbd7695f0b096187d.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0164/35/275b919125cabcf1bbb0a3f1b38ec0c460367ae6.xml") + ).containsAll(actual.getSubtitles())); + // [, , , , ] + assertEquals(Map.of( + Resolution.HD, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q8C.mp4/playlist.m3u8", 0L), + Resolution.NORMAL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q6A.mp4/playlist.m3u8", 0L), + Resolution.SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q4A.mp4/playlist.m3u8", 0L), + Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q1A.3gp/playlist.m3u8", 0L) + ), actual.getUrls()); + // {HD=, NORMAL=, SMALL=, VERY_SMALL=} + } catch (Exception e) { + assertTrue(false); + } + } + + @Test + public void testArchive() { + setupSuccessfulJsonResponse("/episodeArchive", "/orfOn/episode_archive.json"); + Set result = executeTask("/episodeArchive"); + assertTrue(result.size() == 1); + Film actual = result.toArray(new Film[1])[0]; + // + try { + assertEquals("ORF-Mitarbeiter in Quarantäne",actual.getTitel()); + assertEquals("Best of \"ZIB 2\"-Interviews",actual.getThema()); + assertEquals(LocalDateTime.of(2020,03,25,13,10),actual.getTime()); + assertEquals("Der ORF hat während der Coronakrise 2020 eine besondere Vorsichtsmaßnahme getroffen, um den Betrieb sicherzustellen. Einige Mitarbeiter und Moderatoren des Senders sind vorübergehend in das ORF-Zentrum am Küniglberg gezogen. Dort wird in \"Sperrzonen\" gearbeitet und der Sendebetrieb aufrecht erhalten. Sendung: Mittag in Österreich Gestaltung: Stefan Schlager",actual.getBeschreibung()); + assertEquals(Duration.parse("PT3M30S"),actual.getDuration()); + assertEquals(Optional.of(new URL("https://tvthek.orf.at/profile/Archiv/7648449/ORF-Mitarbeiter-in-Quarantaene/14046198")),actual.getWebsite()); + assertTrue(List.of(GeoLocations.GEO_NONE).containsAll(actual.getGeoLocations())); + assertTrue(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0149/07/169001a65997f4d747fff2e4390a1f48789f388e.smi"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0149/07/fcaa2c529b8a6524f2fe58820e734dba44aab0ba.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0149/07/dacc52722cffd5bc466a231c66aeb2c01033a24d.vtt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0149/07/1fc835e5ea31f903e9e5aa136085d4835bb8f81f.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0149/07/f198c7d0c39a12039bd3a7f20a371acc0b7e8168.xml") + ).containsAll(actual.getSubtitles())); + assertEquals(Map.of( + Resolution.HD, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q8C.mp4/playlist.m3u8", 0L), + Resolution.NORMAL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q6A.mp4/playlist.m3u8", 0L), + Resolution.SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q4A.mp4/playlist.m3u8", 0L), + Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwide/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q1A.3gp/playlist.m3u8", 0L) + ), actual.getUrls()); + } catch (Exception e) { + assertTrue(false); + } + } + + @Test + public void testDummyUrls() { + setupSuccessfulJsonResponse("/episodeDummyUrl", "/orfOn/episode_noDrm.json"); + setupSuccessfulJsonResponse("/cms-austria/online/6b2d672267c81e196472b564abf8c8fe/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q8C.mp4", "/orfOn/episode_noDrm.json"); + setupSuccessfulJsonResponse("/cms-austria/online/de9bd8775f46ea293a9db4b0711d4de5/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q6A.mp4", "/orfOn/episode_noDrm.json"); + setupSuccessfulJsonResponse("/cms-austria/online/a96476a0eab40b11ef517feefe0d2973/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q4A.mp4", "/orfOn/episode_noDrm.json"); + setupSuccessfulJsonResponse("/cms-austria/online/440102b9f68434fbb577d17114dd9182/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q1A.3gp", "/orfOn/episode_noDrm.json"); + setupHeadRequestForFileSize(); + // + Set result = executeTask("/episodeDummyUrl"); + assertTrue(result.size() == 1); + Film actual = result.toArray(new Film[1])[0]; + // + try { + assertEquals("Spektakuläre Raubüberfälle mit Pierce Brosnan: Bankeinbruch in Kalifornien",actual.getTitel()); + assertEquals("Spektakuläre Raubüberfälle mit Pierce Brosnan",actual.getThema()); + assertEquals(LocalDateTime.of(2024,03,13,23,49,50),actual.getTime()); + assertEquals("Pierce Brosnan präsentiert in der spannenden Krimi-Doku-Reihe die spektakulärsten Raubüberfälle der Geschichte.",actual.getBeschreibung()); + assertEquals(Duration.parse("PT40M46S"),actual.getDuration()); + assertEquals(Optional.of(new URL("https://tvthek.orf.at/profile/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan/13896153/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan-Bankeinbruch-in-Kalifornien/14216629")),actual.getWebsite()); + assertTrue(List.of(GeoLocations.GEO_AT).containsAll(actual.getGeoLocations())); + assertTrue(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0171/15/e83f6eabbdbcf49e894d1a58d77fcf3a9b951f3c.smi"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0171/15/c95472a931fe3ea8407734f95df242bce2f06b09.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0171/15/13759cf0d408fe11965ff16d03a564bbabbf5bc1.vtt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0171/15/e2536ac2b80a5152e54b047073ab327c223579ec.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0171/15/be922c3765a25ec3d7fa13e9265dabad7f986b75.xml") + ).containsAll(actual.getSubtitles())); + assertEquals(Map.of( + Resolution.HD, new FilmUrl(getWireMockBaseUrlSafe()+"/cms-austria/online/6b2d672267c81e196472b564abf8c8fe/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q8C.mp4", 0L), + Resolution.NORMAL, new FilmUrl(getWireMockBaseUrlSafe()+"/cms-austria/online/de9bd8775f46ea293a9db4b0711d4de5/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q6A.mp4", 0L), + Resolution.SMALL, new FilmUrl(getWireMockBaseUrlSafe()+"/cms-austria/online/a96476a0eab40b11ef517feefe0d2973/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q4A.mp4", 0L), + Resolution.VERY_SMALL, new FilmUrl(getWireMockBaseUrlSafe()+"/cms-austria/online/440102b9f68434fbb577d17114dd9182/1713132000/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q1A.3gp", 0L) + ), actual.getUrls()); + } catch (Exception e) { + assertTrue(false); + } + + + + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnEpisodeTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + + +} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java new file mode 100644 index 000000000..30ae66209 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java @@ -0,0 +1,45 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static java.util.Arrays.asList; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; + + +import java.util.ArrayList; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.junit.Test; + +import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodesTask; +import de.mediathekview.mserver.testhelper.WireMockTestBase; + +public class OrfOnEpisodesTaskTest extends WireMockTestBase { + + @Test + public void test() { + setupSuccessfulJsonResponse("/episodes", "/orfOn/episodes_3.json"); + Set result = executeTask("/episodes"); + List expectedResult = generateExpectedResult(); + assertIterableEquals(result, expectedResult); + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnEpisodesTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + private List generateExpectedResult() { + ArrayList expectedResult = new ArrayList<>(asList( + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14201133"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14202095"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14202094"))); + return expectedResult; + } + + +} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryChildrenTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryChildrenTaskTest.java new file mode 100644 index 000000000..29630e358 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryChildrenTaskTest.java @@ -0,0 +1,41 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static java.util.Arrays.asList; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; + +import java.util.ArrayList; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.junit.Test; +import de.mediathekview.mserver.crawler.orfon.task.OrfOnHistoryChildrenTask; +import de.mediathekview.mserver.testhelper.WireMockTestBase; + +public class OrfOnHistoryChildrenTaskTest extends WireMockTestBase { + + @Test + public void test() { + setupSuccessfulJsonResponse("/children", "/orfOn/children_1.json"); + Set result = executeTask("/children"); + assertIterableEquals(result, generateExpectedResult()); + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnHistoryChildrenTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + private List generateExpectedResult() { + ArrayList expectedResult = new ArrayList<>(asList( + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13558011/videoitems?limit=200"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13558009/videoitems?limit=200") + )); + return expectedResult; + } + +} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryTaskTest.java new file mode 100644 index 000000000..840673d59 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryTaskTest.java @@ -0,0 +1,50 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static java.util.Arrays.asList; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; + +import java.util.ArrayList; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.junit.Test; + +import de.mediathekview.mserver.crawler.orfon.task.OrfOnHistoryTask; +import de.mediathekview.mserver.testhelper.WireMockTestBase; + +public class OrfOnHistoryTaskTest extends WireMockTestBase { + + + + @Test + public void test() { + setupSuccessfulJsonResponse("/history", "/orfOn/history.json"); + Set result = executeTask("/history"); + assertIterableEquals(result, generateExpectedResult()); + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnHistoryTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + private List generateExpectedResult() { + ArrayList expectedResult = new ArrayList<>(asList( + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557964/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557948/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/7874678/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557914/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557911/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557913/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557916/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13558010/children"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/history/13557912/children") + )); + return expectedResult; + } +} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryVideoItemTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryVideoItemTaskTest.java new file mode 100644 index 000000000..fcb5bedfa --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryVideoItemTaskTest.java @@ -0,0 +1,48 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static java.util.Arrays.asList; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; + +import java.util.ArrayList; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.junit.Test; + +import de.mediathekview.mserver.crawler.orfon.task.OrfOnHistoryVideoItemTask; +import de.mediathekview.mserver.testhelper.WireMockTestBase; + +public class OrfOnHistoryVideoItemTaskTest extends WireMockTestBase { + + @Test + public void test() { + setupSuccessfulJsonResponse("/videoItems", "/orfOn/videoItems_1.json"); + Set result = executeTask("/videoItems"); + assertIterableEquals(result, generateExpectedResult()); + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnHistoryVideoItemTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + private List generateExpectedResult() { + ArrayList expectedResult = new ArrayList<>(asList( + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/14070240"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/5074881"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/5068699"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/13984127"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/13984230"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/13984132"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/14003539"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/13984130"), + new OrfOnBreadCrumsUrlDTO("","https://api-tvthek.orf.at/api/v4.3/episode/13984128") + )); + return expectedResult; + } +} diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnScheduleTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnScheduleTaskTest.java new file mode 100644 index 000000000..00946ee94 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnScheduleTaskTest.java @@ -0,0 +1,154 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static java.util.Arrays.asList; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; + +import java.util.ArrayList; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.concurrent.ConcurrentLinkedQueue; + +import org.junit.Test; + +import de.mediathekview.mserver.crawler.orfon.task.OrfOnScheduleTask; +import de.mediathekview.mserver.testhelper.WireMockTestBase; + +public class OrfOnScheduleTaskTest extends WireMockTestBase { + + @Test + public void test() { + setupSuccessfulJsonResponse("/scheduleTask", "/orfOn/schedule.json"); + Set result = executeTask("/scheduleTask"); + assertIterableEquals(result, generateExpectedResult()); + } + + private Set executeTask(String... requestUrl) { + final Queue input = new ConcurrentLinkedQueue<>(); + for (String url : requestUrl) { + input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + } + return new OrfOnScheduleTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + } + + private List generateExpectedResult() { + ArrayList expectedResult = new ArrayList<>(asList( + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213726"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213913"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213924"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213740"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213748"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213759"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213751"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213737"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213696"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213946"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213935"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214038"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214041"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213705"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213763"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213716"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213749"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213741"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213752"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213925"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213730"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213914"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213738"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213727"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213697"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213947"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213936"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214040"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213742"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213728"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213720"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213717"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213926"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213915"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213731"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213706"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213753"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213739"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213698"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213940"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213937"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214043"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213707"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213718"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213754"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213743"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213729"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213732"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213831"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213927"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213916"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213710"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213721"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213644"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213699"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213941"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213930"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213938"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214039"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214042"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213733"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213722"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213711"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213708"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213755"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213744"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213920"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213928"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213917"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213719"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213700"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213692"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213939"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213931"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213918"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213709"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213929"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213921"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213723"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213734"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213745"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213756"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213712"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213701"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213693"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213932"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213943"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14214044"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213746"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213724"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213757"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213900"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213735"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213911"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213922"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213919"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213713"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213702"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213672"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213694"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213933"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213944"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213750"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213714"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213901"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213912"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213923"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213725"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213736"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213747"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213758"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213703"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213695"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213934"), + new OrfOnBreadCrumsUrlDTO("", "https://api-tvthek.orf.at/api/v4.3/episode/14213945") + )); + return expectedResult; + } +} diff --git a/src/test/resources/orfOn/children_1.json b/src/test/resources/orfOn/children_1.json new file mode 100644 index 000000000..1a511957b --- /dev/null +++ b/src/test/resources/orfOn/children_1.json @@ -0,0 +1,190 @@ +{ + "page": "1", + "limit": "20", + "page_count": 1, + "total": 2, + "next": null, + "id": 13558010, + "title": "Februark\u00e4mpfe: Zeitzeug:innen berichten", + "description": "Im Februar 1934 m\u00fcndete der\u00a0politische Konflikt zwischen den Christlichsozialen und den Sozialisten in einer gewaltvollen Konfrontation. Zeitzeug:innen-Berichte machen die Ereignisse der Februark\u00e4mpfe greifbar.", + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "_items": [ + { + "children_count": 0, + "description": "Im Februar 1934 m\u00fcndete der\u00a0politische Konflikt zwischen den Christlichsozialen und den Sozialisten in einer gewaltvollen Konfrontation. Zeitzeug:innen-Berichte machen die Ereignisse der Februark\u00e4mpfe greifbar.", + "headline": "Zeitzeug:innen erz\u00e4hlen", + "id": 13558009, + "sub_headline": null, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "title": "Zeitzeug:innen erz\u00e4hlen", + "videos": 11, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558009" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16778753" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16778751" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558010" + }, + "video_items": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558009\/videoitems" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/79\/thumb_16778753_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/79\/thumb_16778753_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/79\/thumb_16778753_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/79\/thumb_16778753_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/79\/thumb_16778753_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/79\/5fc6f6d33528ecbf5c338cdb7ea59492cabbcce6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/79\/thumb_16778751_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/79\/thumb_16778751_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/79\/thumb_16778751_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/79\/thumb_16778751_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/79\/thumb_16778751_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/79\/cc240b109ba8fe2aabd417e79ad76881b02077b1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 0, + "description": "Im Februar 1934 m\u00fcndete der\u00a0politische Konflikt zwischen den Christlichsozialen und den Sozialisten in einer gewaltvollen Konfrontation. Umfassende Dokus mit Zeitzeug:innen-Berichten machen die Ereignisse der Februark\u00e4mpfe greifbar.", + "headline": "Die Hintergr\u00fcnde", + "id": 13558011, + "sub_headline": null, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "title": "Die Hintergr\u00fcnde", + "videos": 4, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558011" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16800411" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558010" + }, + "video_items": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558011\/videoitems" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0169\/01\/thumb_16800411_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0169\/01\/thumb_16800411_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0169\/01\/thumb_16800411_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0169\/01\/thumb_16800411_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0169\/01\/thumb_16800411_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0169\/01\/084da592a59070a1d544b1eccd3937c32471eb45.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episode_1.json b/src/test/resources/orfOn/episode_1.json new file mode 100644 index 000000000..832e2738a --- /dev/null +++ b/src/test/resources/orfOn/episode_1.json @@ -0,0 +1,1939 @@ +{ + "adition_advertising_query_string": "stype:vod,scat:orf-kids,scatid:2703801,spro:servus-kasperl,sproid:3272601,episodeid:14207792,duration:1316942,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "advertising_query_string": "stype=vod&scat=orf-kids&scatid=2703801&spro=servus-kasperl&sproid=3272601&episodeid=14207792&duration=1316942&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "6 Tage", + "date": "2024-01-04T07:07:38+01:00", + "delete_date": "2024-02-10 07:07:38", + "vod_ressort": null, + "description": "Kasperl und Strolchi besuchen den Zirkusdirektor des Zirkus Kindleroni. Dieser ist verzweifelt, weil sein Stallbursche krank ist und er die ganze Arbeit alleine kaum schaffen kann. Doch da kommt Hilfe durch Maximilian, der Arbeit sucht. Sofort darf Maximilian die Stelle als Stallbursche antreten. Eine seiner Aufgaben ist es auch auf Koko, den Papagei des Direktors, aufzupassen. Dieser ist in Gefahr, weil ein R\u00e4uber vor hat ihn zu stehlen.\r\nBildquelle: ORF", + "drm_token": null, + "duration_seconds": 1316, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjA3Nzky", + "exact_duration": 1316942, + "field_descriptor": "", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "hds": [], + "smooth": [], + "dash": [] + }, + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "worldwide", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "Kasperl & Strolchi: Koko und Maximilian", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14207792, + "is_archive": false, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2024-01-11T07:07:38+01:00", + "killdate": "2024-01-11T07:07:38+01:00", + "livedate": "2024-01-04T07:07:38+01:00", + "livedate_extern": "2024-01-04T07:07:38+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": true, + "production_country": "\u00d6sterreich", + "production_year": null, + "profile_title": "Servus Kasperl", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2024-01-04T07:50:01+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Servus-Kasperl\/3272601\/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian\/14207792", + "share_subject": "Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr", + "show_display_ads": false, + "show_instream_ads": false, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "ORF Kids | Servus Kasperl", + "teaser_text": "Kasperl und Strolchi besuchen den Zirkusdirektor des Zirkus Kindleroni. Dieser ist verzweifelt, weil sein Stallbursche krank ist und er die ganze Arbeit alleine kaum schaffen kann. Doch da kommt Hilfe durch Maximilian, der Arbeit sucht. Sofort darf Maximilian die Stelle als Stallbursche antreten. Eine seiner Aufgaben ist es auch auf Koko, den Papagei des Direktors, aufzupassen. Dieser ist in Gefahr, weil ein R\u00e4uber vor hat ihn zu stehlen.", + "teaser_title": "Kasperl & Strolchi: Koko und Maximilian", + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian", + "type": "default", + "updated_at": "2024-01-04T07:50:01+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16589238" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16589238" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885340" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/371619" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": "f9a36691-7bd7-4c36-9009-a0b9d7009b29", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/f9a36691-7bd7-4c36-9009-a0b9d7009b29\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1180, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 1", + "reel": "orf1", + "updated_at": "2023-01-19T10:03:53+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457917" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457918" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + } + }, + "_embedded": { + "parent": null, + "color_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/e88267e73205e46affb97e99d34f715f74bd1f1b.png" + } + }, + "dynamic_color": "#691f11" + }, + "black_and_white_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/b1b2c5b46edc8fdb3781957de434fbeeed4e8e44.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Das traditionsreiche Kindertheater", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Servus Kasperl", + "hide_in_letter_group": false, + "id": 3272601, + "letter_group": "S", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Servus Kasperl", + "type": "temporary", + "updated_at": "2024-01-03T13:27:29+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16140655" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16140655" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2642235" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/fb34fe9620e39fb9fdd8a8cbb1b679b7edcaf1df.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/fb34fe9620e39fb9fdd8a8cbb1b679b7edcaf1df.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "theme": { + "color": "#008336", + "id": 2642235, + "name": "Servus Kasperl", + "updated_at": "2016-10-11T00:02:22+02:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2642235" + }, + "header_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/328" + }, + "header_background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/327" + }, + "background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/326" + } + }, + "_embedded": { + "header_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_328_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_328_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_328_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/7300613f6a45bd2a42ec92c6f19263834909f0bd.png" + } + }, + "dynamic_color": "#691f11" + }, + "header_background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_327_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_327_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_327_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/026c3576b4eba36a4a5f7f2e3be52120d16e0d60.png" + } + }, + "dynamic_color": "#691f11" + }, + "background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_326_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_326_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_326_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/14d8c4d3d3401275ae0b9db57d07168418bfce41.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "genre": { + "id": 2703801, + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "sorting": 9, + "title": "ORF Kids", + "updated_at": "2023-12-31T16:38:40+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490557" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_player.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/7ecf6c975d2b35a6879823ff7875e8b506d02c79.png" + } + }, + "dynamic_color": "#691f11" + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [ + { + "id": 2642275, + "title": "Servus Kasperl", + "updated_at": "2011-07-15T22:25:18+02:00", + "url": "http:\/\/okidoki.orf.at\/?story=57", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/2642275" + } + } + } + ], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:orf-kids,scatid:2703801,spro:servus-kasperl,sproid:3272601,episodeid:14207792,duration:1316942,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "advertising_query_string": "stype=vod&scat=orf-kids&scatid=2703801&spro=servus-kasperl&sproid=3272601&episodeid=14207792&duration=1316942&advertisingtags=", + "blackfades": [], + "episode_date": "2024-01-04T07:07:38+01:00", + "date_as_string": "Do, 4.1.2024", + "vod_ressort": null, + "description": "Kasperl und Strolchi besuchen den Zirkusdirektor des Zirkus Kindleroni. Dieser ist verzweifelt, weil sein Stallbursche krank ist und er die ganze Arbeit alleine kaum schaffen kann. Doch da kommt Hilfe durch Maximilian, der Arbeit sucht. Sofort darf Maximilian die Stelle als Stallbursche antreten. Eine seiner Aufgaben ist es auch auf Koko, den Papagei des Direktors, aufzupassen. Dieser ist in Gefahr, weil ein R\u00e4uber vor hat ihn zu stehlen.\r\nBildquelle: ORF", + "drm_token": null, + "duration_as_string": "21:56 Min.", + "duration_seconds": 1316, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTU0MzA0OQ==", + "episode_id": 14207792, + "exact_duration": 1316942, + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "worldwide", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Kasperl & Strolchi: Koko und Maximilian", + "id": 15543049, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-01-11T07:07:38+01:00", + "killdate": "2024-01-11T07:07:38+01:00", + "livedate": "2100-01-01T00:00:00+01:00", + "livedate_extern": "2100-01-01T00:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15543049, + "videopartid": "1_1", + "videocategory": "ORF-Kids", + "videotitle": "Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian", + "videoduration": 1316, + "episodeduration": 1316, + "episodeid": 14207792, + "airdate": "2024-01-04T07:07:38+01:00", + "clipreleasetime": "2024-01-04T07:50:01+01:00", + "programname": "Servus-Kasperl", + "channel": "orf1" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Servus-Kasperl\/3272601\/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian\/14207792\/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian\/15543049", + "share_subject": "Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian - Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr", + "show_display_ads": false, + "show_instream_ads": false, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "ORF Kids | Servus Kasperl", + "teaser_text": null, + "teaser_title": "Kasperl & Strolchi: Koko und Maximilian", + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian", + "updated_at": "2024-01-04T07:51:06+01:00", + "videobumper": { + "prevideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15543049" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207792" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16589238" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16589238" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15543049\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885341" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15543049\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15543049\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/371e062b4bbb6be53052de187b928fb3b2c5266f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/371e062b4bbb6be53052de187b928fb3b2c5266f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "links": [], + "subtitle": { + "id": 885341, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/502a7c55913fa39aa1d8d217df7cb32b84f7fd9a.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/ad1613d1f4baae942b8ef9ad46edded8aeca458c.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/6f5d82040aaf01ee17849c81195275e97b230b1b.ttml", + "updated_at": "2024-01-04T07:41:37+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/37d233cccebd85cbc869efd8b5de3ccdc9b7dc30.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/c7e63426107d57014633b8350bd3ca98f31c9c0a.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885341" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591451" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591452" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591453" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591455" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591454" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/c7e63426107d57014633b8350bd3ca98f31c9c0a.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/ad1613d1f4baae942b8ef9ad46edded8aeca458c.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/37d233cccebd85cbc869efd8b5de3ccdc9b7dc30.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/502a7c55913fa39aa1d8d217df7cb32b84f7fd9a.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/6f5d82040aaf01ee17849c81195275e97b230b1b.ttml" + } + } + } + } + }, + "playlist": { + "id": 15543049, + "episode_id": 14207792, + "title_prefix": "Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian", + "title_separator": "|", + "title": "Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian", + "description": "Kasperl und Strolchi besuchen den Zirkusdirektor des Zirkus Kindleroni. Dieser ist verzweifelt, weil sein Stallbursche krank ist und er die ganze Arbeit alleine kaum schaffen kann. Doch da kommt Hilfe durch Maximilian, der Arbeit sucht. Sofort darf Maximilian die Stelle als Stallbursche antreten. Eine seiner Aufgaben ist es auch auf Koko, den Papagei des Direktors, aufzupassen. Dieser ist in Gefahr, weil ein R\u00e4uber vor hat ihn zu stehlen.\r\nBildquelle: ORF", + "duration": 1316942, + "preview_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_player.jpeg", + "sources": [ + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "SMIL", + "quality_string": "Hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q0A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Sehr niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q1A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q4A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Mittel", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q6A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q8C.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Sehr hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q0A.3gp\/manifest.f4m", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Sehr niedrig", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q1A.3gp\/manifest.f4m", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Niedrig", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q4A.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Mittel", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q6A.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Hoch", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q8C.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Sehr hoch", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXA.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Adaptiv", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-worldwide\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_QXB.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Adaptiv", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/715eb7811ba0a9afd2edbf2d6133505d\/1704668400\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/80ad261e727cbe57cc60734a29e642fd\/1704668400\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/96c036c4039bd5c3bfafe6dca27371b9\/1704668400\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/44d7d2fff38ebce373da313f3dc71164\/1704668400\/2024-01-04_0707_tl_01_Servus-Kasperl-_____14207792__o__6332192865__s15543049_9__ORF1HD_07081012P_07300711P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + } + ], + "position": 0, + "last_segment": true, + "subtitles": [ + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/c7e63426107d57014633b8350bd3ca98f31c9c0a.xml", + "type": "xml", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/ad1613d1f4baae942b8ef9ad46edded8aeca458c.srt", + "type": "srt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/37d233cccebd85cbc869efd8b5de3ccdc9b7dc30.vtt", + "type": "vtt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/502a7c55913fa39aa1d8d217df7cb32b84f7fd9a.smi", + "type": "sami", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/6f5d82040aaf01ee17849c81195275e97b230b1b.ttml", + "type": "ttml", + "lang": "de-AT" + } + ], + "right": "worldwide", + "is_enabled": true, + "has_active_youthprotection": false, + "pre_bumper": { + "active": false, + "sources": [] + }, + "post_bumper": { + "active": false, + "sources": [] + }, + "hash": "58a77f94f470d1e358c2b30c8a576dfb" + }, + "tags": [], + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Das traditionsreiche Kindertheater", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Servus Kasperl", + "hide_in_letter_group": false, + "id": 3272601, + "letter_group": "S", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Servus Kasperl", + "type": "temporary", + "updated_at": "2024-01-03T13:27:29+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16140655" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16140655" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2642235" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/3272601\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/fb34fe9620e39fb9fdd8a8cbb1b679b7edcaf1df.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/thumb_16140655_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/41\/fb34fe9620e39fb9fdd8a8cbb1b679b7edcaf1df.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "theme": { + "color": "#008336", + "id": 2642235, + "name": "Servus Kasperl", + "updated_at": "2016-10-11T00:02:22+02:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2642235" + }, + "header_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/328" + }, + "header_background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/327" + }, + "background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/326" + } + }, + "_embedded": { + "header_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_328_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_328_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_328_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/7300613f6a45bd2a42ec92c6f19263834909f0bd.png" + } + }, + "dynamic_color": "#691f11" + }, + "header_background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_327_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_327_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_327_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/026c3576b4eba36a4a5f7f2e3be52120d16e0d60.png" + } + }, + "dynamic_color": "#691f11" + }, + "background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_326_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_326_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_326_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/14d8c4d3d3401275ae0b9db57d07168418bfce41.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "genre": { + "id": 2703801, + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "sorting": 9, + "title": "ORF Kids", + "updated_at": "2023-12-31T16:38:40+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490557" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_player.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/7ecf6c975d2b35a6879823ff7875e8b506d02c79.png" + } + }, + "dynamic_color": "#691f11" + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [ + { + "id": 2642275, + "title": "Servus Kasperl", + "updated_at": "2011-07-15T22:25:18+02:00", + "url": "http:\/\/okidoki.orf.at\/?story=57", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/2642275" + } + } + } + ], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + } + } + } + ], + "tags": [], + "advertising_tags": [], + "links": [], + "audio_description_episode": null, + "oegs_episode": null, + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/371e062b4bbb6be53052de187b928fb3b2c5266f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/thumb_16589238_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/90\/371e062b4bbb6be53052de187b928fb3b2c5266f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "subtitle": { + "id": 885340, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/8547597f31429d87a5418918ae471b44fcf9ab55.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/09477f02c5e0392ecd2f717461ed136237d70050.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/07aead27b4c0b09b36750db54b8ce15ff9b8499c.ttml", + "updated_at": "2024-01-04T07:41:37+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/4dd6932d7cf6ceaad90a536c3e03981267e32941.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/808e2453d38fd8a5e4fab4794cc034ee89fcfd9c.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885340" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591446" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591447" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591448" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591450" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591449" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/808e2453d38fd8a5e4fab4794cc034ee89fcfd9c.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/09477f02c5e0392ecd2f717461ed136237d70050.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/4dd6932d7cf6ceaad90a536c3e03981267e32941.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/8547597f31429d87a5418918ae471b44fcf9ab55.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/07aead27b4c0b09b36750db54b8ce15ff9b8499c.ttml" + } + } + } + } + } + }, + "accompanying_videos": [] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episode_2.json b/src/test/resources/orfOn/episode_2.json new file mode 100644 index 000000000..94f8b1a0d --- /dev/null +++ b/src/test/resources/orfOn/episode_2.json @@ -0,0 +1,1901 @@ +{ + "adition_advertising_query_string": "stype:vod,scat:orf-kids,scatid:2703801,spro:abc-baer,sproid:4611813,episodeid:14207790,duration:809852,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "advertising_query_string": "stype=vod&scat=orf-kids&scatid=2703801&spro=abc-baer&sproid=4611813&episodeid=14207790&duration=809852&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "13 Tage", + "date": "2024-01-04T06:45:00+01:00", + "delete_date": "2024-02-10 06:45:00", + "vod_ressort": null, + "description": "Der ABC B\u00e4r und seine Tierfreunde reisen mit ihrem lustigen Baumhaus durch das Land, um ihre Zahl- und Buchstabenspiele aufzuf\u00fchren und erleben dabei jede Menge spannender Geschichten.\r\nBildquelle: ORF", + "drm_token": null, + "duration_seconds": 809, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjA3Nzkw", + "exact_duration": 809852, + "field_descriptor": "", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "hds": [], + "smooth": [], + "dash": [] + }, + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "austria", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "ABC B\u00e4r", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14207790, + "is_archive": false, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2024-01-11T06:45:00+01:00", + "killdate": "2024-01-18T06:45:00+01:00", + "livedate": "2024-01-04T06:45:00+01:00", + "livedate_extern": "2024-01-04T06:45:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": true, + "production_country": "\u00d6sterreich", + "production_year": null, + "profile_title": "ABC-B\u00e4r", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2024-01-04T07:08:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/ABC-Baer\/4611813\/ABC-Baer\/14207790", + "share_subject": "ABC B\u00e4r vom 04.01.2024 um 06:45 Uhr", + "show_display_ads": false, + "show_instream_ads": false, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "ORF Kids | Lernen mit Spa\u00df", + "teaser_text": "Der ABC B\u00e4r und seine Tierfreunde reisen mit ihrem lustigen Baumhaus durch das Land, um ihre Zahl- und Buchstabenspiele aufzuf\u00fchren und erleben dabei jede Menge spannender Geschichten.", + "teaser_title": null, + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "ABC B\u00e4r", + "type": "default", + "updated_at": "2024-01-04T07:10:02+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/8089706" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16588774" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16588774" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885332" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/376813" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": null, + "channel_restart_url_hbbtv": null, + "id": 8089706, + "is_drm_protected": true, + "is_main_channel": false, + "name": "ORF Kids", + "reel": "orfkids", + "updated_at": "2024-01-03T10:38:58+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/8089706" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/8089706\/children" + }, + "oegs_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/8089707" + } + }, + "_embedded": { + "parent": null, + "color_logo": null, + "black_and_white_logo": null + } + }, + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Das ABC und das 1x1 spielerisch lernen", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "ABC-B\u00e4r", + "hide_in_letter_group": false, + "id": 4611813, + "letter_group": "A", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "ABC-B\u00e4r", + "type": "temporary", + "updated_at": "2023-12-29T17:12:56+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11741319" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11741319" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2616573" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/d3f10cddf774ea390314f2ef02e60705e9dfd0a1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/d3f10cddf774ea390314f2ef02e60705e9dfd0a1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "theme": { + "color": "#9158a3", + "id": 2616573, + "name": "Okidoki", + "updated_at": "2016-10-11T00:02:22+02:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2616573" + }, + "header_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/316" + }, + "header_background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/315" + }, + "background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/314" + } + }, + "_embedded": { + "header_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_316_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_316_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_316_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/7d80cedacfb242c064b417bdefaf560c8974cf9e.png" + } + }, + "dynamic_color": "#691f11" + }, + "header_background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_315_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_315_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_315_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/305da2f8560c7c282e3ab8c8139acf74d411e9ba.png" + } + }, + "dynamic_color": "#691f11" + }, + "background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_314_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_314_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_314_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ac25c20451dd90fc1fd0a930feada1bc733c1416.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "genre": { + "id": 2703801, + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "sorting": 9, + "title": "ORF Kids", + "updated_at": "2023-12-31T16:38:40+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490557" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_player.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/7ecf6c975d2b35a6879823ff7875e8b506d02c79.png" + } + }, + "dynamic_color": "#691f11" + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [ + { + "id": 2616665, + "title": "Okidoki Website", + "updated_at": "2011-07-08T22:37:15+02:00", + "url": "http:\/\/okidoki.orf.at\/", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/2616665" + } + } + } + ], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:orf-kids,scatid:2703801,spro:abc-baer,sproid:4611813,episodeid:14207790,duration:809852,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "advertising_query_string": "stype=vod&scat=orf-kids&scatid=2703801&spro=abc-baer&sproid=4611813&episodeid=14207790&duration=809852&advertisingtags=", + "blackfades": [], + "episode_date": "2024-01-04T06:45:00+01:00", + "date_as_string": "Do, 4.1.2024", + "vod_ressort": null, + "description": "Der ABC B\u00e4r und seine Tierfreunde reisen mit ihrem lustigen Baumhaus durch das Land, um ihre Zahl- und Buchstabenspiele aufzuf\u00fchren und erleben dabei jede Menge spannender Geschichten.\r\nBildquelle: ORF", + "drm_token": null, + "duration_as_string": "13:29 Min.", + "duration_seconds": 809, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTU0MjkyMQ==", + "episode_id": 14207790, + "exact_duration": 809852, + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "ABC B\u00e4r", + "id": 15542921, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-01-11T06:45:00+01:00", + "killdate": "2024-01-18T06:45:00+01:00", + "livedate": "2100-01-01T00:00:00+01:00", + "livedate_extern": "2100-01-01T00:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15542921, + "videopartid": "1_1", + "videocategory": "ORF-Kids", + "videotitle": "ABC-Baer", + "videoduration": 809, + "episodeduration": 809, + "episodeid": 14207790, + "airdate": "2024-01-04T06:45:00+01:00", + "clipreleasetime": "2024-01-04T07:08:02+01:00", + "programname": "ABC-Baer", + "channel": "orfkids" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/ABC-Baer\/4611813\/ABC-Baer\/14207790\/ABC-Baer\/15542921", + "share_subject": "ABC B\u00e4r - ABC B\u00e4r vom 04.01.2024 um 06:45 Uhr", + "show_display_ads": false, + "show_instream_ads": false, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "ORF Kids | Lernen mit Spa\u00df", + "teaser_text": null, + "teaser_title": null, + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "ABC B\u00e4r", + "updated_at": "2024-01-04T07:08:50+01:00", + "videobumper": { + "prevideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15542921" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14207790" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16588774" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16588774" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15542921\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885333" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15542921\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15542921\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/da222c9df56dbfc67aad6fb082d381691d71d889.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/da222c9df56dbfc67aad6fb082d381691d71d889.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "links": [], + "subtitle": { + "id": 885333, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/836905bc5f01563cc3d7fe215b96040697483175.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/e6fb1c2a60a393858de94b0d5b1ba66f3a0845eb.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/b624453073e6a01eee49803e03f693eb10daf0f8.ttml", + "updated_at": "2024-01-04T07:01:46+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/9734bb0d61b158f8c2b02926f101bcea8eacdf53.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/26901e52331f49f177e4092581be367444d72202.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885333" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591328" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591329" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591330" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591332" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591331" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/26901e52331f49f177e4092581be367444d72202.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/e6fb1c2a60a393858de94b0d5b1ba66f3a0845eb.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/9734bb0d61b158f8c2b02926f101bcea8eacdf53.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/836905bc5f01563cc3d7fe215b96040697483175.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/b624453073e6a01eee49803e03f693eb10daf0f8.ttml" + } + } + } + } + }, + "playlist": { + "id": 15542921, + "episode_id": 14207790, + "title_prefix": "ABC B\u00e4r", + "title_separator": "|", + "title": "ABC B\u00e4r", + "description": "Der ABC B\u00e4r und seine Tierfreunde reisen mit ihrem lustigen Baumhaus durch das Land, um ihre Zahl- und Buchstabenspiele aufzuf\u00fchren und erleben dabei jede Menge spannender Geschichten.\r\nBildquelle: ORF", + "duration": 809852, + "preview_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_player.jpeg", + "sources": [ + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "SMIL", + "quality_string": "Hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q0A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Sehr niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q1A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q4A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Mittel", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q6A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q8C.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Sehr hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q0A.3gp\/manifest.f4m", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Sehr niedrig", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q1A.3gp\/manifest.f4m", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Niedrig", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q4A.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Mittel", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q6A.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Hoch", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q8C.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Sehr hoch", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXA.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Adaptiv", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_QXB.mp4\/manifest.f4m", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Adaptiv", + "delivery": "hds", + "type": "video\/mp4", + "protocol": "http" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/3aa3945a24eea5532704d2f0191f731a\/1704668400\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/21a242defb9811266fba4136060585a2\/1704668400\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/333fcac95886dce490b614258cedb890\/1704668400\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/18027175ca127134d806444bc46c3ea6\/1704668400\/2024-01-04_0645_tl_00_ABC-Baer_____14207790__o__4346842346__s15542921_1__KIDS1_06363007P_06500003P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + } + ], + "position": 0, + "last_segment": true, + "subtitles": [ + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/26901e52331f49f177e4092581be367444d72202.xml", + "type": "xml", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/e6fb1c2a60a393858de94b0d5b1ba66f3a0845eb.srt", + "type": "srt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/9734bb0d61b158f8c2b02926f101bcea8eacdf53.vtt", + "type": "vtt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/836905bc5f01563cc3d7fe215b96040697483175.smi", + "type": "sami", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/b624453073e6a01eee49803e03f693eb10daf0f8.ttml", + "type": "ttml", + "lang": "de-AT" + } + ], + "right": "austria", + "is_enabled": true, + "has_active_youthprotection": false, + "pre_bumper": { + "active": false, + "sources": [] + }, + "post_bumper": { + "active": false, + "sources": [] + }, + "hash": "728635d7aa3f16cf53836b4a4bc9366c" + }, + "tags": [], + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Das ABC und das 1x1 spielerisch lernen", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "ABC-B\u00e4r", + "hide_in_letter_group": false, + "id": 4611813, + "letter_group": "A", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "ABC-B\u00e4r", + "type": "temporary", + "updated_at": "2023-12-29T17:12:56+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11741319" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11741319" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490554" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2616573" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/4611813\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/d3f10cddf774ea390314f2ef02e60705e9dfd0a1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/thumb_11741319_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0118\/42\/d3f10cddf774ea390314f2ef02e60705e9dfd0a1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "theme": { + "color": "#9158a3", + "id": 2616573, + "name": "Okidoki", + "updated_at": "2016-10-11T00:02:22+02:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/2616573" + }, + "header_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/316" + }, + "header_background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/315" + }, + "background_image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/314" + } + }, + "_embedded": { + "header_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_316_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_316_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_316_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/7d80cedacfb242c064b417bdefaf560c8974cf9e.png" + } + }, + "dynamic_color": "#691f11" + }, + "header_background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_315_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_315_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_315_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/305da2f8560c7c282e3ab8c8139acf74d411e9ba.png" + } + }, + "dynamic_color": "#691f11" + }, + "background_image": { + "public_urls": { + "header_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_314_themes_header_image.png" + }, + "header_background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_314_themes_header_background_image.png" + }, + "background_image": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_314_themes_background_image.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ac25c20451dd90fc1fd0a930feada1bc733c1416.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "genre": { + "id": 2703801, + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "sorting": 9, + "title": "ORF Kids", + "updated_at": "2023-12-31T16:38:40+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16490557" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_player.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/thumb_16490557_genres_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0165\/91\/7ecf6c975d2b35a6879823ff7875e8b506d02c79.png" + } + }, + "dynamic_color": "#691f11" + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [ + { + "id": 2616665, + "title": "Okidoki Website", + "updated_at": "2011-07-08T22:37:15+02:00", + "url": "http:\/\/okidoki.orf.at\/", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/2616665" + } + } + } + ], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + } + } + } + ], + "tags": [], + "advertising_tags": [], + "links": [], + "audio_description_episode": null, + "oegs_episode": null, + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/da222c9df56dbfc67aad6fb082d381691d71d889.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/thumb_16588774_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0166\/89\/da222c9df56dbfc67aad6fb082d381691d71d889.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/thumb_16490554_default_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0165\/91\/ca7c17fa95e0d33cdc783597f48e8687d7741e32.png" + } + }, + "dynamic_color": "#691f11" + }, + "subtitle": { + "id": 885332, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/7096926d900006d0d196e1dab952a62200118c2c.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/20c53ed98f58a5045da663191516bc7fbf09e3d2.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/b682365a2a3fd1d45a2f029a597735a9df5b7524.ttml", + "updated_at": "2024-01-04T07:01:46+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/c50d4ed5c4f912e8d7f7b5e94cd9155bd31b247d.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/1f178ebeae4aea09e03697e85082701de6df436c.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/885332" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591323" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591324" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591325" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591327" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16591326" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/1f178ebeae4aea09e03697e85082701de6df436c.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/20c53ed98f58a5045da663191516bc7fbf09e3d2.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/c50d4ed5c4f912e8d7f7b5e94cd9155bd31b247d.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/7096926d900006d0d196e1dab952a62200118c2c.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0166\/92\/b682365a2a3fd1d45a2f029a597735a9df5b7524.ttml" + } + } + } + } + } + }, + "accompanying_videos": [] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episode_ad.json b/src/test/resources/orfOn/episode_ad.json new file mode 100644 index 000000000..937f6d10e --- /dev/null +++ b/src/test/resources/orfOn/episode_ad.json @@ -0,0 +1,1846 @@ +{ + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:ad-vorstadtweiber-staffel-2,sproid:13895877,episodeid:14204417,duration:2792317,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=ad-vorstadtweiber-staffel-2&sproid=13895877&episodeid=14204417&duration=2792317&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "97 Tage", + "date": "2023-12-06T23:07:52+01:00", + "delete_date": "2024-06-13T00:49:52+02:00", + "vod_ressort": null, + "description": "Chaos wegen der Entf\u00fchrung von Waltrauds Baby. Die betrunkene Sylvia sagt, sie habe Simon vor der T\u00fcre gesehen. Waltraud ist sofort klar, dass nur Simon der Entf\u00fchrer sein kann. Den trifft sie zuhause, wo er gerade packt, um abzuhauen. Er beteuert, das Baby nicht entf\u00fchrt zu haben. W\u00e4hrenddessen rast Vanessa mit ihrem Wagen durch die Stadt, verheult, \u00fcberdreht, ein Baby am R\u00fccksitz. Daheim angekommen, tauscht sie die Babys und rast wieder davon. Vanessa konfrontiert Dr. Heldt mit der Tatsache, dass er der Vater ihres Kindes ist und die Babys bei der Geburt vertauscht hat, um somit den Vaterschaftstest zu f\u00e4lschen. Benachrichtigt von der Auffindung des Babys fahren alle Richtung Klinik. Vor ihren Augen wird die v\u00f6llig betrunkene Sylvia von Vanessa angefahren und schwer verletzt.\r\n\r\nBildquelle: ORF\/MR Film\/Petro Domenigg", + "drm_token": null, + "duration_seconds": 2792, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjA0NDE3", + "exact_duration": 2792317, + "field_descriptor": "", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "dash": [] + }, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "AD | Vorstadtweiber: Folge 18", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14204417, + "is_archive": false, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2024-06-06T00:49:52+02:00", + "killdate": "2024-06-06T00:49:52+02:00", + "livedate": "2023-12-30T10:00:00+01:00", + "livedate_extern": "2023-12-30T10:00:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": false, + "production_country": null, + "production_year": null, + "profile_title": "AD | Vorstadtweiber Staffel 2", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2023-12-07T00:52:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/AD-Vorstadtweiber-Staffel-2\/13895877\/AD-Vorstadtweiber-Folge-18\/14204417", + "share_subject": "AD | Vorstadtweiber: Folge 18 vom 06.12.2023 um 23:07 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Staffel 2", + "teaser_text": "Chaos wegen der Entf\u00fchrung von Waltrauds Baby. Die betrunkene Sylvia sagt, sie habe Simon vor der T\u00fcre gesehen. Waltraud ist sofort klar, dass nur Simon der Entf\u00fchrer sein kann. Den trifft sie zuhause, wo er gerade packt, um abzuhauen. Er beteuert, das Baby nicht entf\u00fchrt zu haben. W\u00e4hrenddessen rast Vanessa mit ihrem Wagen durch die Stadt, verheult, \u00fcberdreht, ein Baby am R\u00fccksitz. Daheim angekommen, tauscht sie die Babys und rast wieder davon. Vanessa konfrontiert Dr. Heldt mit der Tatsache, dass er der Vater ihres Kindes ist und die Babys bei der Geburt vertauscht hat, um somit den Vaterschaftstest zu f\u00e4lschen. Benachrichtigt von der Auffindung des Babys fahren alle Richtung Klinik. Vor ihren Augen wird die v\u00f6llig betrunkene Sylvia von Vanessa angefahren und schwer verletzt.\r\n\r\nBildquelle: ORF\/MR Film\/Petro Domenigg", + "teaser_title": null, + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "AD | Vorstadtweiber: Folge 18", + "type": "default", + "updated_at": "2024-02-21T16:29:11+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16333208" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16333208" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514906" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/875659" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417\/related" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204206" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": null, + "channel_restart_url_hbbtv": null, + "id": 4391789, + "is_drm_protected": true, + "is_main_channel": false, + "name": "ORF 1 (AD)", + "reel": "orf1ad", + "updated_at": "2023-02-28T10:37:40+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14982592" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14982593" + } + }, + "_embedded": { + "parent": { + "bitmovin_stream_id": "f9a36691-7bd7-4c36-9009-a0b9d7009b29", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/f9a36691-7bd7-4c36-9009-a0b9d7009b29\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1180, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 1", + "reel": "orf1", + "updated_at": "2024-02-28T16:06:34+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457917" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457918" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + } + }, + "_embedded": { + "parent": null, + "color_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/e88267e73205e46affb97e99d34f715f74bd1f1b.png" + } + }, + "dynamic_color": "#691f11" + }, + "black_and_white_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/b1b2c5b46edc8fdb3781957de434fbeeed4e8e44.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "color_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/thumb_14982592_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/thumb_14982592_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/thumb_14982592_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/a2d44048d90090e45d9aed112d32c3b749f03459.png" + } + }, + "dynamic_color": "#691f11" + }, + "black_and_white_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/thumb_14982593_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/thumb_14982593_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/thumb_14982593_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0150\/83\/bbb6a6216b6ab326ecbe04df31c6f118a4755a4e.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "profile": { + "audio_description": true, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Gelangweilte Society-Damen in Wiens Nobelbezirken", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "AD | Vorstadtweiber Staffel 2", + "hide_in_letter_group": false, + "id": 13895877, + "letter_group": "V", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/FilmUndKino", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "AD | Vorstadtweiber Staffel 2", + "type": "temporary", + "updated_at": "2023-12-22T17:37:41+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514905" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514905" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514906" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/4eb7a2dec31295e14032be3547b804a8558ff5e2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/4eb7a2dec31295e14032be3547b804a8558ff5e2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/6c66631bc03fa8d36556efd1995cc90a6309a323.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "theme": null, + "genre": { + "id": 2703833, + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "sorting": 10, + "title": "Film & Serie", + "updated_at": "2023-12-31T16:38:57+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:ad-vorstadtweiber-staffel-2,sproid:13895877,episodeid:14204417,duration:2792317,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=ad-vorstadtweiber-staffel-2&sproid=13895877&episodeid=14204417&duration=2792317&advertisingtags=", + "blackfades": [], + "episode_date": "2023-12-06T23:07:52+01:00", + "date_as_string": "Mi, 6.12.2023", + "vod_ressort": null, + "description": "Chaos wegen der Entf\u00fchrung von Waltrauds Baby. Die betrunkene Sylvia sagt, sie habe Simon vor der T\u00fcre gesehen. Waltraud ist sofort klar, dass nur Simon der Entf\u00fchrer sein kann. Den trifft sie zuhause, wo er gerade packt, um abzuhauen. Er beteuert, das Baby nicht entf\u00fchrt zu haben. W\u00e4hrenddessen rast Vanessa mit ihrem Wagen durch die Stadt, verheult, \u00fcberdreht, ein Baby am R\u00fccksitz. Daheim angekommen, tauscht sie die Babys und rast wieder davon. Vanessa konfrontiert Dr. Heldt mit der Tatsache, dass er der Vater ihres Kindes ist und die Babys bei der Geburt vertauscht hat, um somit den Vaterschaftstest zu f\u00e4lschen. Benachrichtigt von der Auffindung des Babys fahren alle Richtung Klinik. Vor ihren Augen wird die v\u00f6llig betrunkene Sylvia von Vanessa angefahren und schwer verletzt.\r\n\r\nBildquelle: ORF\/MR Film\/Petro Domenigg", + "drm_token": null, + "duration_as_string": "46:32 Min.", + "duration_seconds": 2792, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyNDI2Ng==", + "episode_id": 14204417, + "exact_duration": 2792317, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "AD | Vorstadtweiber: Folge 18", + "id": 15524266, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-06-06T00:49:52+02:00", + "killdate": "2024-06-06T00:49:52+02:00", + "livedate": "2023-12-30T10:00:00+01:00", + "livedate_extern": "2023-12-30T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15524266, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "AD-Vorstadtweiber-Folge-18", + "videoduration": 2792, + "episodeduration": 2792, + "episodeid": 14204417, + "airdate": "2023-12-30T10:00:00+01:00", + "clipreleasetime": "2023-12-07T00:52:02+01:00", + "programname": "AD-Vorstadtweiber-Staffel-2", + "channel": "orf1ad" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/AD-Vorstadtweiber-Staffel-2\/13895877\/AD-Vorstadtweiber-Folge-18\/14204417\/AD-Vorstadtweiber-Folge-18\/15524266", + "share_subject": "AD | Vorstadtweiber: Folge 18 - AD | Vorstadtweiber: Folge 18 vom 06.12.2023 um 23:07 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Staffel 2", + "teaser_text": null, + "teaser_title": null, + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "AD | Vorstadtweiber: Folge 18", + "updated_at": "2023-12-07T16:16:36+01:00", + "videobumper": { + "prevideobumper": { + "active": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "progressive_download": [ + { + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/0a96044c57fa9ab7838007cc0e7e0a90\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp", + "isUHD": false + }, + { + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/5267e9abc1b2fcb3ba5fecdbb8645369\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp", + "isUHD": false + }, + { + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/340b44d8cefcb075bc8f1d2461f46a7e\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4", + "isUHD": false + }, + { + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/dee8bb7ed850256b5e8612deb98e294f\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4", + "isUHD": false + }, + { + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/121cfa79dcec60cc7395b2af32585146\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4", + "isUHD": false + } + ] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15524266" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14204417" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16333208" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16333208" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514906" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15524266\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/875660" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15524266\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15524266\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/07ee99b4e358cfdf4d0d09cdef7f039597c8349f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/07ee99b4e358cfdf4d0d09cdef7f039597c8349f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/6c66631bc03fa8d36556efd1995cc90a6309a323.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "links": [], + "subtitle": { + "id": 875660, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/eea943028084af400e8a4dfaed668383e5d23f50.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/2a59c6d14e87400c6be26753256e9d7b7a92a2ff.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/02ae21239edab60c2e7c1fff59160eeeaf41edd3.ttml", + "updated_at": "2023-12-07T16:16:36+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/4b008a95f2f7e40c703ae161b97ee5a7d62f816f.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/adfd5f53c622ece7ca6be95554186fb6b3936c20.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/875660" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334635" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334636" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334637" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334639" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334638" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/adfd5f53c622ece7ca6be95554186fb6b3936c20.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/2a59c6d14e87400c6be26753256e9d7b7a92a2ff.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/4b008a95f2f7e40c703ae161b97ee5a7d62f816f.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/eea943028084af400e8a4dfaed668383e5d23f50.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/02ae21239edab60c2e7c1fff59160eeeaf41edd3.ttml" + } + } + } + } + }, + "playlist": { + "id": 15524266, + "episode_id": 14204417, + "title_prefix": "AD | Vorstadtweiber: Folge 18", + "title_separator": "|", + "title": "AD | Vorstadtweiber: Folge 18", + "description": "Chaos wegen der Entf\u00fchrung von Waltrauds Baby. Die betrunkene Sylvia sagt, sie habe Simon vor der T\u00fcre gesehen. Waltraud ist sofort klar, dass nur Simon der Entf\u00fchrer sein kann. Den trifft sie zuhause, wo er gerade packt, um abzuhauen. Er beteuert, das Baby nicht entf\u00fchrt zu haben. W\u00e4hrenddessen rast Vanessa mit ihrem Wagen durch die Stadt, verheult, \u00fcberdreht, ein Baby am R\u00fccksitz. Daheim angekommen, tauscht sie die Babys und rast wieder davon. Vanessa konfrontiert Dr. Heldt mit der Tatsache, dass er der Vater ihres Kindes ist und die Babys bei der Geburt vertauscht hat, um somit den Vaterschaftstest zu f\u00e4lschen. Benachrichtigt von der Auffindung des Babys fahren alle Richtung Klinik. Vor ihren Augen wird die v\u00f6llig betrunkene Sylvia von Vanessa angefahren und schwer verletzt.\r\n\r\nBildquelle: ORF\/MR Film\/Petro Domenigg", + "duration": 2792317, + "preview_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_player.jpeg", + "sources": [ + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "SMIL", + "quality_string": "Hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q0A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Sehr niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q1A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q4A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Mittel", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q6A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q8C.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Sehr hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXA.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_QXB.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/b509cad6417654a583267f05fd0d962e\/1709506800\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/885f35db78a99ed342eb42c9b5b1c90d\/1709506800\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/1b79d3127521717694966f0814c40496\/1709506800\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-austria\/online\/65619f1f198eea7ec01745a780569756\/1709506800\/2023-12-06_2307_sd_01_AD---Vorstadtwe_____14204417__o__8792736916__s15524266_6__ORF1ADHD_23092909P_23560117P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + } + ], + "position": 0, + "last_segment": true, + "subtitles": [ + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/adfd5f53c622ece7ca6be95554186fb6b3936c20.xml", + "type": "xml", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/2a59c6d14e87400c6be26753256e9d7b7a92a2ff.srt", + "type": "srt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/4b008a95f2f7e40c703ae161b97ee5a7d62f816f.vtt", + "type": "vtt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/eea943028084af400e8a4dfaed668383e5d23f50.smi", + "type": "sami", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/02ae21239edab60c2e7c1fff59160eeeaf41edd3.ttml", + "type": "ttml", + "lang": "de-AT" + } + ], + "right": "austria", + "is_enabled": true, + "has_active_youthprotection": false, + "pre_bumper": { + "active": true, + "sources": [ + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "http:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/playlist.m3u8", + "type": "application\/x-mpegURL", + "delivery": "hls", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "http:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/playlist.m3u8", + "type": "application\/x-mpegURL", + "delivery": "hls", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "http:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/playlist.m3u8", + "type": "application\/x-mpegURL", + "delivery": "hls", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "http:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/playlist.m3u8", + "type": "application\/x-mpegURL", + "delivery": "hls", + "protocol": "http" + }, + { + "quality": "QXA", + "quality_string": "Adaptiv", + "src": "http:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/playlist.m3u8", + "type": "application\/x-mpegURL", + "delivery": "hls", + "protocol": "http" + }, + { + "quality": "QXB", + "quality_string": "Adaptiv", + "src": "http:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/playlist.m3u8", + "type": "application\/x-mpegURL", + "delivery": "hls", + "protocol": "http" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/5267e9abc1b2fcb3ba5fecdbb8645369\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/340b44d8cefcb075bc8f1d2461f46a7e\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/dee8bb7ed850256b5e8612deb98e294f\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/121cfa79dcec60cc7395b2af32585146\/1709506800\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + } + ] + }, + "post_bumper": { + "active": false, + "sources": [] + }, + "hash": "d284cf224085fac7a0e034a0fd271aff" + }, + "tags": [], + "profile": { + "audio_description": true, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Gelangweilte Society-Damen in Wiens Nobelbezirken", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "AD | Vorstadtweiber Staffel 2", + "hide_in_letter_group": false, + "id": 13895877, + "letter_group": "V", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/FilmUndKino", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "AD | Vorstadtweiber Staffel 2", + "type": "temporary", + "updated_at": "2023-12-22T17:37:41+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514905" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514905" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514906" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895877\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/4eb7a2dec31295e14032be3547b804a8558ff5e2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/thumb_16514905_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/15\/4eb7a2dec31295e14032be3547b804a8558ff5e2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/6c66631bc03fa8d36556efd1995cc90a6309a323.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "theme": null, + "genre": { + "id": 2703833, + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "sorting": 10, + "title": "Film & Serie", + "updated_at": "2023-12-31T16:38:57+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + } + } + } + ], + "tags": [], + "advertising_tags": [], + "links": [], + "audio_description_episode": null, + "oegs_episode": null, + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/07ee99b4e358cfdf4d0d09cdef7f039597c8349f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/thumb_16333208_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/34\/07ee99b4e358cfdf4d0d09cdef7f039597c8349f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/thumb_16514906_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0166\/15\/6c66631bc03fa8d36556efd1995cc90a6309a323.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "subtitle": { + "id": 875659, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/6146c97d9eb3437f89e05640188093453ad3e1af.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/3c283187a44f9759f83a6731220549dc485d332d.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/cae06428d2dd0a03f6c0a81dbd7695f0b096187d.ttml", + "updated_at": "2023-12-07T16:16:36+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/d7726579282af4a4eb7f13bcd0716b0ddd769e78.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/275b919125cabcf1bbb0a3f1b38ec0c460367ae6.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/875659" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334630" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334631" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334632" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334634" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16334633" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/275b919125cabcf1bbb0a3f1b38ec0c460367ae6.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/3c283187a44f9759f83a6731220549dc485d332d.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/d7726579282af4a4eb7f13bcd0716b0ddd769e78.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/6146c97d9eb3437f89e05640188093453ad3e1af.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0164\/35\/cae06428d2dd0a03f6c0a81dbd7695f0b096187d.ttml" + } + } + } + } + } + }, + "accompanying_videos": [] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episode_archive.json b/src/test/resources/orfOn/episode_archive.json new file mode 100644 index 000000000..af4afba39 --- /dev/null +++ b/src/test/resources/orfOn/episode_archive.json @@ -0,0 +1,1410 @@ +{ + "adition_advertising_query_string": "stype:vod,scat:,scatid:,spro:archiv,sproid:7648449,episodeid:14046198,duration:210370,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "advertising_query_string": "stype=vod&scat=&scatid=&spro=archiv&sproid=7648449&episodeid=14046198&duration=210370&advertisingtags=", + "age_classification": null, + "audio_description_service_available": false, + "countdown": "", + "date": "2020-03-25T13:10:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Der ORF hat w\u00e4hrend der Coronakrise 2020 eine besondere Vorsichtsma\u00dfnahme getroffen, um den Betrieb sicherzustellen. Einige Mitarbeiter und Moderatoren des Senders sind vor\u00fcbergehend in das ORF-Zentrum am K\u00fcniglberg gezogen. Dort wird in \"Sperrzonen\" gearbeitet und der Sendebetrieb aufrecht erhalten. \r\n\r\nSendung: Mittag in \u00d6sterreich\r\nGestaltung: Stefan Schlager", + "drm_token": null, + "duration_seconds": 210, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MDQ2MTk4", + "exact_duration": 210370, + "field_descriptor": null, + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "dash": [] + }, + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": false, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "ORF-Mitarbeiter in Quarant\u00e4ne", + "hide_in_new_section": true, + "hide_in_schedule_section": true, + "hide_latest_episodes": false, + "id": 14046198, + "is_archive": true, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": null, + "killdate": null, + "livedate": "2020-03-25T13:10:00+01:00", + "livedate_extern": "2020-03-25T13:10:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": false, + "production_country": null, + "production_year": null, + "profile_title": "Archiv", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2020-03-26T14:40:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Archiv\/7648449\/ORF-Mitarbeiter-in-Quarantaene\/14046198", + "share_subject": "ORF-Mitarbeiter in Quarant\u00e4ne vom 25.03.2020", + "show_display_ads": false, + "show_instream_ads": false, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Best of \"ZIB 2\"-Interviews", + "teaser_text": "Der ORF hat w\u00e4hrend der Coronakrise 2020 eine besondere Vorsichtsma\u00dfnahme getroffen, um den Betrieb sicherzustellen. Einige Mitarbeiter und Moderatoren des Senders sind vor\u00fcbergehend in das ORF-Zentrum am K\u00fcniglberg gezogen. Dort wird in \"Sperrzonen\" gearbeitet und der Sendebetrieb aufrecht erhalten. \r\n\r\nSendung: Mittag in \u00d6sterreich\r\nGestaltung: Stefan Schlager", + "teaser_title": null, + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "ORF-Mitarbeiter in Quarant\u00e4ne", + "type": "default", + "updated_at": "2023-01-25T13:39:16+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1181" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/10112593" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/10112593" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/777383" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198\/related" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": "839fb502-606d-4666-a36c-19f3f2dd8e83", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/839fb502-606d-4666-a36c-19f3f2dd8e83\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1181, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 2", + "reel": "orf2", + "updated_at": "2024-02-28T16:06:40+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1181" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1181\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/8089684" + }, + "oegs_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1897433" + } + }, + "_embedded": { + "parent": null, + "color_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_13_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_13_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_13_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/56f8ed59c8ef61c7e9cc65b2436f3617831b9f6b.png" + } + }, + "dynamic_color": "#691f11" + }, + "black_and_white_logo": { + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_14_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_14_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_14_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/4b36e87c78e2e5108058d55ea67622d807cf4edd.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "archive", + "description": null, + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Archiv", + "hide_in_letter_group": false, + "id": 7648449, + "letter_group": "A", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Archiv", + "type": "temporary", + "updated_at": "2019-02-28T11:32:43+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596301" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596301" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/7845704" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/ae4592a5d457efa42101c1b7170e39be2f2afcad.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/ae4592a5d457efa42101c1b7170e39be2f2afcad.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "theme": { + "color": "#e3e3e3", + "id": 7845704, + "name": "Archiv", + "updated_at": "2016-10-11T00:05:51+02:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/7845704" + } + }, + "_embedded": { + "header_image": null, + "header_background_image": null, + "background_image": null + } + }, + "genre": null, + "links": [], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:,scatid:,spro:archiv,sproid:7648449,episodeid:14046198,duration:210370,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + }, + "vod": { + "web": { + "sb": 4423852, + "tbar": 4423851, + "pre": 4423862, + "post": 4423861 + }, + "mob": { + "par": 4423850, + "pre": 4423858, + "post": 4423857 + }, + "app": { + "par": 4423849, + "pre": 4423856, + "post": 4423855 + }, + "smart": { + "pre": 4423860, + "post": 4423859, + "lane": 4423853, + "bar": 4423854 + } + } + }, + "advertising_query_string": "stype=vod&scat=&scatid=&spro=archiv&sproid=7648449&episodeid=14046198&duration=210370&advertisingtags=", + "blackfades": [], + "episode_date": "2020-03-25T13:10:00+01:00", + "date_as_string": "Mi, 25.3.2020", + "vod_ressort": null, + "description": "Der ORF hat w\u00e4hrend der Coronakrise 2020 eine besondere Vorsichtsma\u00dfnahme getroffen, um den Betrieb sicherzustellen. Einige Mitarbeiter und Moderatoren des Senders sind vor\u00fcbergehend in das ORF-Zentrum am K\u00fcniglberg gezogen. Dort wird in \"Sperrzonen\" gearbeitet und der Sendebetrieb aufrecht erhalten. \r\n\r\nSendung: Mittag in \u00d6sterreich\r\nGestaltung: Stefan Schlager", + "drm_token": null, + "duration_as_string": "03:30 Min.", + "duration_seconds": 210, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNDY2ODkwMw==", + "episode_id": 14046198, + "exact_duration": 210370, + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "focus": false, + "show_countdown": false, + "has_thumbnail": true, + "headline": "ORF-Mitarbeiter in Quarant\u00e4ne", + "id": 14668903, + "is_archive": true, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": null, + "killdate": null, + "livedate": "2020-03-25T13:10:00+01:00", + "livedate_extern": "2020-03-25T13:10:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 14668903, + "videopartid": "1_1", + "videocategory": "", + "videotitle": "ORF-Mitarbeiter-in-Quarantaene", + "videoduration": 210, + "episodeduration": 210, + "episodeid": 14046198, + "airdate": "2020-03-25T13:10:00+01:00", + "clipreleasetime": "2020-03-26T14:40:02+01:00", + "programname": "Archiv", + "channel": "orf2" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Archiv\/7648449\/ORF-Mitarbeiter-in-Quarantaene\/14046198\/ORF-Mitarbeiter-in-Quarantaene\/14668903", + "share_subject": "ORF-Mitarbeiter in Quarant\u00e4ne - ORF-Mitarbeiter in Quarant\u00e4ne vom 25.03.2020", + "show_display_ads": false, + "show_instream_ads": false, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Archiv", + "teaser_text": "Der ORF hat w\u00e4hrend der Coronakrise 2020 eine besondere Vorsichtsma\u00dfnahme getroffen, um den Betrieb sicherzustellen. Einige Mitarbeiter und Moderatoren des Senders sind vor\u00fcbergehend in das ORF-Zentrum am K\u00fcniglberg gezogen. Dort wird in \"Sperrzonen\" gearbeitet und der Sendebetrieb aufrecht erhalten. \r\n\r\nSendung: Mittag in \u00d6sterreich\r\nGestaltung: Stefan Schlager", + "teaser_title": null, + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "ORF-Mitarbeiter in Quarant\u00e4ne", + "updated_at": "2023-01-25T13:39:27+01:00", + "videobumper": { + "prevideobumper": { + "active": false, + "sources": { + "hls": [], + "progressive_download": [] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/14668903" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14046198" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/10112593" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/10112593" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/14668903\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/777384" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/14668903\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/14668903\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/ee77b810f02ea1a48940043cfd20f90b128112e3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/ee77b810f02ea1a48940043cfd20f90b128112e3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "links": [], + "subtitle": { + "id": 777384, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/3029d4cf7a2f525121479ed8f28aef22659688fa.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/0591a5076837b039de5d325204dfe877ce58a036.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/7a38c0710e820b61a96f8069b82bc7862a5dc157.ttml", + "updated_at": "2023-01-25T13:39:27+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/531716fc5b205118e09e4b37c51ec856677fda04.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/48fc0f933353d1b97efa355aca8f21afd04b8de9.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/777384" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806206" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806207" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806208" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806210" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806209" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/48fc0f933353d1b97efa355aca8f21afd04b8de9.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/0591a5076837b039de5d325204dfe877ce58a036.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/531716fc5b205118e09e4b37c51ec856677fda04.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/3029d4cf7a2f525121479ed8f28aef22659688fa.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/7a38c0710e820b61a96f8069b82bc7862a5dc157.ttml" + } + } + } + } + }, + "playlist": { + "id": 14668903, + "episode_id": 14046198, + "title_prefix": "ORF-Mitarbeiter in Quarant\u00e4ne", + "title_separator": "|", + "title": "ORF-Mitarbeiter in Quarant\u00e4ne", + "description": "Der ORF hat w\u00e4hrend der Coronakrise 2020 eine besondere Vorsichtsma\u00dfnahme getroffen, um den Betrieb sicherzustellen. Einige Mitarbeiter und Moderatoren des Senders sind vor\u00fcbergehend in das ORF-Zentrum am K\u00fcniglberg gezogen. Dort wird in \"Sperrzonen\" gearbeitet und der Sendebetrieb aufrecht erhalten. \r\n\r\nSendung: Mittag in \u00d6sterreich\r\nGestaltung: Stefan Schlager", + "duration": 210370, + "preview_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_player.jpeg", + "sources": [ + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "SMIL", + "quality_string": "Hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q0A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Sehr niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q1A.3gp\/playlist.m3u8", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Niedrig", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q4A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Mittel", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q6A.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q8C.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Sehr hoch", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXA.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_QXB.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Adaptiv", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/52750afd9650eb5e83e661e101e3ecbb\/1709506800\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q1A.3gp", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/88d3becaf9eeb50271b4197142a9fc98\/1709506800\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q4A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/74e2ac3a7cf46a4b30085080bfa9bb95\/1709506800\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q6A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/eb3d28eafeee899ac14248fbcf5fcf91\/1709506800\/2020-03-26_1310_sd_02_ORF-Mitarbeiter_____14046198__o__8302694905__s14668903_3__ORF3HD_13420114P_13453123P_Q8C.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + } + ], + "position": 0, + "last_segment": true, + "subtitles": [ + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/48fc0f933353d1b97efa355aca8f21afd04b8de9.xml", + "type": "xml", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/0591a5076837b039de5d325204dfe877ce58a036.srt", + "type": "srt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/531716fc5b205118e09e4b37c51ec856677fda04.vtt", + "type": "vtt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/3029d4cf7a2f525121479ed8f28aef22659688fa.smi", + "type": "sami", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/7a38c0710e820b61a96f8069b82bc7862a5dc157.ttml", + "type": "ttml", + "lang": "de-AT" + } + ], + "right": "worldwide", + "is_enabled": true, + "has_active_youthprotection": false, + "pre_bumper": { + "active": false, + "sources": [] + }, + "post_bumper": { + "active": false, + "sources": [] + }, + "hash": "41677ccffa7cb15f0200ed1d615b8919" + }, + "tags": [], + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "archive", + "description": null, + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Archiv", + "hide_in_letter_group": false, + "id": 7648449, + "letter_group": "A", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Archiv", + "type": "temporary", + "updated_at": "2019-02-28T11:32:43+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596301" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596301" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/7845704" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/7648449\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/ae4592a5d457efa42101c1b7170e39be2f2afcad.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/thumb_16596301_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/97\/ae4592a5d457efa42101c1b7170e39be2f2afcad.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "theme": { + "color": "#e3e3e3", + "id": 7845704, + "name": "Archiv", + "updated_at": "2016-10-11T00:05:51+02:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/7845704" + } + }, + "_embedded": { + "header_image": null, + "header_background_image": null, + "background_image": null + } + }, + "genre": null, + "links": [], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + } + } + } + ], + "tags": [], + "advertising_tags": [], + "links": [], + "audio_description_episode": null, + "oegs_episode": null, + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/ee77b810f02ea1a48940043cfd20f90b128112e3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/thumb_10112593_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0102\/13\/ee77b810f02ea1a48940043cfd20f90b128112e3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "subtitle": { + "id": 777383, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/169001a65997f4d747fff2e4390a1f48789f388e.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/1fc835e5ea31f903e9e5aa136085d4835bb8f81f.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/fcaa2c529b8a6524f2fe58820e734dba44aab0ba.ttml", + "updated_at": "2023-01-25T13:39:27+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/dacc52722cffd5bc466a231c66aeb2c01033a24d.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/f198c7d0c39a12039bd3a7f20a371acc0b7e8168.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/777383" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806201" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806202" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806203" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806205" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14806204" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/f198c7d0c39a12039bd3a7f20a371acc0b7e8168.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/1fc835e5ea31f903e9e5aa136085d4835bb8f81f.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/dacc52722cffd5bc466a231c66aeb2c01033a24d.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/169001a65997f4d747fff2e4390a1f48789f388e.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0149\/07\/fcaa2c529b8a6524f2fe58820e734dba44aab0ba.ttml" + } + } + } + } + } + }, + "accompanying_videos": [] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episode_noDrm.json b/src/test/resources/orfOn/episode_noDrm.json new file mode 100644 index 000000000..0922bd580 --- /dev/null +++ b/src/test/resources/orfOn/episode_noDrm.json @@ -0,0 +1,1558 @@ +{ + "adition_advertising_query_string": "stype:vod,scat:doku-reportage,scatid:1173,spro:spektakulaere-raubueberfaelle-mit-pierce-brosnan,sproid:13896153,episodeid:14216629,duration:2446000,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4716830, + "tbar": 4420052, + "pre": 4420053, + "post": 4420054 + }, + "mob": { + "par": 4420055, + "pre": 4420220, + "post": 4420057 + }, + "app": { + "par": 4420058, + "pre": 4420059, + "post": 4420060 + }, + "smart": { + "pre": 4420061, + "post": 4420062 + } + }, + "vod": { + "web": { + "sb": 4420426, + "tbar": 4420427, + "pre": 4420428, + "post": 4420429 + }, + "mob": { + "par": 4420430, + "pre": 4420431, + "post": 4420432 + }, + "app": { + "par": 4420433, + "pre": 4420434, + "post": 4420435 + }, + "smart": { + "pre": 4420436, + "post": 4420437 + } + } + }, + "advertising_query_string": "stype=vod&scat=doku-reportage&scatid=1173&spro=spektakulaere-raubueberfaelle-mit-pierce-brosnan&sproid=13896153&episodeid=14216629&duration=2446000&advertisingtags=", + "age_classification": "12+", + "countdown": "1024 Tage", + "date": "2024-03-13T23:49:50+01:00", + "delete_date": "2027-02-07T00:00:00+01:00", + "vod_ressort": null, + "description": "Pierce Brosnan pr\u00e4sentiert in der spannenden Krimi-Doku-Reihe die spektakul\u00e4rsten Raub\u00fcberf\u00e4lle der Geschichte.", + "drm_token": "qaP8q0kHjO6D9w1Nrp2wLaz%2BzbuarITso8dCCeRSRgdkl7VKJpHKnor7tPC9smP7lHZykhEsWJsKTN4EpIEM10T9rqaax%2FR30ChjYqMAiP%2FGIALB3yntBVmGGALs62DKY68T0VDZ3KZpdKur%2BmB0oFTilVbYiKGNF9TA1ikfWqwPJkLFB2xD1w7JuIO%2F1OvYSrQPmn93uYQM355uDcOIBpI%2Fjk8yQrZjgqONjGknxAhvuG6TmqPosadWvRKx3d6B", + "duration_seconds": 2446, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjE2NjI5", + "exact_duration": 2446000, + "field_descriptor": "Gewalt", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "dash": [] + }, + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "austria", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "Bankeinbruch in Kalifornien", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14216629, + "is_archive": false, + "audio_description_service_available": false, + "is_drm_protected": true, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2027-01-31T00:00:00+01:00", + "killdate": "2027-01-31T00:00:00+01:00", + "livedate": "2024-03-13T23:50:00+01:00", + "livedate_extern": "2024-03-13T23:50:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": false, + "production_country": "Vereinigte Staaten", + "production_year": 2023, + "profile_title": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2024-03-13T23:50:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan\/13896153\/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan-Bankeinbruch-in-Kalifornien\/14216629", + "share_subject": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien vom 13.03.2024 um 23:49 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXADRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": true + }, + { + "is_uhd": false, + "quality_key": "QXBDRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": true + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXADRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": true + }, + { + "is_uhd": false, + "quality_key": "QXBDRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": true + } + ] + }, + "sub_headline": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle", + "teaser_text": "In 'Bankeinbruch in Kalifornien' geht es um ein mit der Mafia in Verbindung stehendes Gangsterteam, das vom FBI als das 'beste aller Zeiten' bezeichnet worden ist.", + "teaser_title": "Bankeinbruch in Kalifornien", + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien", + "type": "default", + "updated_at": "2024-03-26T12:16:53+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16997261" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16997261" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17003265" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/914030" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/393293" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": "f9a36691-7bd7-4c36-9009-a0b9d7009b29", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/f9a36691-7bd7-4c36-9009-a0b9d7009b29\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1180, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 1", + "reel": "orf1", + "updated_at": "2024-02-28T16:06:34+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457917" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457918" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + } + }, + "_embedded": { + "parent": null, + "color_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457917_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/e88267e73205e46affb97e99d34f715f74bd1f1b.png" + } + } + }, + "black_and_white_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "tiny": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_tiny.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_list.png" + }, + "schedule": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/thumb_13457918_channels_schedule.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/channels\/0135\/58\/b1b2c5b46edc8fdb3781957de434fbeeed4e8e44.png" + } + } + } + } + }, + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "dds_identifier": "", + "description": "Spannende Krimi-Doku-Reihe", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan", + "hide_in_letter_group": false, + "id": 13896153, + "letter_group": "S", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/Nachrichten\/Chronik", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan", + "type": "temporary", + "updated_at": "2024-03-13T09:51:58+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16991314" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16991314" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17003265" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/c3bbfbb314b936589dd9c5804ac283641a050a83.jpeg" + } + } + }, + "image16x9_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/c3bbfbb314b936589dd9c5804ac283641a050a83.jpeg" + } + } + }, + "image2x3_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/87d0d07cfb0f7cc83377df1a7ce7b28b9af8d976.jpeg" + } + } + }, + "image2x3": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme": null, + "genre": { + "id": 1173, + "advertising_mapping": { + "live": { + "web": { + "sb": 4716830, + "tbar": 4420052, + "pre": 4420053, + "post": 4420054 + }, + "mob": { + "par": 4420055, + "pre": 4420220, + "post": 4420057 + }, + "app": { + "par": 4420058, + "pre": 4420059, + "post": 4420060 + }, + "smart": { + "pre": 4420061, + "post": 4420062 + } + }, + "vod": { + "web": { + "sb": 4420426, + "tbar": 4420427, + "pre": 4420428, + "post": 4420429 + }, + "mob": { + "par": 4420430, + "pre": 4420431, + "post": 4420432 + }, + "app": { + "par": 4420433, + "pre": 4420434, + "post": 4420435 + }, + "smart": { + "pre": 4420436, + "post": 4420437 + } + } + }, + "sorting": 7, + "title": "Doku & Reportage", + "updated_at": "2023-12-31T16:37:59+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:doku-reportage,scatid:1173,spro:spektakulaere-raubueberfaelle-mit-pierce-brosnan,sproid:13896153,episodeid:14216629,duration:2446000,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4716830, + "tbar": 4420052, + "pre": 4420053, + "post": 4420054 + }, + "mob": { + "par": 4420055, + "pre": 4420220, + "post": 4420057 + }, + "app": { + "par": 4420058, + "pre": 4420059, + "post": 4420060 + }, + "smart": { + "pre": 4420061, + "post": 4420062 + } + }, + "vod": { + "web": { + "sb": 4420426, + "tbar": 4420427, + "pre": 4420428, + "post": 4420429 + }, + "mob": { + "par": 4420430, + "pre": 4420431, + "post": 4420432 + }, + "app": { + "par": 4420433, + "pre": 4420434, + "post": 4420435 + }, + "smart": { + "pre": 4420436, + "post": 4420437 + } + } + }, + "advertising_query_string": "stype=vod&scat=doku-reportage&scatid=1173&spro=spektakulaere-raubueberfaelle-mit-pierce-brosnan&sproid=13896153&episodeid=14216629&duration=2446000&advertisingtags=", + "blackfades": [], + "episode_date": "2024-03-13T23:49:50+01:00", + "date_as_string": "Mi, 13.3.2024", + "vod_ressort": null, + "description": "Pierce Brosnan pr\u00e4sentiert in der spannenden Krimi-Doku-Reihe die spektakul\u00e4rsten Raub\u00fcberf\u00e4lle der Geschichte.\r\nIn 'Bankeinbruch in Kalifornien' geht es um ein mit der Mafia in Verbindung stehendes Gangsterteam, das vom FBI als das 'beste aller Zeiten' bezeichnet worden ist. 1972 erbeutete die Bande bei dem \u00dcberfall auf eine s\u00fcdkalifornischen Bank, die angeblich Pr\u00e4sident Richard Nixons Wahlkampfgelder eingebunkert hatte, gesch\u00e4tzte 30 Millionen Dollar in bar.\r\nMit Pierce Brosnan\r\nRegie: Brendan Murphy, Kieran Murphy", + "drm_token": "uZH9yZK791mApoQnhaOQPR4H7wCXwjWvlsj2KR7P65Dw6X3SEiO6j376a3lpxNs4HHzLwDx3f5PsLuJmLiifVufJB%2FNCA0k3WpOy%2FbBEBReWp4E3IfVFPVmjbjCAAtB6wpR3K5xQ%2FtNZaRGDUQh%2BQnDkst6PJMzSLg7vpvpu5pnMFCzUPe5OP1ST%2BdrEMVwGC%2Fs%2BpmeM0Vvdd1293uywOu7gdQDh9bl7zxFd4E%2BJYHxO4sX%2FdKYJOIB63rVL3nKG", + "duration_as_string": "40:46 Min.", + "duration_seconds": 2446, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTU5NTk5MA==", + "episode_id": 14216629, + "exact_duration": 2446000, + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien", + "id": 15595990, + "is_archive": false, + "is_drm_protected": true, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2027-01-31T00:00:00+01:00", + "killdate": "2027-01-31T00:00:00+01:00", + "livedate": "2024-03-13T23:50:00+01:00", + "livedate_extern": "2024-03-13T23:50:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15595990, + "videopartid": "1_1", + "videocategory": "Doku-Reportage", + "videotitle": "Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan-Bankeinbruch-in-Kalifornien", + "videoduration": 2446, + "episodeduration": 2446, + "episodeid": 14216629, + "airdate": "2024-03-13T23:50:00+01:00", + "clipreleasetime": "2024-03-13T23:50:02+01:00", + "programname": "Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan", + "channel": "orf1" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan\/13896153\/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan-Bankeinbruch-in-Kalifornien\/14216629\/Spektakulaere-Raubueberfaelle-mit-Pierce-Brosnan-Bankeinbruch-in-Kalifornien\/15595990", + "share_subject": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien - Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien vom 13.03.2024 um 23:49 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXADRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": true + }, + { + "is_uhd": false, + "quality_key": "QXBDRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": true + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXADRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": true + }, + { + "is_uhd": false, + "quality_key": "QXBDRM", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": true + } + ] + }, + "state": "distributed", + "sub_headline": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle", + "teaser_text": null, + "teaser_title": null, + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien", + "updated_at": "2024-03-14T00:42:13+01:00", + "videobumper": { + "prevideobumper": { + "active": false, + "sources": { + "hls": [], + "progressive_download": [] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15595990" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14216629" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16997261" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16997261" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17003265" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15595990\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/914031" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15595990\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15595990\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153" + } + }, + "_embedded": { + "image": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/2f1988137f18f84c8b23e3ad02f90f94aec642ef.jpeg" + } + } + }, + "image16x9_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/2f1988137f18f84c8b23e3ad02f90f94aec642ef.jpeg" + } + } + }, + "image2x3_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/87d0d07cfb0f7cc83377df1a7ce7b28b9af8d976.jpeg" + } + } + }, + "image2x3": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links": [], + "subtitle": { + "id": 914031, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/fe7a33b4649d309b64a8533e0d042d2adcc1b3db.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/9cf923418cdda3395e4ab20fa7cab0514b0425a2.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/bae4fee3721136bf92ead4eaea19c2ac368531fe.ttml", + "updated_at": "2024-03-14T00:45:14+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/6b6430a64f134d6fb118efe6c32310c038b6448f.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/6936fd90f903a4ae5a58ed5380306de0edce8e1e.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/914031" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014318" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014319" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014320" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014322" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014321" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/6936fd90f903a4ae5a58ed5380306de0edce8e1e.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/9cf923418cdda3395e4ab20fa7cab0514b0425a2.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/6b6430a64f134d6fb118efe6c32310c038b6448f.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/fe7a33b4649d309b64a8533e0d042d2adcc1b3db.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/bae4fee3721136bf92ead4eaea19c2ac368531fe.ttml" + } + } + } + } + }, + "playlist": { + "id": 15595990, + "episode_id": 14216629, + "title_prefix": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien", + "title_separator": "|", + "title": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan: Bankeinbruch in Kalifornien", + "description": "Pierce Brosnan pr\u00e4sentiert in der spannenden Krimi-Doku-Reihe die spektakul\u00e4rsten Raub\u00fcberf\u00e4lle der Geschichte.\r\nIn 'Bankeinbruch in Kalifornien' geht es um ein mit der Mafia in Verbindung stehendes Gangsterteam, das vom FBI als das 'beste aller Zeiten' bezeichnet worden ist. 1972 erbeutete die Bande bei dem \u00dcberfall auf eine s\u00fcdkalifornischen Bank, die angeblich Pr\u00e4sident Richard Nixons Wahlkampfgelder eingebunkert hatte, gesch\u00e4tzte 30 Millionen Dollar in bar.\r\nMit Pierce Brosnan\r\nRegie: Brendan Murphy, Kieran Murphy", + "duration": 2446000, + "preview_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_player.jpeg", + "sources": [ + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtmp:\/\/apasfw.apa.at\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtmp" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q1A.3gp", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "SMIL", + "quality_string": "Hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q6A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q4A.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "rtsp:\/\/apasfw.apa.at:1935\/cms-austria\/mp4:2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q8C.mp4", + "type": "video\/mp4", + "delivery": "streaming", + "protocol": "rtsp" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q0A", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q1A", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q4A", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q6A", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "Q8C", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXA", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/gp\/no_drm_support_q6a.mp4\/playlist.m3u8", + "is_uhd": false, + "quality": "QXB", + "quality_string": "Kein DRM", + "delivery": "hls", + "type": "video\/mp4", + "protocol": "http" + }, + { + "quality": "Q1A", + "quality_string": "Niedrig", + "src": "https:\/\/localhost:6666\/cms-austria\/online\/440102b9f68434fbb577d17114dd9182\/1713132000\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q1A.3gp", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q4A", + "quality_string": "Mittel", + "src": "https:\/\/localhost:6666\/cms-austria\/online\/a96476a0eab40b11ef517feefe0d2973\/1713132000\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q4A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q6A", + "quality_string": "Hoch", + "src": "https:\/\/localhost:6666\/cms-austria\/online\/de9bd8775f46ea293a9db4b0711d4de5\/1713132000\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q6A.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + }, + { + "quality": "Q8C", + "quality_string": "Sehr hoch", + "src": "https:\/\/localhost:6666\/cms-austria\/online\/6b2d672267c81e196472b564abf8c8fe\/1713132000\/2024-03-13_2349_in_01_Spektakulaere-R_____14216629__o__1333685799__s15595990_Q8C.mp4", + "type": "video\/mp4", + "delivery": "progressive", + "protocol": "http" + } + ], + "position": 0, + "last_segment": true, + "subtitles": [ + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/6936fd90f903a4ae5a58ed5380306de0edce8e1e.xml", + "type": "xml", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/9cf923418cdda3395e4ab20fa7cab0514b0425a2.srt", + "type": "srt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/6b6430a64f134d6fb118efe6c32310c038b6448f.vtt", + "type": "vtt", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/fe7a33b4649d309b64a8533e0d042d2adcc1b3db.smi", + "type": "sami", + "lang": "de-AT" + }, + { + "src": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/bae4fee3721136bf92ead4eaea19c2ac368531fe.ttml", + "type": "ttml", + "lang": "de-AT" + } + ], + "right": "austria", + "is_enabled": true, + "has_active_youthprotection": false, + "pre_bumper": { + "active": false, + "sources": [] + }, + "post_bumper": { + "active": false, + "sources": [] + }, + "hash": "9368c341ed83453303634fbd0f913f90" + }, + "tags": [], + "profile": { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "dds_identifier": "", + "description": "Spannende Krimi-Doku-Reihe", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan", + "hide_in_letter_group": false, + "id": 13896153, + "letter_group": "S", + "livestream_sub_headline": null, + "oegs": false, + "oewa_base_path": "Redcont\/Nachrichten\/Chronik", + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Spektakul\u00e4re Raub\u00fcberf\u00e4lle mit Pierce Brosnan", + "type": "temporary", + "updated_at": "2024-03-13T09:51:58+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16991314" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16991314" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17003265" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13896153\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/c3bbfbb314b936589dd9c5804ac283641a050a83.jpeg" + } + } + }, + "image16x9_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/thumb_16991314_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0170\/92\/c3bbfbb314b936589dd9c5804ac283641a050a83.jpeg" + } + } + }, + "image2x3_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/87d0d07cfb0f7cc83377df1a7ce7b28b9af8d976.jpeg" + } + } + }, + "image2x3": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme": null, + "genre": { + "id": 1173, + "advertising_mapping": { + "live": { + "web": { + "sb": 4716830, + "tbar": 4420052, + "pre": 4420053, + "post": 4420054 + }, + "mob": { + "par": 4420055, + "pre": 4420220, + "post": 4420057 + }, + "app": { + "par": 4420058, + "pre": 4420059, + "post": 4420060 + }, + "smart": { + "pre": 4420061, + "post": 4420062 + } + }, + "vod": { + "web": { + "sb": 4420426, + "tbar": 4420427, + "pre": 4420428, + "post": 4420429 + }, + "mob": { + "par": 4420430, + "pre": 4420431, + "post": 4420432 + }, + "app": { + "par": 4420433, + "pre": 4420434, + "post": 4420435 + }, + "smart": { + "pre": 4420436, + "post": 4420437 + } + } + }, + "sorting": 7, + "title": "Doku & Reportage", + "updated_at": "2023-12-31T16:37:59+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags": [], + "advertising_tags": [] + } + }, + "links": [], + "tags": [], + "advertising_tags": [], + "audio_description_profile": null, + "oegs_profile": null + } + } + } + } + ], + "tags": [], + "advertising_tags": [], + "links": [], + "audio_description_episode": null, + "oegs_episode": null, + "image": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/2f1988137f18f84c8b23e3ad02f90f94aec642ef.jpeg" + } + } + }, + "image16x9_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/thumb_16997261_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0170\/98\/2f1988137f18f84c8b23e3ad02f90f94aec642ef.jpeg" + } + } + }, + "image2x3_with_logo": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/thumb_17003265_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0171\/04\/87d0d07cfb0f7cc83377df1a7ce7b28b9af8d976.jpeg" + } + } + }, + "image2x3": { + "dynamic_color": "#691f11", + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "subtitle": { + "id": 914030, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/e83f6eabbdbcf49e894d1a58d77fcf3a9b951f3c.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/e2536ac2b80a5152e54b047073ab327c223579ec.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/c95472a931fe3ea8407734f95df242bce2f06b09.ttml", + "updated_at": "2024-03-14T00:45:14+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/13759cf0d408fe11965ff16d03a564bbabbf5bc1.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/be922c3765a25ec3d7fa13e9265dabad7f986b75.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/914030" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014313" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014314" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014315" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014317" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17014316" + } + }, + "_embedded": { + "xml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/be922c3765a25ec3d7fa13e9265dabad7f986b75.xml" + } + } + }, + "stl_file": null, + "srt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/e2536ac2b80a5152e54b047073ab327c223579ec.srt" + } + } + }, + "vtt_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/13759cf0d408fe11965ff16d03a564bbabbf5bc1.vtt" + } + } + }, + "sami_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/e83f6eabbdbcf49e894d1a58d77fcf3a9b951f3c.smi" + } + } + }, + "ttml_file": { + "public_urls": { + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/15\/c95472a931fe3ea8407734f95df242bce2f06b09.ttml" + } + } + } + } + } + }, + "accompanying_videos": [] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episode_zib.json b/src/test/resources/orfOn/episode_zib.json new file mode 100644 index 000000000..bd1dc48bf --- /dev/null +++ b/src/test/resources/orfOn/episode_zib.json @@ -0,0 +1,21457 @@ +{ + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:1177878,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=1177878&advertisingtags=", + "age_classification":"", + "countdown":"29 Tage", + "date":"2024-03-20T13:00:00+01:00", + "delete_date":"2024-04-26T13:00:00+02:00", + "vod_ressort":null, + "description":"Wohnbaupaket passiert Nationalrat | ORF-Analyse: Details zum Wohnbaupaket | Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter | Agrarprodukte aus Ukraine werden wieder verzollt | ORF-Analyse: Z\u00f6lle auf Landwirtschaftsg\u00fcter aus Ukraine | London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\" | Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab | 2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich | Rekordhoch bei Insolvenzen | Kredit f\u00fcr Signa-Immobiliensparte in Aussicht? | Japan beendet Negativzinspolitik | Alkohol und Zigaretten bleiben beliebteste Drogen | Schau \u00fcber Overtourism im Architekturzentrum Wien | Hinweis auf \"Aktuell nach eins\"", + "drm_token":null, + "duration_seconds":1177, + "encrypted_id":"M2RTbGZlazAzbnNMS2RqNEpzZDE0MjE4NjY1", + "exact_duration":1177878, + "field_descriptor":"", + "flimmit_link_text":"", + "flimmit_link":"", + "gapless_sources_austria":{ + "hls":[ + + ], + "dash":[ + + ] + }, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "growing":false, + "growing_type":"chronology", + "has_active_youth_protection":false, + "focus":false, + "show_countdown":true, + "has_subtitle":true, + "has_thumbnail":true, + "has_youth_protection":false, + "headline":"ZIB 13:00 vom 20.03.2024", + "hide_in_new_section":false, + "hide_in_schedule_section":false, + "hide_latest_episodes":false, + "id":14218665, + "is_archive":false, + "audio_description_service_available":false, + "is_drm_protected":false, + "is_gapless_austria":false, + "is_gapless":true, + "gmf_merged_content":false, + "is_oegs":false, + "two_channel_audio":false, + "uhd":false, + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "orf_label":null, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "production_country_is_europe":false, + "production_country":null, + "production_year":null, + "profile_title":"ZIB 13:00", + "website":"", + "recommendation_episode":null, + "related_audiodescription_episode_image_url":null, + "related_audiodescription_episode_title":null, + "related_oegs_episode_image_url":null, + "related_oegs_episode_title":null, + "release_date":"2024-03-20T13:30:02+01:00", + "secondary_genres":[ + + ], + "segments_complete":true, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665", + "share_subject":"ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide_episodes\/14218665_0017_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide_episodes\/14218665_0017_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide_episodes\/14218665_0017_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide_episodes\/14218665_0017_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "sub_headline":"ZIB 13:00", + "teaser_text":"Wohnbaupaket passiert Nationalrat | ORF-Analyse: Details zum Wohnbaupaket | Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter | Agrarprodukte aus Ukraine werden wieder verzollt | ORF-Analyse: Z\u00f6lle auf Landwirtschaftsg\u00fcter aus Ukraine | London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\" | Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab | 2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich | Rekordhoch bei Insolvenzen | Kredit f\u00fcr Signa-Immobiliensparte in Aussicht? | Japan beendet Negativzinspolitik | Alkohol und Zigaretten bleiben beliebteste Drogen | Schau \u00fcber Overtourism im Architekturzentrum Wien | Hinweis auf \"Aktuell nach eins\"", + "teaser_title":null, + "text":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14218665_0017_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14218665_0017_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14218665_0017_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14218665_0017_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"ZIB 13:00 vom 20.03.2024", + "type":"default", + "updated_at":"2024-03-20T14:22:12+01:00", + "video_type":"episode", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "channel":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1181" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "segments":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665\/segments" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665\/advertising\/tags" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665\/links" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055555" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055555" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916751" + }, + "related_episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665\/related" + }, + "dds_item":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/391051" + } + }, + "_embedded":{ + "channel":{ + "bitmovin_stream_id":"839fb502-606d-4666-a36c-19f3f2dd8e83", + "channel_restart_url_hbbtv":"https:\/\/playerapi-restarttv.ors.at\/livestreams\/839fb502-606d-4666-a36c-19f3f2dd8e83\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id":1181, + "is_drm_protected":true, + "is_main_channel":true, + "name":"ORF 2", + "reel":"orf2", + "updated_at":"2024-03-04T12:24:18+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1181" + }, + "children":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1181\/children" + }, + "color_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13" + }, + "black_and_white_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14" + }, + "audio_description_channel":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/8089684" + }, + "oegs_channel":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1897433" + } + }, + "_embedded":{ + "parent":null, + "color_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "tiny":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_13_channels_tiny.png" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_13_channels_list.png" + }, + "schedule":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_13_channels_schedule.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/56f8ed59c8ef61c7e9cc65b2436f3617831b9f6b.png" + } + } + }, + "black_and_white_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "tiny":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_14_channels_tiny.png" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_14_channels_list.png" + }, + "schedule":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/thumb_14_channels_schedule.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/channels\/0001\/01\/4b36e87c78e2e5108058d55ea67622d807cf4edd.png" + } + } + } + } + }, + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + }, + "segments":[ + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:36918,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=36918&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Wohnbaupaket passiert Nationalrat | ORF-Analyse: Details zum Wohnbaupaket | Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter | Agrarprodukte aus Ukraine werden wieder verzollt | ORF-Analyse: Z\u00f6lle auf Landwirtschaftsg\u00fcter aus Ukraine | London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\" | Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab | 2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich | Rekordhoch bei Insolvenzen | Kredit f\u00fcr Signa-Immobiliensparte in Aussicht? | Japan beendet Negativzinspolitik | Alkohol und Zigaretten bleiben beliebteste Drogen | Schau \u00fcber Overtourism im Architekturzentrum Wien | Hinweis auf \"Aktuell nach eins\"", + "drm_token":null, + "duration_as_string":"00:36 Sek.", + "duration_seconds":36, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY0Ng==", + "episode_id":14218665, + "exact_duration":36918, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Signation | Themen", + "id":15602646, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602646, + "videopartid":"1_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Signation-Themen", + "videoduration":36, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":0, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Signation-Themen\/15602646", + "share_subject":"Signation | Themen - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Signation | Themen", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P", + "video_stream_url":null, + "video_type":"segment", + "voez":false, + "voez_ads_allowed":false, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602646" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055555" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055555" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602646\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916752" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602646\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602646\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/fa2ad043ebf5be521c717d53238e959706386e1b.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/fa2ad043ebf5be521c717d53238e959706386e1b.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916752, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5a10c995faba778a2b9af801ee8ad36c86822074.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e0120fe9a7beb23cb4f953fb4ea969c68ccec339.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/12a79273b46bffd4b4ab663757001eab2a046a18.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/04ca38c0e209d132ac522fc9c9d14a69dfa87b48.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cf6d40351e59e0e231695d52ac96ca483c9a3cad.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916752" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058533" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058534" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058535" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058537" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058536" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cf6d40351e59e0e231695d52ac96ca483c9a3cad.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e0120fe9a7beb23cb4f953fb4ea969c68ccec339.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/04ca38c0e209d132ac522fc9c9d14a69dfa87b48.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5a10c995faba778a2b9af801ee8ad36c86822074.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/12a79273b46bffd4b4ab663757001eab2a046a18.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602646, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Signation | Themen", + "description":null, + "duration":36918, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/ac660c3eacee532e43b4877b9dfa5c21\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/4c991a009f1f4b0edb14757f9a9224ed\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/585a07876cc9d915dd7e6b1ef2fc8ded\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/bc22ffa3b54d5844070dbf61bd10835d\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Signation---The__14218665__o__2177611826__s15602646_6__ORF2HD_13000121P_13003819P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":0, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cf6d40351e59e0e231695d52ac96ca483c9a3cad.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e0120fe9a7beb23cb4f953fb4ea969c68ccec339.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/04ca38c0e209d132ac522fc9c9d14a69dfa87b48.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5a10c995faba778a2b9af801ee8ad36c86822074.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/12a79273b46bffd4b4ab663757001eab2a046a18.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"d2acd08415c25d2148d2a486ad7cf127" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:122480,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=122480&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Im Nationalrat wird am Mittwoch \u00fcber das Wohnbaupaket der Regierung debattiert. Ein zentraler Punkt sind Wohnbauf\u00f6rderungsdarlehen der L\u00e4nder und die Streichung von Geb\u00fchren beim Erwerb von Eigenheimen.", + "drm_token":null, + "duration_as_string":"02:02 Min.", + "duration_seconds":122, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY0Nw==", + "episode_id":14218665, + "exact_duration":122480, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Wohnbaupaket passiert Nationalrat", + "id":15602647, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:25.731", + "end_time":"00:02:02.480" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602647, + "videopartid":"2_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Wohnbaupaket-passiert-Nationalrat", + "videoduration":122, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":1, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Wohnbaupaket-passiert-Nationalrat\/15602647", + "share_subject":"Wohnbaupaket passiert Nationalrat - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Wohnbaupaket passiert Nationalrat", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602647" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055556" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055556" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602647\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916753" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602647\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602647\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/de78449bb8017d51d333af84c8f7c8b3651e02c6.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/de78449bb8017d51d333af84c8f7c8b3651e02c6.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916753, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ab94897ea109e014a62bb928466b4cf291e3126c.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ed394193c8dc23b32784c35780328b0ed562b9f2.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2914718fdae875cd8c0e52f7a3e3a5c9e49c9161.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/55b95e1f85d77297d88866605cd04f0f0aff82e1.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7732ee87036a4205ef1bed1529bd6e44232417d7.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916753" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058538" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058539" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058540" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058542" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058541" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7732ee87036a4205ef1bed1529bd6e44232417d7.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ed394193c8dc23b32784c35780328b0ed562b9f2.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/55b95e1f85d77297d88866605cd04f0f0aff82e1.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ab94897ea109e014a62bb928466b4cf291e3126c.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2914718fdae875cd8c0e52f7a3e3a5c9e49c9161.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602647, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Wohnbaupaket passiert Nationalrat", + "description":"Im Nationalrat wird am Mittwoch \u00fcber das Wohnbaupaket der Regierung debattiert. Ein zentraler Punkt sind Wohnbauf\u00f6rderungsdarlehen der L\u00e4nder und die Streichung von Geb\u00fchren beim Erwerb von Eigenheimen.", + "duration":122480, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055556_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/446d5354e7007ffca629561ca22b91c5\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/e34370084cd40ae3a0320511196b07e8\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/a1da24808ad2a9afc8706fbe5160afe1\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/a3c23a51e6cbc2c364b07c3520b541f9\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Wohnbaupaket-pa__14218665__o__9042095706__s15602647_7__ORF2HD_13003819P_13024106P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":1, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7732ee87036a4205ef1bed1529bd6e44232417d7.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ed394193c8dc23b32784c35780328b0ed562b9f2.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/55b95e1f85d77297d88866605cd04f0f0aff82e1.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ab94897ea109e014a62bb928466b4cf291e3126c.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2914718fdae875cd8c0e52f7a3e3a5c9e49c9161.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"8330262706b45da57d04f0edd3382ac3" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:133738,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=133738&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Peter Unger aus der ORF-Innenpolitikredaktion analysiert das neue Wohnbaupaket. Er schildert, wer am meisten von den Ma\u00dfnahmen der Regierung profitiert.", + "drm_token":null, + "duration_as_string":"02:13 Min.", + "duration_seconds":133, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY2OA==", + "episode_id":14218665, + "exact_duration":133738, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"ORF-Analyse: Details zum Wohnbaupaket", + "id":15602668, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602668, + "videopartid":"3_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_ORF-Analyse-Details-zum-Wohnbaupaket", + "videoduration":133, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":2, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/ORF-Analyse-Details-zum-Wohnbaupaket\/15602668", + "share_subject":"ORF-Analyse: Details zum Wohnbaupaket - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"ORF-Analyse: Details zum Wohnbaupaket", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602668" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055557" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055557" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602668\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916754" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602668\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602668\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/cc7c3ec9631921ea72bde69d1bb77520d8b22ecc.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/cc7c3ec9631921ea72bde69d1bb77520d8b22ecc.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916754, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/51ff5bb9cbc5d3f51b461fd759c21f12872cc980.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e14d0d68b000ece2d490adb03bb05abba484a38d.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/54a20fd9ac429ae26088b0cf9aaee7ffeee99804.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/273e6a380c52de738d5b283506d26b3192a21ada.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/45c1044edd4aa2893f200679e0a62c2c185440ff.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916754" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058543" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058544" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058545" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058547" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058546" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/45c1044edd4aa2893f200679e0a62c2c185440ff.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e14d0d68b000ece2d490adb03bb05abba484a38d.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/273e6a380c52de738d5b283506d26b3192a21ada.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/51ff5bb9cbc5d3f51b461fd759c21f12872cc980.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/54a20fd9ac429ae26088b0cf9aaee7ffeee99804.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602668, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"ORF-Analyse: Details zum Wohnbaupaket", + "description":"Peter Unger aus der ORF-Innenpolitikredaktion analysiert das neue Wohnbaupaket. Er schildert, wer am meisten von den Ma\u00dfnahmen der Regierung profitiert.", + "duration":133738, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055557_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/e3985865ec8a4612520e394c108a4547\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/3df6da5c220246cecba44a7db7b8070a\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/02c397ce382bd8b0fe6e9e4cf033a9fc\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/af6f6747ba2f5ec78c51557f5b85da0b\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--De__14218665__o__6140733916__s15602668_8__ORF2HD_13024106P_13045424P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":2, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/45c1044edd4aa2893f200679e0a62c2c185440ff.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e14d0d68b000ece2d490adb03bb05abba484a38d.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/273e6a380c52de738d5b283506d26b3192a21ada.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/51ff5bb9cbc5d3f51b461fd759c21f12872cc980.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/54a20fd9ac429ae26088b0cf9aaee7ffeee99804.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"53310ba34f7962c75e637f9066254fb1" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:104216,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=104216&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Um den Hochschulen mehr Zeit f\u00fcr die Umsetzung zu geben, wird die neue Lehrerausbildung um ein Jahr verschoben. Alle Lehramtsstudien sollen dann f\u00fcnf Jahre dauern und im Bereich der Psychotherapie wird \u00fcberhaupt ein komplett neues Studium geschaffen.", + "drm_token":null, + "duration_as_string":"01:44 Min.", + "duration_seconds":104, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY0OA==", + "episode_id":14218665, + "exact_duration":104216, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter", + "id":15602648, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:21.956", + "end_time":"00:01:44.216" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602648, + "videopartid":"4_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Neue-Lehrerausbildung-kommt-ein-Jahr-spaeter", + "videoduration":104, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":3, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Neue-Lehrerausbildung-kommt-ein-Jahr-spaeter\/15602648", + "share_subject":"Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602648" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055558" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055558" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602648\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916755" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602648\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602648\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/94ace915a6929c50ef3007a908a9082794074569.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/94ace915a6929c50ef3007a908a9082794074569.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916755, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7330b380516a2dfe01004c1467d4fa4c27c7a5b2.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bbf9730b70d220d3789b3e9476ebbb0183f1ea8b.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a4a85fa781658dff7a70184e06c8293401652479.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7a504b4dc9227c076cabebcafc575668ac95d7a2.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a61b550ef8a0333d51681f2bd3b29be357029c43.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916755" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058548" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058549" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058550" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058552" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058551" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a61b550ef8a0333d51681f2bd3b29be357029c43.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bbf9730b70d220d3789b3e9476ebbb0183f1ea8b.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7a504b4dc9227c076cabebcafc575668ac95d7a2.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7330b380516a2dfe01004c1467d4fa4c27c7a5b2.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a4a85fa781658dff7a70184e06c8293401652479.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602648, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter", + "description":"Um den Hochschulen mehr Zeit f\u00fcr die Umsetzung zu geben, wird die neue Lehrerausbildung um ein Jahr verschoben. Alle Lehramtsstudien sollen dann f\u00fcnf Jahre dauern und im Bereich der Psychotherapie wird \u00fcberhaupt ein komplett neues Studium geschaffen.", + "duration":104216, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055558_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/5639494fb0d88e1293c65fb533f5133e\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/089e5b2f44bb140e5b5b254f3fdf6de9\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/39daf98fd6ba71e0c46e00ce96e95c34\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/6e1621f0fe7a21e11da61519c5ca5bf7\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Neue-Lehrerausb__14218665__o__4667348236__s15602648_8__ORF2HD_13045424P_13063905P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":3, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a61b550ef8a0333d51681f2bd3b29be357029c43.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bbf9730b70d220d3789b3e9476ebbb0183f1ea8b.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7a504b4dc9227c076cabebcafc575668ac95d7a2.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7330b380516a2dfe01004c1467d4fa4c27c7a5b2.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a4a85fa781658dff7a70184e06c8293401652479.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"8f3758d32f4e2426ce7a8ebbc7a86dc1" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:42467,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=42467&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Das EU-Parlament hat sich mit den EU-L\u00e4ndern darauf geeinigt, bestimmte Agrarprodukte aus der Ukraine in gro\u00dfen Mengen zu verzollen. Die EU reagiert damit auf Proteste von Bauern in mehreren L\u00e4ndern.", + "drm_token":null, + "duration_as_string":"00:42 Sek.", + "duration_seconds":42, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY0OQ==", + "episode_id":14218665, + "exact_duration":42467, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Agrarprodukte aus Ukraine werden wieder verzollt", + "id":15602649, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602649, + "videopartid":"5_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Agrarprodukte-aus-Ukraine-werden-wieder-verzollt", + "videoduration":42, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":4, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Agrarprodukte-aus-Ukraine-werden-wieder-verzollt\/15602649", + "share_subject":"Agrarprodukte aus Ukraine werden wieder verzollt - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Agrarprodukte aus Ukraine werden wieder verzollt", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602649" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055559" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055559" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602649\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916756" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602649\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602649\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/528e9efd05f6ae90d4ed6ca3f25487d96819759f.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/528e9efd05f6ae90d4ed6ca3f25487d96819759f.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916756, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cfcc2c9bbb4ba3fa7cbe1330188e375d24f26bb5.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e5d44efae0019d7945ae3d899ce530a939a075e3.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9f9c6305fd5cb74951021345f3fecb8deea5fdd8.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d633132413ebd8d6ab6ace5b1833ee9276ed157a.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/69934a8118667fe1d4d2f6b976dff5486ba0c46e.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916756" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058553" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058554" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058555" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058557" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058556" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/69934a8118667fe1d4d2f6b976dff5486ba0c46e.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e5d44efae0019d7945ae3d899ce530a939a075e3.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d633132413ebd8d6ab6ace5b1833ee9276ed157a.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cfcc2c9bbb4ba3fa7cbe1330188e375d24f26bb5.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9f9c6305fd5cb74951021345f3fecb8deea5fdd8.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602649, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Agrarprodukte aus Ukraine werden wieder verzollt", + "description":"Das EU-Parlament hat sich mit den EU-L\u00e4ndern darauf geeinigt, bestimmte Agrarprodukte aus der Ukraine in gro\u00dfen Mengen zu verzollen. Die EU reagiert damit auf Proteste von Bauern in mehreren L\u00e4ndern.", + "duration":42467, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055559_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/8341c1c897d14f41cd6366bd382cf0fa\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/5cfd87abfe4d5b42de0c7203f3560fb8\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/b0e190da89d3a1c5c0cec7aad4c16665\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/15e2ff684d0f8dbf25432804b32f2af9\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Agrarprodukte-a__14218665__o__6065409206__s15602649_9__ORF2HD_13063905P_13072116P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":4, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/69934a8118667fe1d4d2f6b976dff5486ba0c46e.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e5d44efae0019d7945ae3d899ce530a939a075e3.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d633132413ebd8d6ab6ace5b1833ee9276ed157a.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cfcc2c9bbb4ba3fa7cbe1330188e375d24f26bb5.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9f9c6305fd5cb74951021345f3fecb8deea5fdd8.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"488cb28e6d74561cf06aa1fa1b76810e" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:103138,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=103138&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"ORF-Korrespondent Robert Zikmund meldet sich aus Br\u00fcssel. Er berichtet, warum die EU erneut Z\u00f6lle auf Landwirtschaftsprodukte einf\u00fchren will.", + "drm_token":null, + "duration_as_string":"01:43 Min.", + "duration_seconds":103, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1MA==", + "episode_id":14218665, + "exact_duration":103138, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"ORF-Analyse: Z\u00f6lle auf Agrarg\u00fcter aus Ukraine", + "id":15602650, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602650, + "videopartid":"6_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_ORF-Analyse-Zoelle-auf-Agrargueter-aus-Ukraine", + "videoduration":103, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":5, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/ORF-Analyse-Zoelle-auf-Agrargueter-aus-Ukraine\/15602650", + "share_subject":"ORF-Analyse: Z\u00f6lle auf Agrarg\u00fcter aus Ukraine - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"ORF-Analyse: Z\u00f6lle auf Agrarg\u00fcter aus Ukraine", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602650" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055560" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055560" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602650\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916757" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602650\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602650\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/4e7d6c8624efac6cf861a628e089135feede0bb9.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/4e7d6c8624efac6cf861a628e089135feede0bb9.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916757, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/4750dc121a0642ecc08417c4f15f8878fbe68933.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5482d868c394d1f99f7b72de81e7649517546d3b.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cb74ca6367b8b65f9c6011d78390076db33df871.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/38118e88c1ae27e89780de1ead30426685fcf6c6.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/448d43a0f16508e7aca375659fb49a3fe7999add.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916757" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058558" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058559" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058560" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058562" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058561" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/448d43a0f16508e7aca375659fb49a3fe7999add.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5482d868c394d1f99f7b72de81e7649517546d3b.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/38118e88c1ae27e89780de1ead30426685fcf6c6.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/4750dc121a0642ecc08417c4f15f8878fbe68933.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cb74ca6367b8b65f9c6011d78390076db33df871.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602650, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"ORF-Analyse: Z\u00f6lle auf Agrarg\u00fcter aus Ukraine", + "description":"ORF-Korrespondent Robert Zikmund meldet sich aus Br\u00fcssel. Er berichtet, warum die EU erneut Z\u00f6lle auf Landwirtschaftsprodukte einf\u00fchren will.", + "duration":103138, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055560_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/cb87ce2ead1248b84b6a4e02c87e6654\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/5eb64b8d28baa85d2354229418d96c33\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/59b255f48fe816aca020ffb32d251606\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/2add1f55ac6ecddfa5fe202d0f40ea9b\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_ORF-Analyse--Zo__14218665__o__1318818331__s15602650_0__ORF2HD_13072116P_13090420P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":5, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/448d43a0f16508e7aca375659fb49a3fe7999add.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5482d868c394d1f99f7b72de81e7649517546d3b.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/38118e88c1ae27e89780de1ead30426685fcf6c6.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/4750dc121a0642ecc08417c4f15f8878fbe68933.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/cb74ca6367b8b65f9c6011d78390076db33df871.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"170f29d822c4de390d663aeab8e8e471" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:36357,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=36357&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Das britische Unterhaus stimmt am Mittwoch wieder \u00fcber umstrittene Abschiebungen nach Ruanda ab. Der ge\u00e4nderte \"Ruanda-Plan\" von Premier Sunak sieht vor, dass Gefl\u00fcchtete ohne Aufenthaltsberechtigung nach Ruanda abgeschoben werden k\u00f6nnen, egal wo sie urspr\u00fcnglich herkommen.", + "drm_token":null, + "duration_as_string":"00:36 Sek.", + "duration_seconds":36, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1MQ==", + "episode_id":14218665, + "exact_duration":36357, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\"", + "id":15602651, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602651, + "videopartid":"7_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_London-Zweiter-Anlauf-fuer-Ruanda-Plan", + "videoduration":36, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":6, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/London-Zweiter-Anlauf-fuer-Ruanda-Plan\/15602651", + "share_subject":"London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\" - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\"", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602651" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055561" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055561" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602651\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916758" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602651\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602651\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/731053ee72cae7937046fe5fcfba4612ee013e67.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/731053ee72cae7937046fe5fcfba4612ee013e67.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916758, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e56270561ae5bed2480aa62b4ae9e48fec286a3c.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/56b8ab5bcf42a20a3d807865ba5186d1a615e845.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/55509d605198903b740f9b333524deb78a37da91.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1d4953b67e3218eb85ef3e896177775855bb7cc3.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/216fa49ddc0d3816bac39092ba9962c6d399f557.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916758" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058563" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058564" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058565" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058567" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058566" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/216fa49ddc0d3816bac39092ba9962c6d399f557.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/56b8ab5bcf42a20a3d807865ba5186d1a615e845.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1d4953b67e3218eb85ef3e896177775855bb7cc3.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e56270561ae5bed2480aa62b4ae9e48fec286a3c.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/55509d605198903b740f9b333524deb78a37da91.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602651, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\"", + "description":"Das britische Unterhaus stimmt am Mittwoch wieder \u00fcber umstrittene Abschiebungen nach Ruanda ab. Der ge\u00e4nderte \"Ruanda-Plan\" von Premier Sunak sieht vor, dass Gefl\u00fcchtete ohne Aufenthaltsberechtigung nach Ruanda abgeschoben werden k\u00f6nnen, egal wo sie urspr\u00fcnglich herkommen.", + "duration":36357, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055561_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/0c747405fca2f4221c08faab221b7c09\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/ee3e0f8291649492c04faab32635417b\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/dd640344d3310dae01378b490293cf04\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/4c9b0603022b9f25119cecea7fab4744\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_London--Zweiter__14218665__o__5110128836__s15602651_1__ORF2HD_13090420P_13094104P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":6, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/216fa49ddc0d3816bac39092ba9962c6d399f557.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/56b8ab5bcf42a20a3d807865ba5186d1a615e845.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1d4953b67e3218eb85ef3e896177775855bb7cc3.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e56270561ae5bed2480aa62b4ae9e48fec286a3c.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/55509d605198903b740f9b333524deb78a37da91.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"df605d6e5958951aa8199999358f7126" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:86640,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=86640&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Die britische Regierung h\u00e4lt weiter an den umstrittenen Pl\u00e4nen zur Abschiebung von Gefl\u00fcchteten nach Ruanda fest. Das Oberhaus stimmt am Mittwoch in London erneut \u00fcber das Gesetz ab. ORF-Korrespondent J\u00f6rg Winter berichtet.", + "drm_token":null, + "duration_as_string":"01:26 Min.", + "duration_seconds":86, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1Mg==", + "episode_id":14218665, + "exact_duration":86640, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab", + "id":15602652, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602652, + "videopartid":"8_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Vorschau-GB-stimmt-ueber-Ruanda-Plan-ab", + "videoduration":86, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":7, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Vorschau-GB-stimmt-ueber-Ruanda-Plan-ab\/15602652", + "share_subject":"Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602652" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055562" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055562" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602652\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916759" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602652\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602652\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/064e6d41fa0ba36658c2178f6f012a0c82bacaba.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/064e6d41fa0ba36658c2178f6f012a0c82bacaba.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916759, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7a2bf633c9d318e70ca3751f335735ec82f088af.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/b0542115d26d84ba37ede07a7df767818aa0f2e3.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1e97c1de7a5d1f53e439429efe3ea495dee0195a.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/db99b5a96da0eca41134e9f83f22dca89002e0e3.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2df12e52f03e5cd2a01d4d72abef19380ffefa20.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916759" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058568" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058569" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058570" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058572" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058571" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2df12e52f03e5cd2a01d4d72abef19380ffefa20.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/b0542115d26d84ba37ede07a7df767818aa0f2e3.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/db99b5a96da0eca41134e9f83f22dca89002e0e3.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7a2bf633c9d318e70ca3751f335735ec82f088af.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1e97c1de7a5d1f53e439429efe3ea495dee0195a.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602652, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab", + "description":"Die britische Regierung h\u00e4lt weiter an den umstrittenen Pl\u00e4nen zur Abschiebung von Gefl\u00fcchteten nach Ruanda fest. Das Oberhaus stimmt am Mittwoch in London erneut \u00fcber das Gesetz ab. ORF-Korrespondent J\u00f6rg Winter berichtet.", + "duration":86640, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055562_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/fe7855ff8cda69eedfdd438291b43863\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/aa34c12f49cf3d82bc6bc2e066cba9db\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/6a7411125c41f5aa3260e212ea081a11\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/dd202bc4b4233efabeabbf199966c39f\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Vorschau--GB-st__14218665__o__2067855260__s15602652_2__ORF2HD_13094104P_13110720P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":7, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2df12e52f03e5cd2a01d4d72abef19380ffefa20.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/b0542115d26d84ba37ede07a7df767818aa0f2e3.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/db99b5a96da0eca41134e9f83f22dca89002e0e3.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7a2bf633c9d318e70ca3751f335735ec82f088af.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1e97c1de7a5d1f53e439429efe3ea495dee0195a.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"fa1958e3afedace596d328e7964f969f" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:78799,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=78799&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Im Jahr 2023 sind mehr als 1.300 entsprechende Rassismus-Vorf\u00e4lle in \u00d6sterreich gemeldet worden. Das hat der Verein ZARA - f\u00fcr Zivilcourage und Anti-Rassismus-Arbeit am Mittwoch im Rahmen seines j\u00e4hrlichen Reports bekanntgegeben.", + "drm_token":null, + "duration_as_string":"01:18 Min.", + "duration_seconds":78, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1OA==", + "episode_id":14218665, + "exact_duration":78799, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich", + "id":15602658, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:22.175", + "end_time":"00:01:18.799" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602658, + "videopartid":"9_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_2023-Ueber-1-300-Vorfaelle-von-Rassismus-in-Oesterreich", + "videoduration":78, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":true, + "position":8, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/2023-Ueber-1-300-Vorfaelle-von-Rassismus-in-Oesterreich\/15602658", + "share_subject":"2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":false, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602658" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055563" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055563" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602658\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916760" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602658\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602658\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/da01d443cfbe521249ca900bc39bad4ad8489ee9.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/da01d443cfbe521249ca900bc39bad4ad8489ee9.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916760, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bd778dae2301f4f64bfff9a7a3bcf5cb7d993576.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/0682e8be668ffbdc1a1bafb118ea11b85c4c822d.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/8250ce8c1d688d56fbc068137cab52f72816bb6d.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/02f38f0350680129eb76169f74aca2d713fba7b3.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bee21c9b02d21601a283b080bf3aba2865d5cc72.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916760" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058573" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058574" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058575" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058577" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058576" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bee21c9b02d21601a283b080bf3aba2865d5cc72.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/0682e8be668ffbdc1a1bafb118ea11b85c4c822d.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/02f38f0350680129eb76169f74aca2d713fba7b3.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bd778dae2301f4f64bfff9a7a3bcf5cb7d993576.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/8250ce8c1d688d56fbc068137cab52f72816bb6d.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602658, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich", + "description":"Im Jahr 2023 sind mehr als 1.300 entsprechende Rassismus-Vorf\u00e4lle in \u00d6sterreich gemeldet worden. Das hat der Verein ZARA - f\u00fcr Zivilcourage und Anti-Rassismus-Arbeit am Mittwoch im Rahmen seines j\u00e4hrlichen Reports bekanntgegeben.", + "duration":78799, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055563_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/b9e2ffae5dc4bd32f74c8c75dabc196d\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/326d805df888aaa1c2604ae09966be20\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/0c8bcb85eeb9d2e6becb7660acc953aa\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/85a6d4b8ff8846d116d49f3ef1ea5127\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_2023--Ueber-1-3__14218665__o__7688698906__s15602658_8__ORF2HD_13110720P_13122615P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":8, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bee21c9b02d21601a283b080bf3aba2865d5cc72.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/0682e8be668ffbdc1a1bafb118ea11b85c4c822d.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/02f38f0350680129eb76169f74aca2d713fba7b3.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/bd778dae2301f4f64bfff9a7a3bcf5cb7d993576.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/8250ce8c1d688d56fbc068137cab52f72816bb6d.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"5a01728b71273d5766355a9506caccc5" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:96906,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=96906&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"In den ersten drei Monaten diese Jahres wurden in \u00d6sterreich rund 1.700 Firmenpleiten gez\u00e4hlt, so der Kreditschutzverband von 1870. Das ist um ein Viertel mehr als im Vorjahr und damit auch das insolvenzreichste Quartal seit 2009.", + "drm_token":null, + "duration_as_string":"01:36 Min.", + "duration_seconds":96, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1Mw==", + "episode_id":14218665, + "exact_duration":96906, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Rekordhoch bei Insolvenzen", + "id":15602653, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:40.255", + "end_time":"00:01:36.906" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602653, + "videopartid":"10_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Rekordhoch-bei-Insolvenzen", + "videoduration":96, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":9, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Rekordhoch-bei-Insolvenzen\/15602653", + "share_subject":"Rekordhoch bei Insolvenzen - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Rekordhoch bei Insolvenzen", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602653" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055564" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055564" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602653\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916761" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602653\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602653\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/0c2fd25763520dd45337a914e492cfc9070cdd37.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/0c2fd25763520dd45337a914e492cfc9070cdd37.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916761, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/6c0ce3e7e5ce5e8d7e05df4ba0d4746630248cf6.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/0420066f8759f2236b28a68dc0f6f3b235d9594d.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ea75c1bfe2c3fdd3c08cfb45a05f0eb8a8afcd53.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/8401ca2abf3e54f292a0ee133b53b264007e3d25.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e3c78c35c9f4cf70be589b8aac9d6da9f239853d.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916761" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058578" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058579" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058580" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058582" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058581" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e3c78c35c9f4cf70be589b8aac9d6da9f239853d.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/0420066f8759f2236b28a68dc0f6f3b235d9594d.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/8401ca2abf3e54f292a0ee133b53b264007e3d25.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/6c0ce3e7e5ce5e8d7e05df4ba0d4746630248cf6.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ea75c1bfe2c3fdd3c08cfb45a05f0eb8a8afcd53.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602653, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Rekordhoch bei Insolvenzen", + "description":"In den ersten drei Monaten diese Jahres wurden in \u00d6sterreich rund 1.700 Firmenpleiten gez\u00e4hlt, so der Kreditschutzverband von 1870. Das ist um ein Viertel mehr als im Vorjahr und damit auch das insolvenzreichste Quartal seit 2009.", + "duration":96906, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055564_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/cc987d4e1b8a8bdb5df96c009bfc74ce\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/7d49805c1c37e6798873450cbc4fee19\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/936694bf0e3e2491d96518f3eb88f22d\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/f81aca370510ef06d58c948030d23f8b\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Rekordhoch-bei-__14218665__o__2030892406__s15602653_3__ORF2HD_13122615P_13140312P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":9, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/e3c78c35c9f4cf70be589b8aac9d6da9f239853d.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/0420066f8759f2236b28a68dc0f6f3b235d9594d.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/8401ca2abf3e54f292a0ee133b53b264007e3d25.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/6c0ce3e7e5ce5e8d7e05df4ba0d4746630248cf6.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ea75c1bfe2c3fdd3c08cfb45a05f0eb8a8afcd53.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"ce1d1703522f27577a82368e4f6f5fce" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:40203,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=40203&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"F\u00fcr die Abwicklung der Luxus-Immobiliensparte von Signa Prime wird derzeit dringend Geld gesucht. Ein britisch-amerikanischer Investor k\u00f6nnte jetzt Prime einen Kredit liefern.", + "drm_token":null, + "duration_as_string":"00:40 Sek.", + "duration_seconds":40, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjczMQ==", + "episode_id":14218665, + "exact_duration":40203, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Kredit f\u00fcr Signa-Immobiliensparte in Aussicht?", + "id":15602731, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602731, + "videopartid":"11_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Kredit-fuer-Signa-Immobiliensparte-in-Aussicht", + "videoduration":40, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":10, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Kredit-fuer-Signa-Immobiliensparte-in-Aussicht\/15602731", + "share_subject":"Kredit f\u00fcr Signa-Immobiliensparte in Aussicht? - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Kredit f\u00fcr Signa-Immobiliensparte in Aussicht?", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602731" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055565" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055565" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602731\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916762" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602731\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602731\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/135580fe0e7ca581ed6b8e84b930c6ab614c6405.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/135580fe0e7ca581ed6b8e84b930c6ab614c6405.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916762, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1b6524e0032b544d7a04a8cd065aa6e9ab7a6457.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ff422ad933061e3a08033083609ffe7c5ce996aa.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c55c689833612d424ba86afcdac3e0db656fa544.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2a6fc509328206ea1ae688f038e22a8c70d4cf33.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c5fc3c7cb6416aea04560e1ebcf95d8a36e88e3c.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916762" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058583" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058584" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058585" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058587" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058586" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c5fc3c7cb6416aea04560e1ebcf95d8a36e88e3c.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ff422ad933061e3a08033083609ffe7c5ce996aa.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2a6fc509328206ea1ae688f038e22a8c70d4cf33.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1b6524e0032b544d7a04a8cd065aa6e9ab7a6457.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c55c689833612d424ba86afcdac3e0db656fa544.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602731, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Kredit f\u00fcr Signa-Immobiliensparte in Aussicht?", + "description":"F\u00fcr die Abwicklung der Luxus-Immobiliensparte von Signa Prime wird derzeit dringend Geld gesucht. Ein britisch-amerikanischer Investor k\u00f6nnte jetzt Prime einen Kredit liefern.", + "duration":40203, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055565_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/c96ecceb37c6e146c3f94c7a09ebfd23\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/bc72abbebad38e354bc83e724631c4bf\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/c504561427ab548fc85acfa92886eb69\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/525e003d8f8e8401e4e483cddca2f340\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Kredit-fuer-Sig__14218665__o__1907867888__s15602731_1__ORF2HD_13140312P_13144317P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":10, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c5fc3c7cb6416aea04560e1ebcf95d8a36e88e3c.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/ff422ad933061e3a08033083609ffe7c5ce996aa.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2a6fc509328206ea1ae688f038e22a8c70d4cf33.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1b6524e0032b544d7a04a8cd065aa6e9ab7a6457.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c55c689833612d424ba86afcdac3e0db656fa544.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"3969f350cf371f2561d3e5b6871f45f5" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:88637,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=88637&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Japans Notenbank hat am Dienstag das erste Mal seit 17 Jahren den Leitzins erh\u00f6ht. Mit der Steigerung von 0,1 Prozent beendet Japan damit die Negativzinspolitik.", + "drm_token":null, + "duration_as_string":"01:28 Min.", + "duration_seconds":88, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1NA==", + "episode_id":14218665, + "exact_duration":88637, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Japan beendet Negativzinspolitik", + "id":15602654, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:26.798", + "end_time":"00:01:28.637" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602654, + "videopartid":"12_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Japan-beendet-Negativzinspolitik", + "videoduration":88, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":11, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Japan-beendet-Negativzinspolitik\/15602654", + "share_subject":"Japan beendet Negativzinspolitik - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Japan beendet Negativzinspolitik", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602654" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055566" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055566" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602654\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916763" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602654\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602654\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/5da39c08a7d5fd353fd2368c394551e2a69e71e3.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/5da39c08a7d5fd353fd2368c394551e2a69e71e3.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916763, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7b30e4cac5ac5fc785ed151f94f19bfa83df8488.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/459cccd97c9fe35b40f9dd1d7b6a4ac1a48a32ab.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/984ad946618e2fae2d630977466bfcbba0f0847b.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/777d5e239684bd0c85cdac14165409f13a086178.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7bf20303092532b7218a1d5bb25673e7c7388d3d.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916763" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058588" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058589" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058590" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058592" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058591" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7bf20303092532b7218a1d5bb25673e7c7388d3d.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/459cccd97c9fe35b40f9dd1d7b6a4ac1a48a32ab.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/777d5e239684bd0c85cdac14165409f13a086178.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7b30e4cac5ac5fc785ed151f94f19bfa83df8488.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/984ad946618e2fae2d630977466bfcbba0f0847b.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602654, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Japan beendet Negativzinspolitik", + "description":"Japans Notenbank hat am Dienstag das erste Mal seit 17 Jahren den Leitzins erh\u00f6ht. Mit der Steigerung von 0,1 Prozent beendet Japan damit die Negativzinspolitik.", + "duration":88637, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055566_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/80d0335897238ac58ef520ab878c4ee5\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/253beace5b4ae9caed675e78a7156e5b\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/352509b78c185fcde30070596c4d1784\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/93614e59376607fe1e501781d0b01b36\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Japan-beendet-N__14218665__o__3574128596__s15602654_4__ORF2HD_13144317P_13161208P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":11, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7bf20303092532b7218a1d5bb25673e7c7388d3d.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/459cccd97c9fe35b40f9dd1d7b6a4ac1a48a32ab.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/777d5e239684bd0c85cdac14165409f13a086178.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7b30e4cac5ac5fc785ed151f94f19bfa83df8488.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/984ad946618e2fae2d630977466bfcbba0f0847b.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"77cf7568bedf74842fb76a65c2eb5d35" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:80452,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=80452&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Der EU-weite j\u00e4hrliche Abwasseranalyse zeigt, dass die beliebtesten Drogen in \u00d6sterreich weiterhin Alkohol und Zigaretten sind. Bei den illegalen Substanzen liegen Cannabis und Kokain vorne.", + "drm_token":null, + "duration_as_string":"01:20 Min.", + "duration_seconds":80, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjczMg==", + "episode_id":14218665, + "exact_duration":80452, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Alkohol und Zigaretten bleiben beliebteste Drogen", + "id":15602732, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:21.200", + "end_time":"00:01:20.452" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602732, + "videopartid":"13_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Alkohol-und-Zigaretten-bleiben-beliebteste-Drogen", + "videoduration":80, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":12, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Alkohol-und-Zigaretten-bleiben-beliebteste-Drogen\/15602732", + "share_subject":"Alkohol und Zigaretten bleiben beliebteste Drogen - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Alkohol und Zigaretten bleiben beliebteste Drogen", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602732" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055567" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055567" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602732\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916764" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602732\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602732\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/50f200ba8da540db52d8eff94d9477f2c75a7445.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/50f200ba8da540db52d8eff94d9477f2c75a7445.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916764, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2a74ebc04549902a616e46d3aa413c5b120a24fd.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d0f431b49f783169564815795209867b4b3f7424.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/b1fa8b6f2f2f06dc48f16ecfe9cd61b869f49ee2.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a1d3d8e37a60b85dcbe75a44cb941e2b875185bd.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/91686f30aa12a0b529e38e70d8634a58c7138341.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916764" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058593" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058594" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058595" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058597" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058596" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/91686f30aa12a0b529e38e70d8634a58c7138341.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d0f431b49f783169564815795209867b4b3f7424.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a1d3d8e37a60b85dcbe75a44cb941e2b875185bd.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2a74ebc04549902a616e46d3aa413c5b120a24fd.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/b1fa8b6f2f2f06dc48f16ecfe9cd61b869f49ee2.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602732, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Alkohol und Zigaretten bleiben beliebteste Drogen", + "description":"Der EU-weite j\u00e4hrliche Abwasseranalyse zeigt, dass die beliebtesten Drogen in \u00d6sterreich weiterhin Alkohol und Zigaretten sind. Bei den illegalen Substanzen liegen Cannabis und Kokain vorne.", + "duration":80452, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055567_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/244c8ffac29ac31768bca1f4e4dd5269\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/8630cdc9787aa5282572fbb0e7b43b77\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/04d4d3b31a8fb3fec971746a0e6862ce\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/3c4644be3c01354d90d49650198091bb\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Alkohol-und-Zig__14218665__o__1186331736__s15602732_2__ORF2HD_13161208P_13173220P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":12, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/91686f30aa12a0b529e38e70d8634a58c7138341.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d0f431b49f783169564815795209867b4b3f7424.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/a1d3d8e37a60b85dcbe75a44cb941e2b875185bd.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/2a74ebc04549902a616e46d3aa413c5b120a24fd.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/b1fa8b6f2f2f06dc48f16ecfe9cd61b869f49ee2.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"f106c90ceba8b3b4292029dbdc6d6a8b" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:78682,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=78682&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Eine Ausstellung im Wiener Architekturzentrum stellt ab Dienstag den so genannten Overtourism in den Mittelpunkt - die Schattenseite einer Branche, die auf ihrer Sonnenseite aber Wohlstand viele Arbeitspl\u00e4tze gebracht hat.", + "drm_token":null, + "duration_as_string":"01:18 Min.", + "duration_seconds":78, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1Ng==", + "episode_id":14218665, + "exact_duration":78682, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Schau \u00fcber Overtourism im Architekturzentrum Wien", + "id":15602656, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + { + "start_time":"00:00:19.501", + "end_time":"00:01:18.682" + } + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602656, + "videopartid":"14_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Schau-ueber-Overtourism-im-Architekturzentrum-Wien", + "videoduration":78, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":13, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Schau-ueber-Overtourism-im-Architekturzentrum-Wien\/15602656", + "share_subject":"Schau \u00fcber Overtourism im Architekturzentrum Wien - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Schau \u00fcber Overtourism im Architekturzentrum Wien", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P", + "video_stream_url":null, + "video_type":"segment", + "voez":true, + "voez_ads_allowed":true, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602656" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055568" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055568" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602656\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916765" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602656\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602656\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/9cdead020865af7795cc46d88066ee4326733730.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/9cdead020865af7795cc46d88066ee4326733730.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916765, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5e9891d42c64e26dccb438e68f8859db73505913.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/3d567bfc645827dbdfc0e6ad29b62b347f4b18f1.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9e5b7953edcb3ba19460b547d5aa5d4d606ff545.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/07de092555700fb02afb073e1d36f60e68f43e7a.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c7769bfe6658ade8ec77d813c86951004687bee0.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916765" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058598" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058599" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058600" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058602" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058601" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c7769bfe6658ade8ec77d813c86951004687bee0.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/3d567bfc645827dbdfc0e6ad29b62b347f4b18f1.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/07de092555700fb02afb073e1d36f60e68f43e7a.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5e9891d42c64e26dccb438e68f8859db73505913.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9e5b7953edcb3ba19460b547d5aa5d4d606ff545.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602656, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Schau \u00fcber Overtourism im Architekturzentrum Wien", + "description":"Eine Ausstellung im Wiener Architekturzentrum stellt ab Dienstag den so genannten Overtourism in den Mittelpunkt - die Schattenseite einer Branche, die auf ihrer Sonnenseite aber Wohlstand viele Arbeitspl\u00e4tze gebracht hat.", + "duration":78682, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055568_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/f27e864871d9c5e8fd1ff7ce190835a1\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/ed1b6dfd95889099199a8f18cf04f5ee\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/362cf564354bc85431d304cfd0af4af0\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/fcf21fef8883785edef7a7afb0574c83\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Schau-ueber-Ove__14218665__o__2560660965__s15602656_6__ORF2HD_13173220P_13185112P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":13, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c7769bfe6658ade8ec77d813c86951004687bee0.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/3d567bfc645827dbdfc0e6ad29b62b347f4b18f1.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/07de092555700fb02afb073e1d36f60e68f43e7a.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5e9891d42c64e26dccb438e68f8859db73505913.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9e5b7953edcb3ba19460b547d5aa5d4d606ff545.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"a61a219ab3a0ab367fdff7e005242b69" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:34723,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=34723&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Ein Hinweis auf die Sendung \"Aktuell nach eins\".", + "drm_token":null, + "duration_as_string":"00:34 Sek.", + "duration_seconds":34, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1Nw==", + "episode_id":14218665, + "exact_duration":34723, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Hinweis auf \"Aktuell nach eins\"", + "id":15602657, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602657, + "videopartid":"15_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Hinweis-auf-Aktuell-nach-eins", + "videoduration":34, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":14, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Hinweis-auf-Aktuell-nach-eins\/15602657", + "share_subject":"Hinweis auf \"Aktuell nach eins\" - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Hinweis auf \"Aktuell nach eins\"", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P", + "video_stream_url":null, + "video_type":"segment", + "voez":false, + "voez_ads_allowed":false, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602657" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055569" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055569" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602657\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916766" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602657\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602657\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/7cc163891a5aa93dbb42ea7f31179b5474a9e549.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/7cc163891a5aa93dbb42ea7f31179b5474a9e549.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916766, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c8225391ae851c0bb45ec3f415cf67080fe0df25.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/f2b017f79c155ee04e05e48c258b4a0f0e14862e.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7d5a176ab1f7cf830136f2d0449e2eeb948d0c6a.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/315224dd80f5c3281aa76c2193eb6e17a815727e.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/fa805da816dc89ce9e91f3c4ee4f8668a4d2cf89.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916766" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058603" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058604" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058605" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058607" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058606" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/fa805da816dc89ce9e91f3c4ee4f8668a4d2cf89.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/f2b017f79c155ee04e05e48c258b4a0f0e14862e.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/315224dd80f5c3281aa76c2193eb6e17a815727e.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c8225391ae851c0bb45ec3f415cf67080fe0df25.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7d5a176ab1f7cf830136f2d0449e2eeb948d0c6a.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602657, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Hinweis auf \"Aktuell nach eins\"", + "description":"Ein Hinweis auf die Sendung \"Aktuell nach eins\".", + "duration":34723, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055569_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/d8872af5d4e0af2d6c0c3b66269b7949\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/5dfdc935bdc99d0944379be52c3bfa8d\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/40134fdd59ed23e2f3c4dd4df27cce07\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/cb49c49a2bc06243aa5be74912265f9a\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Hinweis-auf--Ak__14218665__o__1865954206__s15602657_7__ORF2HD_13185112P_13192605P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":14, + "last_segment":false, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/fa805da816dc89ce9e91f3c4ee4f8668a4d2cf89.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/f2b017f79c155ee04e05e48c258b4a0f0e14862e.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/315224dd80f5c3281aa76c2193eb6e17a815727e.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/c8225391ae851c0bb45ec3f415cf67080fe0df25.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/7d5a176ab1f7cf830136f2d0449e2eeb948d0c6a.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"d98a72126151f16afc0563dce5549830" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + }, + { + "adition_advertising_query_string":"stype:vod,scat:zib-information,scatid:2703825,spro:zib-1300,sproid:71280,episodeid:14218665,duration:13522,advertisingtags:", + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + }, + "vod":{ + "web":{ + "sb":4423852, + "tbar":4423851, + "pre":4423862, + "post":4423861 + }, + "mob":{ + "par":4423850, + "pre":4423858, + "post":4423857 + }, + "app":{ + "par":4423849, + "pre":4423856, + "post":4423855 + }, + "smart":{ + "pre":4423860, + "post":4423859, + "lane":4423853, + "bar":4423854 + } + } + }, + "advertising_query_string":"stype=vod&scat=zib-information&scatid=2703825&spro=zib-1300&sproid=71280&episodeid=14218665&duration=13522&advertisingtags=", + "blackfades":[ + + ], + "episode_date":"2024-03-20T13:00:00+01:00", + "date_as_string":"Mi, 20.3.2024", + "vod_ressort":null, + "description":"Wohnbaupaket passiert Nationalrat | ORF-Analyse: Details zum Wohnbaupaket | Neue Lehrerausbildung kommt ein Jahr sp\u00e4ter | Agrarprodukte aus Ukraine werden wieder verzollt | ORF-Analyse: Z\u00f6lle auf Landwirtschaftsg\u00fcter aus Ukraine | London: Zweiter Anlauf f\u00fcr \"Ruanda-Plan\" | Vorschau: GB stimmt \u00fcber \"Ruanda-Plan\" ab | 2023: \u00dcber 1.300 Vorf\u00e4lle von Rassismus in \u00d6sterreich | Rekordhoch bei Insolvenzen | Kredit f\u00fcr Signa-Immobiliensparte in Aussicht? | Japan beendet Negativzinspolitik | Alkohol und Zigaretten bleiben beliebteste Drogen | Schau \u00fcber Overtourism im Architekturzentrum Wien | Hinweis auf \"Aktuell nach eins\"", + "drm_token":null, + "duration_as_string":"00:13 Sek.", + "duration_seconds":13, + "enabled":true, + "encrypted_id":"ODc4M2hqZDcyOTNrbWQxNTYwMjY1NQ==", + "episode_id":14218665, + "exact_duration":13522, + "genre_id":2703825, + "genre_title":"ZIB & Information", + "right":"worldwide", + "focus":false, + "show_countdown":true, + "has_thumbnail":true, + "headline":"Verabschiedung", + "id":15602655, + "is_archive":false, + "is_drm_protected":false, + "jump_mark":false, + "jump_marks":[ + + ], + "killdate_extern":"2024-04-19T13:00:00+02:00", + "killdate":"2024-04-19T13:00:00+02:00", + "livedate":"2024-03-20T13:00:00+01:00", + "livedate_extern":"2024-03-20T13:00:00+01:00", + "SSA":{ + "cliptype":"Sendung", + "videoid":15602655, + "videopartid":"16_16", + "videocategory":"ZIB-Information", + "videotitle":"ZIB-1300-vom-20-03-2024_Verabschiedung", + "videoduration":13, + "episodeduration":1177, + "episodeid":14218665, + "airdate":"2024-03-20T13:00:00+01:00", + "clipreleasetime":"2024-03-20T13:30:02+01:00", + "programname":"ZIB-1300", + "channel":"orf2" + }, + "disable_display_ads_orf_platforms":false, + "disable_instream_ads_orf_platforms":false, + "position":15, + "episodes_reference":"", + "share_body":"https:\/\/tvthek.orf.at\/profile\/ZIB-1300\/71280\/ZIB-1300-vom-20-03-2024\/14218665\/Verabschiedung\/15602655", + "share_subject":"Verabschiedung - ZIB 13:00 vom 20.03.2024 vom 20.03.2024 um 13:00 Uhr", + "show_display_ads":true, + "show_instream_ads":false, + "sources":{ + "hls":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ], + "dash":[ + { + "is_uhd":false, + "quality_key":"QXA", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_QXA.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + }, + { + "is_uhd":false, + "quality_key":"QXB", + "quality_description":"Adaptiv", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_QXB.mp4\/manifest.mpd", + "is_adaptive_stream":true, + "is_drm_protected":false + } + ] + }, + "state":"distributed", + "sub_headline":"ZIB 13:00", + "teaser_text":null, + "teaser_title":null, + "thumbnail_activated":true, + "thumbnail_distributed":true, + "thumbnail_folder":"cms-preview-clips", + "thumbnail_sources":{ + "hls":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "dash":[ + { + "quality_key":"Q6A", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key":"Q8C", + "src":"https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources":[ + + ], + "title":"Verabschiedung", + "updated_at":"2024-03-20T14:22:12+01:00", + "videobumper":{ + "prevideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + }, + "postvideobumper":{ + "active":false, + "sources":{ + "hls":[ + + ], + "progressive_download":[ + + ] + } + } + }, + "video_file_name":"2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P", + "video_stream_url":null, + "video_type":"segment", + "voez":false, + "voez_ads_allowed":false, + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602655" + }, + "episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14218665" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055570" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17055570" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602655\/links" + }, + "subtitle":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916767" + }, + "playlist":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602655\/playlist" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15602655\/tags" + }, + "profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/087fc921d9a0ecdc080d7f3324ce9d157c25efed.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/087fc921d9a0ecdc080d7f3324ce9d157c25efed.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "links":[ + + ], + "subtitle":{ + "id":916767, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9217b56489960d78df20975b75d552606979be07.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d249512cedd2ce453d5d95eac5db686c67903cb2.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5ab8c99ac1a63632929ed4e58672ae98897b3db4.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1f33b8e6a963c10c03a6a41447fe1ed413235ef7.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/10a4050b998bc5d1ca70cdcbfdc4aadb19063730.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916767" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058608" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058609" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058610" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058612" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058611" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/10a4050b998bc5d1ca70cdcbfdc4aadb19063730.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d249512cedd2ce453d5d95eac5db686c67903cb2.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1f33b8e6a963c10c03a6a41447fe1ed413235ef7.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9217b56489960d78df20975b75d552606979be07.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5ab8c99ac1a63632929ed4e58672ae98897b3db4.ttml" + } + } + } + } + }, + "playlist":{ + "id":15602655, + "episode_id":14218665, + "title_prefix":"", + "title_separator":"|", + "title":"Verabschiedung", + "description":null, + "duration":13522, + "preview_image_url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055570_segments_player.jpg", + "sources":[ + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtmp:\/\/apasfw.apa.at\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtmp" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"SMIL", + "quality_string":"Hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"rtsp:\/\/apasfw.apa.at:1935\/cms-worldwide\/mp4:2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"streaming", + "protocol":"rtsp" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q0A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q0A", + "quality_string":"Sehr niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q1A.3gp\/playlist.m3u8", + "is_uhd":false, + "quality":"Q1A", + "quality_string":"Niedrig", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q4A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q4A", + "quality_string":"Mittel", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q6A.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q6A", + "quality_string":"Hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q8C.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"Q8C", + "quality_string":"Sehr hoch", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_QXA.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXA", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "src":"https:\/\/apasfiis.sf.apa.at\/ipad\/cms-worldwide\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_QXB.mp4\/playlist.m3u8", + "is_uhd":false, + "quality":"QXB", + "quality_string":"Adaptiv", + "delivery":"hls", + "type":"video\/mp4", + "protocol":"http" + }, + { + "quality":"Q1A", + "quality_string":"Niedrig", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/f11d2bc8e5cf2ca177a0a73bcc88167b\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q1A.3gp", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q4A", + "quality_string":"Mittel", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/315eb7f57eaf50b9b575a056291c8d64\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q4A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q6A", + "quality_string":"Hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/d11b2d4c39356555957a5d2a0f0a4a0c\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q6A.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + }, + { + "quality":"Q8C", + "quality_string":"Sehr hoch", + "src":"https:\/\/apasfpd.sf.apa.at\/cms-worldwide\/online\/40a8bf5c91dac7a0d8b45b6d8166a10e\/1711321200\/2024-03-20_1300_tl_02_ZIB-13-00-vom-2_Verabschiedung__14218665__o__2057575109__s15602655_5__ORF2HD_13192605P_13193918P_Q8C.mp4", + "type":"video\/mp4", + "delivery":"progressive", + "protocol":"http" + } + ], + "position":15, + "last_segment":true, + "subtitles":[ + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/10a4050b998bc5d1ca70cdcbfdc4aadb19063730.xml", + "type":"xml", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d249512cedd2ce453d5d95eac5db686c67903cb2.srt", + "type":"srt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/1f33b8e6a963c10c03a6a41447fe1ed413235ef7.vtt", + "type":"vtt", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9217b56489960d78df20975b75d552606979be07.smi", + "type":"sami", + "lang":"de-AT" + }, + { + "src":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/5ab8c99ac1a63632929ed4e58672ae98897b3db4.ttml", + "type":"ttml", + "lang":"de-AT" + } + ], + "right":"worldwide", + "is_enabled":true, + "has_active_youthprotection":false, + "pre_bumper":{ + "active":false, + "sources":[ + + ] + }, + "post_bumper":{ + "active":false, + "sources":[ + + ] + }, + "hash":"01a61f76b97eed9148555dc016a3c9ca" + }, + "tags":[ + + ], + "profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":"", + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00", + "hide_in_letter_group":false, + "id":71280, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":false, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00", + "type":"temporary", + "updated_at":"2024-03-08T11:14:56+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16094554" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/71280\/advertising\/tags" + }, + "oegs_profile":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/thumb_16094554_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0161\/95\/c5f6f9dab90eec5160d9b26d90892dd37351db72.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":{ + "color":"#1C324C", + "id":9109687, + "name":"ZIB 13:00", + "updated_at":"2016-10-11T00:05:51+02:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/9109687" + }, + "header_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/838" + }, + "header_background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/837" + }, + "background_image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/836" + } + }, + "_embedded":{ + "header_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_838_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/375febcc02b958b11e4ad18fc780635bc78ff6f8.png" + } + } + }, + "header_background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_837_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/ff9dc981ae14db44df2bb0084bd7eb15f5debda0.png" + } + } + }, + "background_image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "header_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_image.png" + }, + "header_background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_header_background_image.png" + }, + "background_image":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/thumb_836_themes_background_image.png" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/themes\/0001\/01\/1e3aed2ccb61f2384a4c0144d052d8dd286d7797.png" + } + } + } + } + }, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + }, + { + "id":6552, + "title":"Mehr zur ZIB in tv.ORF.at", + "updated_at":"2015-01-19T10:26:37+01:00", + "url":"http:\/\/tv.orf.at\/zeitimbild\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/6552" + } + } + } + ], + "tags":[ + { + "id":15, + "name":"Zeit im Bild", + "updated_at":"2017-02-06T09:22:02+01:00" + } + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":{ + "audio_description":false, + "break_text":null, + "break_title":null, + "dataset_name":null, + "dds_identifier":"", + "description":"Der Nachrichten\u00fcberblick um 13.00 Uhr", + "has_active_youth_protection":false, + "has_youth_protection":false, + "headline":"ZIB 13:00 (\u00d6GS)", + "hide_in_letter_group":false, + "id":13891370, + "letter_group":"Z", + "livestream_sub_headline":null, + "oegs":true, + "oewa_base_path":"Redcont\/Nachrichten\/Nachrichtenueberblick", + "profile_website":null, + "secondary_genres":[ + + ], + "sub_headline":null, + "title":"ZIB 13:00 (\u00d6GS)", + "type":"temporary", + "updated_at":"2024-03-08T11:15:04+01:00", + "youth_protection_type":"limited-20-06", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image16x9_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14968339" + }, + "image2x3_with_logo":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "links":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/links" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episodes" + }, + "related_profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/related" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891370\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/thumb_14968339_profiles_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/profiles\/0150\/69\/1975e664b7234ae20b75d2dc304728b09ee8637e.jpeg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "theme":null, + "genre":{ + "id":2703825, + "advertising_mapping":{ + "live":{ + "web":{ + "sb":4420075, + "tbar":4420076, + "pre":4420077, + "post":4420078 + }, + "mob":{ + "par":4420079, + "pre":4420222, + "post":4420081 + }, + "app":{ + "par":4420082, + "pre":4420083, + "post":4420084 + }, + "smart":{ + "pre":4420085, + "post":4420086 + } + }, + "vod":{ + "web":{ + "sb":4420450, + "tbar":4420451, + "pre":4420452, + "post":4420453 + }, + "mob":{ + "par":4420454, + "pre":4420455, + "post":4420456 + }, + "app":{ + "par":4420457, + "pre":4420458, + "post":4420459 + }, + "smart":{ + "pre":4420460, + "post":4420461 + } + } + }, + "sorting":8, + "title":"ZIB & Information", + "updated_at":"2023-12-31T16:59:37+01:00", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825" + }, + "image":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/profiles" + }, + "episodes":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episodes" + }, + "latest_episode":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/episode\/latest" + }, + "tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/tags" + }, + "advertising_tags":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703825\/advertising\/tags" + } + }, + "_embedded":{ + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + } + }, + "tags":[ + + ], + "advertising_tags":[ + + ] + } + }, + "links":[ + { + "id":13913304, + "title":"Streaming-Highlights: Newsletter abonnieren", + "updated_at":"2024-01-03T12:42:39+01:00", + "url":"https:\/\/tvthek-newsletter.orf.at\/", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/link\/13913304" + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "audio_description_profile":null, + "oegs_profile":null + } + } + } + } + } + } + ], + "tags":[ + + ], + "advertising_tags":[ + + ], + "links":[ + + ], + "audio_description_episode":null, + "oegs_episode":null, + "image":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/fa2ad043ebf5be521c717d53238e959706386e1b.jpg" + } + } + }, + "image16x9_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_highlight_teaser.jpg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_player.jpg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_list.jpg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/thumb_17055555_segments_small.jpg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/segments\/0171\/56\/fa2ad043ebf5be521c717d53238e959706386e1b.jpg" + } + } + }, + "image2x3_with_logo":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "image2x3":{ + "dynamic_color":"#691f11", + "public_urls":{ + "highlight_teaser":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + } + }, + "subtitle":{ + "id":916751, + "parsed_at":null, + "sami_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9f7618ee5b9ab2a76d4b8d4b67ad15fbf9eab263.smi", + "srt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/fcbf22fd66a79d1f300deb5eeaaaa5e8917fd149.srt", + "stl_url":null, + "ttml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/69a0deabec546a7fb5fabc7ebb44e55a031987ac.ttml", + "updated_at":"2024-03-20T14:24:31+01:00", + "vtt_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/3fdbf52f138cb6a1e3141806c5a4256303fb6d83.vtt", + "xml_url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d2bdfc0d1317d7212a65ee35867747353b2ec00a.xml", + "_links":{ + "self":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/916751" + }, + "xml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058528" + }, + "srt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058529" + }, + "vtt_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058530" + }, + "sami_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058532" + }, + "ttml_file":{ + "href":"https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/17058531" + } + }, + "_embedded":{ + "xml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/d2bdfc0d1317d7212a65ee35867747353b2ec00a.xml" + } + } + }, + "stl_file":null, + "srt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/fcbf22fd66a79d1f300deb5eeaaaa5e8917fd149.srt" + } + } + }, + "vtt_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/3fdbf52f138cb6a1e3141806c5a4256303fb6d83.vtt" + } + } + }, + "sami_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/9f7618ee5b9ab2a76d4b8d4b67ad15fbf9eab263.smi" + } + } + }, + "ttml_file":{ + "public_urls":{ + "reference":{ + "url":"https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0171\/59\/69a0deabec546a7fb5fabc7ebb44e55a031987ac.ttml" + } + } + } + } + } + }, + "accompanying_videos":[ + + ] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/episodes_3.json b/src/test/resources/orfOn/episodes_3.json new file mode 100644 index 000000000..c76e047ba --- /dev/null +++ b/src/test/resources/orfOn/episodes_3.json @@ -0,0 +1,3111 @@ +{ + "page": 1, + "limit": 20, + "pages": 1, + "total": 3, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227\/episodes?page=1&limit=20" + }, + "first": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227\/episodes?page=1&limit=20" + }, + "last": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227\/episodes?page=1&limit=20" + } + }, + "_embedded": { + "items": [ + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14202095,duration:1549280,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=wischen-ist-macht&sproid=13891227&episodeid=14202095&duration=1549280&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-11-21T00:27:17+01:00", + "delete_date": "2024-05-28 00:27:17", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken im Fu\u00dfballstadion an", + "drm_token": null, + "duration_seconds": 1549, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAyMDk1", + "exact_duration": 1549280, + "field_descriptor": "", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "hds": [], + "smooth": [], + "dash": [] + }, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "Fu\u00dfball ist meine Religion", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14202095, + "is_archive": false, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2024-05-21T00:27:17+02:00", + "killdate": "2024-05-21T00:27:17+02:00", + "livedate": "2023-12-04T09:00:00+01:00", + "livedate_extern": "2023-12-04T09:00:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": false, + "production_country": null, + "production_year": 2019, + "profile_title": "Wischen ist Macht", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2023-11-21T00:54:01+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Fussball-ist-meine-Religion\/14202095", + "share_subject": "Wischen ist Macht: Fu\u00dfball ist meine Religion vom 21.11.2023 um 00:27 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Michelle und ihr Team r\u00fccken im Fu\u00dfballstadion an, wo sie auf Spieleragent und PR-Berater Mike Schuster treffen. Dieser ist gerade dabei kuwaitischen Scheichs seinen Sch\u00fctzling, den Star-Trainer Bernhard Sindelar, zu vermitteln. Valentin ist au\u00dfer sich: Sindelar ist die einzige Hoffnung f\u00fcr den \u00f6sterreichischen Fu\u00dfball, er kann doch jetzt nicht einfach sein Vaterland verlassen und in die W\u00fcste gehen. Daraufhin l\u00e4uft Valentin zur H\u00f6chstform auf, um diese Katastrophe noch zu verhindern. Auch Fernando und Mira sind ausnahmsweise \u00fcbermotiviert, und reiten Michelle nur noch in mehr Chaos hinein.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Dominik Warta (Mike Schuster) u.a.\r\nBildquelle: ORF\/Hubert Mican", + "teaser_title": "Fu\u00dfball ist meine Religion", + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Fu\u00dfball ist meine Religion", + "type": "default", + "updated_at": "2023-12-28T10:22:16+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198091" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198091" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16491434" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198092" + }, + "subtitle": { + "href": "http:\/\/localhost:0000\/api\/v4.3\/subtitle\/868782" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/363673" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": "f9a36691-7bd7-4c36-9009-a0b9d7009b29", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/f9a36691-7bd7-4c36-9009-a0b9d7009b29\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1180, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 1", + "reel": "orf1", + "updated_at": "2023-01-19T10:03:53+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457917" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457918" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + } + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14202095,duration:1549280,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=wischen-ist-macht&sproid=13891227&episodeid=14202095&duration=1549280&advertisingtags=", + "blackfades": [], + "episode_date": "2023-11-21T00:27:17+01:00", + "date_as_string": "Di, 21.11.2023", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken im Fu\u00dfballstadion an, wo sie auf Spieleragent und PR-Berater Mike Schuster treffen. Dieser ist gerade dabei kuwaitischen Scheichs seinen Sch\u00fctzling, den Star-Trainer Bernhard Sindelar, zu vermitteln. Valentin ist au\u00dfer sich: Sindelar ist die einzige Hoffnung f\u00fcr den \u00f6sterreichischen Fu\u00dfball, er kann doch jetzt nicht einfach sein Vaterland verlassen und in die W\u00fcste gehen. Daraufhin l\u00e4uft Valentin zur H\u00f6chstform auf, um diese Katastrophe noch zu verhindern. Auch Fernando und Mira sind ausnahmsweise \u00fcbermotiviert, und reiten Michelle nur noch in mehr Chaos hinein.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Dominik Warta (Mike Schuster) u.a.\r\nBildquelle: ORF\/Hubert Mican", + "drm_token": null, + "duration_as_string": "25:49 Min.", + "duration_seconds": 1549, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUxMTI4Mw==", + "episode_id": 14202095, + "exact_duration": 1549280, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Fu\u00dfball ist meine Religion", + "id": 15511283, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:17+02:00", + "killdate": "2024-05-21T00:27:17+02:00", + "livedate": "2023-12-04T09:00:00+01:00", + "livedate_extern": "2023-12-04T09:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15511283, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Fussball-ist-meine-Religion", + "videoduration": 1549, + "episodeduration": 1549, + "episodeid": 14202095, + "airdate": "2023-12-04T09:00:00+01:00", + "clipreleasetime": "2023-11-21T00:54:01+01:00", + "programname": "Wischen-ist-Macht", + "channel": "orf1" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Fussball-ist-meine-Religion\/14202095\/Wischen-ist-Macht-Fussball-ist-meine-Religion\/15511283", + "share_subject": "Wischen ist Macht: Fu\u00dfball ist meine Religion - Wischen ist Macht: Fu\u00dfball ist meine Religion vom 21.11.2023 um 00:27 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Serie", + "teaser_text": null, + "teaser_title": "Fu\u00dfball ist meine Religion", + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Fu\u00dfball ist meine Religion", + "updated_at": "2023-12-21T12:39:14+01:00", + "videobumper": { + "prevideobumper": { + "active": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "progressive_download": [ + { + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/ba2a1bdaacc038a639cad81822ecd944\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp", + "isUHD": false + }, + { + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/83430d26ced4b4946dfbf6825bfc45ed\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp", + "isUHD": false + }, + { + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/09e1ed74ceb3a5e54a0554990322518d\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4", + "isUHD": false + }, + { + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/92684dbf40f2b5655f42cf277593059e\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4", + "isUHD": false + }, + { + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/b951b3017b443041757961cb884fd113\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4", + "isUHD": false + } + ] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2023-11-21_0027_in_01_Wischen-ist-Mac_____14202095__o__7468851165__s15511283", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511283" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202095" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198091" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198091" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16491434" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198092" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511283\/links" + }, + "subtitle": { + "href": "http:\/\/localhost:0000\/api\/v4.3\/subtitle\/868782" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511283\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511283\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/cadec2cde29b07c068eeb737801016b9d24d52ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/cadec2cde29b07c068eeb737801016b9d24d52ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/dd88dc4ced488fe2559899ed6391f92cf3cdd709.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/60e62f3562c30c9c3b20a522263ae9308f0b259d.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/cadec2cde29b07c068eeb737801016b9d24d52ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198091_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/cadec2cde29b07c068eeb737801016b9d24d52ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/dd88dc4ced488fe2559899ed6391f92cf3cdd709.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198092_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/60e62f3562c30c9c3b20a522263ae9308f0b259d.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14202094,duration:1332280,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=wischen-ist-macht&sproid=13891227&episodeid=14202094&duration=1332280&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-11-21T00:04:21+01:00", + "delete_date": "2024-05-28 00:04:21", + "vod_ressort": null, + "description": "Dass Ex-Rockstar Johnny Woody gerade seinen Abgang ins Jenseits plant, passt Michelle gar nicht in den Kram - hat er ihr doch immer noch nicht die ausstehenden Honorare \u00fcberwiesen. Johnny f\u00e4ngt sich jedoch wieder und \"Dreck:Weg.Sendracek\" treten ihren Dienst an. Bei der Arbeit findet Michelle heraus, dass Johnny eine 10.000 Dollar-Gitarre besitzt und er vielleicht doch nicht so knapp bei Kasse ist, woraufhin sie einen Plan schmiedet. Dann aber wird Michelle in die Beziehungskrise zwischen Johnny und seine Freundin Pamela hineingezogen, w\u00e4hrend seine Frau Janis gewohnt alkoholisiert durchs Haus geistert.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Wolfram Berger (Johnny), Eva Maria Marold (Janis), Doris Hindinger (Pamela), Helmut Bohatsch (Bertram) u.a.\r\nBildquelle: ORF\/Fabio Eppensteiner", + "drm_token": null, + "duration_seconds": 1332, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAyMDk0", + "exact_duration": 1332280, + "field_descriptor": "", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "hds": [], + "smooth": [], + "dash": [] + }, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "Shit Happens", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14202094, + "is_archive": false, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2024-05-21T00:04:21+02:00", + "killdate": "2024-05-21T00:04:21+02:00", + "livedate": "2023-12-04T09:00:00+01:00", + "livedate_extern": "2023-12-04T09:00:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": false, + "production_country": null, + "production_year": 2019, + "profile_title": "Wischen ist Macht", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2023-11-21T00:28:01+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Shit-Happens\/14202094", + "share_subject": "Wischen ist Macht: Shit Happens vom 21.11.2023 um 00:04 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Wischen ist Macht", + "teaser_text": "Dass Ex-Rockstar Johnny Woody gerade seinen Abgang ins Jenseits plant, passt Michelle gar nicht in den Kram - hat er ihr doch immer noch nicht die ausstehenden Honorare \u00fcberwiesen. Johnny f\u00e4ngt sich jedoch wieder und \"Dreck:Weg.Sendracek\" treten ihren Dienst an. Bei der Arbeit findet Michelle heraus, dass Johnny eine 10.000 Dollar-Gitarre besitzt und er vielleicht doch nicht so knapp bei Kasse ist, woraufhin sie einen Plan schmiedet. Dann aber wird Michelle in die Beziehungskrise zwischen Johnny und seine Freundin Pamela hineingezogen, w\u00e4hrend seine Frau Janis gewohnt alkoholisiert durchs Haus geistert.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Wolfram Berger (Johnny), Eva Maria Marold (Janis), Doris Hindinger (Pamela), Helmut Bohatsch (Bertram) u.a.\r\nBildquelle: ORF\/Fabio Eppensteiner", + "teaser_title": "Shit Happens", + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Shit Happens", + "type": "default", + "updated_at": "2023-12-28T10:24:40+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198089" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198089" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16491434" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198090" + }, + "subtitle": { + "href": "http:\/\/localhost:0000\/api\/v4.3\/subtitle\/868782" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/363672" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": "f9a36691-7bd7-4c36-9009-a0b9d7009b29", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/f9a36691-7bd7-4c36-9009-a0b9d7009b29\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1180, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 1", + "reel": "orf1", + "updated_at": "2023-01-19T10:03:53+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457917" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457918" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + } + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14202094,duration:1332280,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=wischen-ist-macht&sproid=13891227&episodeid=14202094&duration=1332280&advertisingtags=", + "blackfades": [], + "episode_date": "2023-11-21T00:04:21+01:00", + "date_as_string": "Di, 21.11.2023", + "vod_ressort": null, + "description": "Dass Ex-Rockstar Johnny Woody gerade seinen Abgang ins Jenseits plant, passt Michelle gar nicht in den Kram - hat er ihr doch immer noch nicht die ausstehenden Honorare \u00fcberwiesen. Johnny f\u00e4ngt sich jedoch wieder und \"Dreck:Weg.Sendracek\" treten ihren Dienst an. Bei der Arbeit findet Michelle heraus, dass Johnny eine 10.000 Dollar-Gitarre besitzt und er vielleicht doch nicht so knapp bei Kasse ist, woraufhin sie einen Plan schmiedet. Dann aber wird Michelle in die Beziehungskrise zwischen Johnny und seine Freundin Pamela hineingezogen, w\u00e4hrend seine Frau Janis gewohnt alkoholisiert durchs Haus geistert.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Wolfram Berger (Johnny), Eva Maria Marold (Janis), Doris Hindinger (Pamela), Helmut Bohatsch (Bertram) u.a.\r\nBildquelle: ORF\/Fabio Eppensteiner", + "drm_token": null, + "duration_as_string": "22:12 Min.", + "duration_seconds": 1332, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUxMTI4Mg==", + "episode_id": 14202094, + "exact_duration": 1332280, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Shit Happens", + "id": 15511282, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:04:21+02:00", + "killdate": "2024-05-21T00:04:21+02:00", + "livedate": "2023-12-04T09:00:00+01:00", + "livedate_extern": "2023-12-04T09:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15511282, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Shit-Happens", + "videoduration": 1332, + "episodeduration": 1332, + "episodeid": 14202094, + "airdate": "2023-12-04T09:00:00+01:00", + "clipreleasetime": "2023-11-21T00:28:01+01:00", + "programname": "Wischen-ist-Macht", + "channel": "orf1" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Shit-Happens\/14202094\/Wischen-ist-Macht-Shit-Happens\/15511282", + "share_subject": "Wischen ist Macht: Shit Happens - Wischen ist Macht: Shit Happens vom 21.11.2023 um 00:04 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Wischen ist Macht", + "teaser_text": null, + "teaser_title": "Shit Happens", + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Shit Happens", + "updated_at": "2023-12-21T12:21:58+01:00", + "videobumper": { + "prevideobumper": { + "active": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "progressive_download": [ + { + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/ba2a1bdaacc038a639cad81822ecd944\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp", + "isUHD": false + }, + { + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/83430d26ced4b4946dfbf6825bfc45ed\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp", + "isUHD": false + }, + { + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/09e1ed74ceb3a5e54a0554990322518d\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4", + "isUHD": false + }, + { + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/92684dbf40f2b5655f42cf277593059e\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4", + "isUHD": false + }, + { + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/b951b3017b443041757961cb884fd113\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4", + "isUHD": false + } + ] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2023-11-21_0004_in_01_Wischen-ist-Mac_____14202094__o__1166314613__s15511282", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511282" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14202094" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198089" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198089" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16491434" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16198090" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511282\/links" + }, + "subtitle": { + "href": "http:\/\/localhost:0000\/api\/v4.3\/subtitle\/868782" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511282\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15511282\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/b94afd90d058fcd7c711fb750cbaf698426fd217.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/b94afd90d058fcd7c711fb750cbaf698426fd217.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/dd88dc4ced488fe2559899ed6391f92cf3cdd709.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/d0cbbe521b445040150c7dabcb091a58d190450d.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/b94afd90d058fcd7c711fb750cbaf698426fd217.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/thumb_16198089_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/99\/b94afd90d058fcd7c711fb750cbaf698426fd217.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/dd88dc4ced488fe2559899ed6391f92cf3cdd709.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/thumb_16198090_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/99\/d0cbbe521b445040150c7dabcb091a58d190450d.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14201133,duration:1490040,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=wischen-ist-macht&sproid=13891227&episodeid=14201133&duration=1490040&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-11-14T00:33:03+01:00", + "delete_date": "2024-05-28 00:33:03", + "vod_ressort": null, + "description": "Spezialauftrag f\u00fcr \"Dreck.Weg.Sendracek\": Die russische Botschafterin l\u00e4dt zu einer Gala und", + "drm_token": null, + "duration_seconds": 1490, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAxMTMz", + "exact_duration": 1490040, + "field_descriptor": "", + "flimmit_link_text": "", + "flimmit_link": "", + "gapless_sources_austria": { + "hls": [], + "hds": [], + "smooth": [], + "dash": [] + }, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "growing_type": "chronology", + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_thumbnail": true, + "has_youth_protection": false, + "headline": "Alles f\u00fcr den Hugo", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14201133, + "is_archive": false, + "is_drm_protected": false, + "is_gapless_austria": false, + "is_gapless": true, + "gmf_merged_content": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "killdate_extern": "2024-05-21T00:33:03+02:00", + "killdate": "2024-05-21T00:33:03+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "orf_label": null, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "production_country_is_europe": false, + "production_country": null, + "production_year": 2019, + "profile_title": "Wischen ist Macht", + "website": "", + "recommendation_episode": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "release_date": "2023-11-14T01:32:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Alles-fuer-den-Hugo\/14201133", + "share_subject": "Wischen ist Macht: Alles f\u00fcr den Hugo vom 14.11.2023 um 00:33 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Spezialauftrag f\u00fcr \"Dreck.Weg.Sendracek\": Die russische Botschafterin l\u00e4dt zu einer Gala und die Festr\u00e4ume m\u00fcssen auf Hochglanz gebracht werden. Dann aber setzen Fernando und Valentin ungewollt das Cateringpersonal au\u00dfer Gefecht und Michelles Truppe muss einspringen. W\u00e4hrend Fernando und Valentin in der K\u00fcche mit einem Hummer zu k\u00e4mpfen haben, servieren Michelle, Mira und Zoe. Dann trifft Mira auf Pierre, einen alten Freund, und muss verheimlichen, dass sie jetzt Reinigungskraft und nicht mehr Society-Lady ist. Das bleibt auch Michelle nicht verborgen, die aber selbst mit einem Mann aus ihrer Vergangenheit konfrontiert wird: Ihrem Ex-Mann Hugo.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Thomas Mraz (Hugo), Alexander Pschill (Pierre), Karolina Lodyga (Botschafterin) u.a.\r\nBildquelle: ORF\/Fabio Eppensteiner", + "teaser_title": "Alles f\u00fcr den Hugo", + "text": null, + "thumbnail_activated": true, + "thumbnail_distributed": false, + "thumbnail_folder": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Alles f\u00fcr den Hugo", + "type": "default", + "updated_at": "2023-12-27T14:36:49+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133" + }, + "channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227" + }, + "segments": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325287" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325287" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16491434" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325288" + }, + "subtitle": { + "href": "http:\/\/localhost:0000\/api\/v4.3\/subtitle\/868782" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/362432" + } + }, + "_embedded": { + "channel": { + "bitmovin_stream_id": "f9a36691-7bd7-4c36-9009-a0b9d7009b29", + "channel_restart_url_hbbtv": "https:\/\/playerapi-restarttv.ors.at\/livestreams\/f9a36691-7bd7-4c36-9009-a0b9d7009b29\/sections\/?state=active&X-Api-Key=66ae5065a94f40f9b00f7de4a9f96ead", + "id": 1180, + "is_drm_protected": true, + "is_main_channel": true, + "name": "ORF 1", + "reel": "orf1", + "updated_at": "2023-01-19T10:03:53+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/1180\/children" + }, + "color_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457917" + }, + "black_and_white_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13457918" + }, + "audio_description_channel": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/channel\/4391789" + } + } + }, + "segments": [ + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14201133,duration:1490040,advertisingtags:", + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "advertising_query_string": "stype=vod&scat=film-serie&scatid=2703833&spro=wischen-ist-macht&sproid=13891227&episodeid=14201133&duration=1490040&advertisingtags=", + "blackfades": [], + "episode_date": "2023-11-14T00:33:03+01:00", + "date_as_string": "Di, 14.11.2023", + "vod_ressort": null, + "description": "Spezialauftrag f\u00fcr \"Dreck.Weg.Sendracek\": Die russische Botschafterin l\u00e4dt zu einer Gala und die Festr\u00e4ume m\u00fcssen auf Hochglanz gebracht werden. Dann aber setzen Fernando und Valentin ungewollt das Cateringpersonal au\u00dfer Gefecht und Michelles Truppe muss einspringen. W\u00e4hrend Fernando und Valentin in der K\u00fcche mit einem Hummer zu k\u00e4mpfen haben, servieren Michelle, Mira und Zoe. Dann trifft Mira auf Pierre, einen alten Freund, und muss verheimlichen, dass sie jetzt Reinigungskraft und nicht mehr Society-Lady ist. Das bleibt auch Michelle nicht verborgen, die aber selbst mit einem Mann aus ihrer Vergangenheit konfrontiert wird: Ihrem Ex-Mann Hugo.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig), Lilian Jane Gartner (Zoe), Thomas Mraz (Hugo), Alexander Pschill (Pierre), Karolina Lodyga (Botschafterin) u.a.", + "drm_token": null, + "duration_as_string": "24:50 Min.", + "duration_seconds": 1490, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzEwOQ==", + "episode_id": 14201133, + "exact_duration": 1490040, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Alles f\u00fcr den Hugo", + "id": 15523109, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:33:03+02:00", + "killdate": "2024-05-21T00:33:03+02:00", + "livedate": "2100-01-01T00:00:00+01:00", + "livedate_extern": "2100-01-01T00:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15523109, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Alles-fuer-den-Hugo", + "videoduration": 1490, + "episodeduration": 1490, + "episodeid": 14201133, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-11-14T01:32:02+01:00", + "programname": "Wischen-ist-Macht", + "channel": "orf1" + }, + "disable_display_ads_orf_platforms": false, + "disable_instream_ads_orf_platforms": false, + "position": 0, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Alles-fuer-den-Hugo\/14201133\/Wischen-ist-Macht-Alles-fuer-den-Hugo\/15523109", + "share_subject": "Wischen ist Macht: Alles f\u00fcr den Hugo - Wischen ist Macht: Alles f\u00fcr den Hugo vom 14.11.2023 um 00:33 Uhr", + "show_display_ads": true, + "show_instream_ads": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-austria\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Serie", + "teaser_text": null, + "teaser_title": null, + "thumbnail_activated": true, + "thumbnail_distributed": true, + "thumbnail_folder": "cms-preview-clips", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Alles f\u00fcr den Hugo", + "updated_at": "2023-12-21T10:50:20+01:00", + "videobumper": { + "prevideobumper": { + "active": true, + "sources": { + "hls": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/playlist.m3u8", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/playlist.m3u8", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "hds": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.f4m", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.f4m", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "smooth": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "dash": [ + { + "is_uhd": false, + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4\/manifest.mpd", + "is_adaptive_stream": false, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXA", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXA.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + }, + { + "is_uhd": false, + "quality_key": "QXB", + "quality_description": "Adaptiv", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-bumper-clips\/ORF-Original-Bu__0__o__1151614037__s19__b19_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ], + "progressive_download": [ + { + "quality_key": "Q0A", + "quality_description": "Sehr niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/ba2a1bdaacc038a639cad81822ecd944\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q0A.3gp", + "isUHD": false + }, + { + "quality_key": "Q1A", + "quality_description": "Niedrig", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/83430d26ced4b4946dfbf6825bfc45ed\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q1A.3gp", + "isUHD": false + }, + { + "quality_key": "Q4A", + "quality_description": "Mittel", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/09e1ed74ceb3a5e54a0554990322518d\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q4A.mp4", + "isUHD": false + }, + { + "quality_key": "Q6A", + "quality_description": "Hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/92684dbf40f2b5655f42cf277593059e\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q6A.mp4", + "isUHD": false + }, + { + "quality_key": "Q8C", + "quality_description": "Sehr hoch", + "src": "https:\/\/apasfpd.sf.apa.at\/cms-bumper-clips\/online\/b951b3017b443041757961cb884fd113\/1704668400\/ORF-Original-Bu__0__o__1151614037__s19__b19_Q8C.mp4", + "isUHD": false + } + ] + } + }, + "postvideobumper": { + "active": false, + "sources": { + "hls": [], + "hds": [], + "smooth": [], + "progressive_download": [] + } + } + }, + "video_file_name": "2023-11-14_0033_in_01_Wischen-ist-Mac_____14201133__o__1340615864__s15523109", + "video_stream_url": null, + "video_type": "segment", + "voez": false, + "voez_ads_allowed": false, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523109" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201133" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325287" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325287" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16491434" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325288" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523109\/links" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523109\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523109\/tags" + }, + "profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13891227" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1a204845237fd55a1bf3b055355b9fed0de47124.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1a204845237fd55a1bf3b055355b9fed0de47124.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/dd88dc4ced488fe2559899ed6391f92cf3cdd709.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/77962986e3616e96c1ee88744cdd95f719fb83b0.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1a204845237fd55a1bf3b055355b9fed0de47124.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325287_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1a204845237fd55a1bf3b055355b9fed0de47124.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/thumb_16491434_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0165\/92\/dd88dc4ced488fe2559899ed6391f92cf3cdd709.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325288_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/77962986e3616e96c1ee88744cdd95f719fb83b0.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + } +} \ No newline at end of file diff --git a/src/test/resources/orfOn/history.json b/src/test/resources/orfOn/history.json new file mode 100644 index 000000000..afa8f3d88 --- /dev/null +++ b/src/test/resources/orfOn/history.json @@ -0,0 +1,5282 @@ +{ + "history_highlights": [ + { + "order": 0, + "children_count": 2, + "description": "Im Februar 1934 m\u00fcndete der\u00a0politische Konflikt zwischen den Christlichsozialen und den Sozialisten in einer gewaltvollen Konfrontation. Zeitzeug:innen-Berichte machen die Ereignisse der Februark\u00e4mpfe greifbar.", + "headline": "Februark\u00e4mpfe: Zeitzeug:innen berichten", + "id": 13558010, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "sub_headline": "B\u00fcrgerkrieg in \u00d6sterreich", + "title": "Februark\u00e4mpfe: Zeitzeug:innen berichten", + "videos": 15, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558010" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16799799" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16849058" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16844995" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558010\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/84ec10119407361afc0febc9c9e6eeb6333d3c8c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/e43f4d07d172db17aed6e0a65c9e0413e0eeb211.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/9dd53588a9603aa90b697f9ac8430835c6e43661.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 1, + "children_count": 5, + "description": "Ein \u00dcberblick zu den Themen Nachhaltigkeit, Umwelt und Klimaschutz: Die drastischen Auswirkungen des weit verbreiteten Konsumverhaltens werden ebenso aufgezeigt wie m\u00f6gliche L\u00f6sungswege im Alltag.", + "headline": "Nachhaltigkeit und Umweltschutz", + "id": 13557948, + "oewa_base_path": "Redcont\/Sonstiges\/Sonstiges", + "sub_headline": "Kampf dem Klimawandel", + "title": "Nachhaltigkeit und Umweltschutz", + "videos": 112, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557948" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563171" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563172" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16701597" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557948\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/c7e1632c3b9ac71e79ec0e08636f4d833ee5d0ee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/89e96e897ade557af5b00049ecbb5185dc68cfef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/c9f0222b5fd6887b60ec51c66625d9d93a4fbdb3.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 2, + "children_count": 7, + "description": "Die \"ZIB 2\" geh\u00f6rt zu den erfolgreichsten Nachrichtensendungen des ORF. Vor allem diverse Studiogespr\u00e4che haben der Sendung ein einzigartiges Profil gegeben. Im \"ZIB 2\"-Archiv gibt es ein Best-of davon.", + "headline": "Best of \"ZIB 2\"-Interviews", + "id": 7874678, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Bedeutende TV-Auftritte", + "title": "Best of \"ZIB 2\"-Interviews", + "videos": 99, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7874678" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563098" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16857578" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16687698" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7874678\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/744f0bb1392614abd1e730df530f748e9f6b7437.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/0f57cc1e98c4ff36dffbfdcd2823cf44467a3960.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/6085c0dc1ec28ac80d0ecea6d047fb845fb89737.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "history_items": [ + { + "children_count": 10, + "description": "Zeitgeschichte", + "headline": "Zeitgeschichte", + "id": 13557913, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/KulturUeberblick", + "sub_headline": "Zeitgeschichte", + "title": "Zeitgeschichte", + "videos": 623, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16553611" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16553612" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553611_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553611_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553611_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553611_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553611_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/e48bd32d90e104477470b7a7cad64baf8190fe9a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553612_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553612_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553612_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553612_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553612_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/dca040e5b76ce847913218b217261e725790b927.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + }, + "children": [ + { + "children_count": 4, + "description": "Die Erinnerungen von 90 Zeitzeuginnen und Zeitzeugen hat der ORF gemeinsam mit dem Mauthausen Komitee dauerhaft zug\u00e4nglich gemacht. Sie berichten \u00fcber ihre pers\u00f6nliche Zeit rund um den Zweiten Weltkrieg.", + "headline": "\u00d6sterreichs Zeitzeug:innen", + "id": 13425177, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "sub_headline": "Ergreifende Erinnerungen", + "title": "\u00d6sterreichs Zeitzeug:innen", + "videos": 105, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13425177" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16568875" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16568876" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16687674" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13425177\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/69\/thumb_16568875_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/69\/thumb_16568875_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/69\/thumb_16568875_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/69\/thumb_16568875_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/69\/thumb_16568875_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/69\/67292a4ba66c1548cbeff5bc95937e1e58a44c6a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/69\/thumb_16568876_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/69\/thumb_16568876_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/69\/thumb_16568876_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/69\/thumb_16568876_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/69\/thumb_16568876_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/69\/16fce01dc366a078fd116ff798c10edd6f65b9fa.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687674_archive_topic_2x3_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687674_archive_topic_2x3_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687674_archive_topic_2x3_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687674_archive_topic_2x3_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687674_archive_topic_2x3_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/3dde8b7d3ab20aebe220e22496ee01684ce61054.png" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 3, + "description": "Das Archiv beinhaltet Beitr\u00e4ge, die sich mit Beginn, Verlauf und Auswirkungen des Zweiten Weltkriegs befassen. Neben einzelnen Schlachten und Hitlers Aufstieg werden vor allem die NS-Gr\u00e4ueltaten thematisiert.", + "headline": "Der Zweite Weltkrieg", + "id": 13557935, + "oewa_base_path": "Redcont\/Politik\/Sonstiges", + "sub_headline": "Dunkelste Zeit des 20. Jhdt.", + "title": "Der Zweite Weltkrieg", + "videos": 56, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557935" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16562857" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16562858" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16701598" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557935\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562857_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562857_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562857_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562857_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562857_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/c9e3d7fd61e1d13eb64b3371c1a1e424456568a7.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562858_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562858_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562858_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562858_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562858_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/ecf75ad78abf3ae752295d46c66874f73272b1ac.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701598_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701598_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701598_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701598_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701598_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/e929312abde14eaa7bfa1fdc2f0abc14a6c789ba.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 2, + "description": "Im Februar 1934 m\u00fcndete der\u00a0politische Konflikt zwischen den Christlichsozialen und den Sozialisten in einer gewaltvollen Konfrontation. Zeitzeug:innen-Berichte machen die Ereignisse der Februark\u00e4mpfe greifbar.", + "headline": "Februark\u00e4mpfe: Zeitzeug:innen berichten", + "id": 13558010, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "sub_headline": "B\u00fcrgerkrieg in \u00d6sterreich", + "title": "Februark\u00e4mpfe: Zeitzeug:innen berichten", + "videos": 15, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558010" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16799799" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16849058" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16844995" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558010\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/thumb_16799799_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/100\/84ec10119407361afc0febc9c9e6eeb6333d3c8c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/thumb_16849058_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/50\/e43f4d07d172db17aed6e0a65c9e0413e0eeb211.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/thumb_16844995_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0169\/45\/9dd53588a9603aa90b697f9ac8430835c6e43661.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 2, + "description": "Mit dem Angriff Russlands auf die Ukraine im Jahr 2022 ist in \u00d6sterreich die Neutralit\u00e4t wieder zum Gegenstand verschiedener Debatten geworden. Das Videoarchiv zeigt Beitr\u00e4ge aus dem breiten Themengebiet der Neutralit\u00e4t.", + "headline": "\u00d6sterreichs Neutralit\u00e4t", + "id": 13557983, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "sub_headline": "Entstehung, Bedeutung, Kontroversen", + "title": "\u00d6sterreichs Neutralit\u00e4t", + "videos": 13, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557983" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16773499" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16773457" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557983\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773499_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773499_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773499_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773499_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773499_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/4de8103914e3fea38ddad9b376f5532d7197d3dd.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773457_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773457_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773457_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773457_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773457_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/7972a360c6a5ea194e47ec914684478c69ac7272.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "So abwechslungsreich wie seine Landschaft ist auch die Geschichte S\u00fcdtirols. Neben Beitr\u00e4gen \u00fcber S\u00fcdtirol als erbitterten Kriegsschauplatz, bietet dieses Videoarchiv auch Einblicke in alte Traditionen und Br\u00e4uche.", + "headline": "Die Geschichte S\u00fcdtirols", + "id": 13557875, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "sub_headline": "Kampf um Autonomie", + "title": "Die Geschichte S\u00fcdtirols", + "videos": 106, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557875" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16560350" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16560361" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557875\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560350_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560350_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560350_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560350_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560350_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/e0e07f55e6e7123fb291f07983afeff5c1fa0c7e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560361_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560361_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560361_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560361_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560361_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/6924cc19f3ec7e582961b0f31458e6e1201dcc72.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 1, + "description": "Das Videoarchiv widmet sich vor allem dem \"Anschluss\" \u00d6sterreichs und den \"Novemberpogromen\" im Jahr 1938. Neben historischen Aufnahmen kommen auch Zeitzeuginnen und Zeitzeugen zu Wort.", + "headline": "Das Schicksalsjahr 1938", + "id": 13557892, + "oewa_base_path": "Redcont\/Politik\/Politikueberblick", + "sub_headline": "Beginn der NS-Herrschaft", + "title": "Das Schicksalsjahr 1938", + "videos": 31, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557892" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16567618" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16567619" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557892\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567618_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567618_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567618_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567618_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567618_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/604ce4aeb25f27f6d861fd84bee965e6587bd0cb.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567619_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567619_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567619_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567619_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567619_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/fb4d93aac785fcc110c0a8f95a83bbc27c4056c8.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "\"70 Jahre Zweite Republik\" und \"60 Jahre Staatsvertrag\": 2015 stand im Zeichen dieser beiden Jubil\u00e4en. Hier finden sich Beitr\u00e4ge \u00fcber die Parteien in \u00d6sterreich sowie \u00fcber Skandale und Aufreger der vergangenen Jahrzehnte.", + "headline": "Die politische Geschichte der Zweiten Republik", + "id": 9501692, + "oewa_base_path": "Redcont\/Politik\/Politikueberblick", + "sub_headline": "Vom Staatsvertrag bis jetzt", + "title": "Die politische Geschichte der Zweiten Republik", + "videos": 152, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9501692" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16541712" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16592766" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9501692\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541712_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541712_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541712_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541712_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541712_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/96b78d969b0459c7f0994b1f58ae620c1f0b247f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/93\/thumb_16592766_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/93\/thumb_16592766_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/93\/thumb_16592766_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/93\/thumb_16592766_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/93\/thumb_16592766_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/93\/3dc2344dbf68de7876e2c77c4922225bc8bc5219.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 4, + "description": "Mit der Kriegserkl\u00e4rung an Serbien 1914 st\u00fcrzte Europa in die erste Katastrophe des 20. Jahrhunderts. Zum 100. Jahrestag des Attentats auf Thronfolger Franz Ferdinand sind diese Zeitzeugenberichte entstanden.", + "headline": "100 Jahre Erster Weltkrieg", + "id": 7723434, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Erste Katastrophe Europas", + "title": "100 Jahre Erster Weltkrieg", + "videos": 51, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7723434" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16593261" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16593263" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7723434\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/94\/thumb_16593261_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/94\/thumb_16593261_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/94\/thumb_16593261_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/94\/thumb_16593261_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/94\/thumb_16593261_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/94\/06b122741b58c54b671665821b3621fd95489758.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/94\/thumb_16593263_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/94\/thumb_16593263_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/94\/thumb_16593263_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/94\/thumb_16593263_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/94\/thumb_16593263_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/94\/4d6789e5441b0a8d53de3e20c3c7360882499089.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 3, + "description": "Jahrzehntelang hatte der \"Eiserne Vorhang\" Europa in zwei H\u00e4lften geteilt. 1989 begann der Fall des \"Eisernen Vorhangs\". Im Archiv wird anhand von TV-Berichten erkl\u00e4rt, wie es dazu kommen konnte.", + "headline": "Der Fall des \"Eisernen Vorhangs\"", + "id": 7751764, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Europa entfesselt", + "title": "Der Fall des \"Eisernen Vorhangs\"", + "videos": 41, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7751764" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563173" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563174" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7751764\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563173_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563173_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563173_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563173_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563173_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/ad0a9cca0b196add0ecacee85cca7550b6a961e9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563174_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563174_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563174_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563174_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563174_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/80ec700a3ff3c8b28f6317a3755ae38648cee9e4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 4, + "description": "Das Archiv widmet sich dem Gedenkjahr 2018. Die Videos beleuchten zentrale Ereignisse und Themen wie Aufarbeitung und Rehabilitierung nach dem Zerfall der Monarchie und der Entstehung der Ersten Republik 1918.", + "headline": "Die Geschichte der Ersten Republik", + "id": 13557907, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "sub_headline": "Einzigartige R\u00fcckblicke", + "title": "Die Geschichte der Ersten Republik", + "videos": 53, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557907" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16583279" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16583280" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557913" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557907\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/84\/thumb_16583279_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/84\/thumb_16583279_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/84\/thumb_16583279_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/84\/thumb_16583279_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/84\/thumb_16583279_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/84\/4cc924664361f0c49e72a85d0bcc21dbe7c4e71c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/84\/thumb_16583280_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/84\/thumb_16583280_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/84\/thumb_16583280_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/84\/thumb_16583280_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/84\/thumb_16583280_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/84\/a9842fc0b02490d6c4852c0e54f63cea994dd899.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + }, + { + "children_count": 7, + "description": "Kulturgeschichte und Gesellschaft", + "headline": "Kulturgeschichte und Gesellschaft", + "id": 13557964, + "oewa_base_path": "Redcont\/Nachrichten\/GesellschaftUndLeute", + "sub_headline": "Kulturgeschichte und Gesellschaft", + "title": "Kulturgeschichte und Gesellschaft", + "videos": 488, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596307" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/861cc7baa31669d7a76a998cc34e6771858e4ab6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + }, + "children": [ + { + "children_count": 2, + "description": "Anl\u00e4sslich des 2022 begangenen 20-j\u00e4hrigen Jubil\u00e4ums der Aufhebung des Diskriminierungsparagraphen 209 zeigt dieses Archiv den Kampf der LGBTIQ+-Bewegung in \u00d6sterreich um Anerkennung und Gleichberechtigung.", + "headline": "Vielfalt der Identit\u00e4ten", + "id": 13557986, + "oewa_base_path": "Redcont\/Nachrichten\/GesellschaftUndLeute", + "sub_headline": "LGBTIQ+", + "title": "Vielfalt der Identit\u00e4ten", + "videos": 13, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557986" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16513281" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16857665" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557986\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/14\/thumb_16513281_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/14\/thumb_16513281_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/14\/thumb_16513281_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/14\/thumb_16513281_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/14\/thumb_16513281_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/14\/b307b96109b4eaa1ff067a3c92309be5e0fa1357.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857665_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857665_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857665_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857665_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857665_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/59c981779d3d09c29be82a2f0904beacb66f9a8a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 5, + "description": "Ein \u00dcberblick zu den Themen Nachhaltigkeit, Umwelt und Klimaschutz: Die drastischen Auswirkungen des weit verbreiteten Konsumverhaltens werden ebenso aufgezeigt wie m\u00f6gliche L\u00f6sungswege im Alltag.", + "headline": "Nachhaltigkeit und Umweltschutz", + "id": 13557948, + "oewa_base_path": "Redcont\/Sonstiges\/Sonstiges", + "sub_headline": "Kampf dem Klimawandel", + "title": "Nachhaltigkeit und Umweltschutz", + "videos": 112, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557948" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563171" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563172" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16701597" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557948\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563171_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/c7e1632c3b9ac71e79ec0e08636f4d833ee5d0ee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563172_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/89e96e897ade557af5b00049ecbb5185dc68cfef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/thumb_16701597_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0168\/02\/c9f0222b5fd6887b60ec51c66625d9d93a4fbdb3.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 9, + "description": "Viele architektonische Juwelen in \u00d6sterreich waren dem Verfall geweiht oder wurden abgerissen. Das Archiv erm\u00f6glicht einen Einblick in die Welt der sowohl verschwundenen als auch noch bestehenden historischen Bauwerke.", + "headline": "\u00d6sterreich, wie es einmal war", + "id": 13557971, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "sub_headline": "Blick in die Vergangenheit", + "title": "\u00d6sterreich, wie es einmal war", + "videos": 63, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557971" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/12760757" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557971\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0128\/61\/thumb_12760757_archive_topics_highlight_teaser.png" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0128\/61\/thumb_12760757_archive_topics_player.png" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0128\/61\/thumb_12760757_archive_topics_legacy.png" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0128\/61\/thumb_12760757_archive_topics_list.png" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0128\/61\/thumb_12760757_archive_topics_small.png" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0128\/61\/360d87696825ff756aae3d2320adbd10d5383d77.png" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 5, + "description": "Menschen mit Beeintr\u00e4chtigungen geben Einblicke in ihren Alltag und zeigen, wie Selbstbestimmung und gelebte Inklusion m\u00f6glich sein kann. Im Sinne der Barrierefreiheit sind alle enthaltenen Videos untertitelt.", + "headline": "Gelebte Inklusion in der Gesellschaft", + "id": 13557965, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Selbstbestimmung & Vielfalt", + "title": "Gelebte Inklusion in der Gesellschaft", + "videos": 55, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557965" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16613451" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16613452" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557965\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613451_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613451_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613451_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613451_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613451_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/36a4b57011a850f53315133c85e545c2a00fe645.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613452_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613452_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613452_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613452_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613452_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/a508c70d7b1fc9991c84efd337f554a64aea9766.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 3, + "description": "Im M\u00e4rz 2020 versetzte das Coronavirus \u00d6sterreich in eine noch nie dagewesene Ausnahmesituation. Dieses Archiv gibt einen \u00dcberblick \u00fcber die relevantesten Ereignisse seit Ausbruch des Virus in \u00d6sterreich.", + "headline": "Die Coronavirus-Pandemie", + "id": 13557954, + "oewa_base_path": "Redcont\/Nachrichten\/Nachrichtenueberblick", + "sub_headline": "Eine Krise und ihre Folgen", + "title": "Die Coronavirus-Pandemie", + "videos": 50, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557954" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16543987" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16544839" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557954\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/44\/thumb_16543987_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/44\/thumb_16543987_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/44\/thumb_16543987_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/44\/thumb_16543987_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/44\/thumb_16543987_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/44\/0b11266efadc439a3b4d3c7d7cbaf56d27c7d06d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544839_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544839_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544839_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544839_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544839_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/4db0a517918f2875d32e007cfd7df3a032a81be2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "\u00d6sterreich hat zahlreiche Erfindungen sowie einige Nobelpreistr\u00e4ger hervorgebracht. Dieses Videoarchiv bietet einen \u00dcberblick zu wissenschaftlichen Leistungen und \u00fcber digitale Herausforderungen.", + "headline": "Wissenschaft und Forschung", + "id": 13557939, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Von Daten, Fakten & Ideen", + "title": "Wissenschaft und Forschung", + "videos": 103, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557939" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16567967" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16567968" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557939\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567967_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567967_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567967_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567967_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/thumb_16567967_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/68\/cf17f602d699eb077f602a978dc9a1937a085b50.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567968_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567968_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567968_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567968_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567968_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/186fb9dcf0fa29cadb45970d1c59b425c7b6582d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 4, + "description": "Der Einf\u00fchrung des Frauenwahlrechts in \u00d6sterreich im Jahre 1918 ging ein langer Kampf vieler mutiger Frauen voran. Im Videoarchiv steht diese zentrale Errungenschaft der Frauenbewegung im Mittelpunkt.", + "headline": "Starke Frauen", + "id": 13557869, + "oewa_base_path": "Redcont\/Nachrichten\/GesellschaftUndLeute", + "sub_headline": "Portr\u00e4ts & Errungenschaften", + "title": "Starke Frauen", + "videos": 92, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557869" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16613432" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16613433" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557964" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557869\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613432_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613432_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613432_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613432_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/thumb_16613432_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0167\/14\/2f5f314467c07bd9b8f6262b70a29237ad93bb13.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613433_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613433_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613433_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613433_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613433_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/1ed9516b5e335e52b07e885b0adc6a7cc7eb6bcf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + }, + { + "children_count": 10, + "description": "Die Geschichte unserer Bundesl\u00e4nder", + "headline": "Die Geschichte unserer Bundesl\u00e4nder", + "id": 13557912, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/KulturUeberblick", + "sub_headline": "Die Geschichte unserer Bundesl\u00e4nder", + "title": "Die Geschichte unserer Bundesl\u00e4nder", + "videos": 1657, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596307" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/thumb_16596307_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/97\/861cc7baa31669d7a76a998cc34e6771858e4ab6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + }, + "children": [ + { + "children_count": 12, + "description": "Die Videobeitr\u00e4ge spiegeln nicht nur die bewegte Geschichte und facettenreiche Kultur Wiens wider, sondern portr\u00e4tieren auch das Leben von gro\u00dfen Politikern und Politikerinnen sowie Kunstschaffenden.", + "headline": "Die Geschichte Wiens", + "id": 13557874, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte Wiens", + "videos": 342, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557874" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16773502" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16774197" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557874\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773502_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773502_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773502_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773502_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/thumb_16773502_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/74\/140f6bd4fe3bfb06ad125d9d6a9cca7c664af22d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/75\/thumb_16774197_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/75\/thumb_16774197_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/75\/thumb_16774197_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/75\/thumb_16774197_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/75\/thumb_16774197_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/75\/ba4e7482b590d55b9719755c302902c0015d4c5a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "H\u00fcgelige Weinstra\u00dfen, W\u00e4lder und Almen f\u00fcgen sich in der \u201eGr\u00fcnen Mark\u201c aneinander. Mit der Hauptstadt Graz \u2013 Kulturhauptstadt 03 \u2013 ist auch ein spannendes urbanes Leben in der Steiermark gegeben.", + "headline": "Die Geschichte der Steiermark", + "id": 12800266, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte der Steiermark", + "videos": 149, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/12800266" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514030" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16514013" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/12800266\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/15\/thumb_16514030_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/15\/thumb_16514030_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/15\/thumb_16514030_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/15\/thumb_16514030_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/15\/thumb_16514030_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/15\/6f2a49c161756005d2069f61f5829e0f18466e6a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/15\/thumb_16514013_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/15\/thumb_16514013_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/15\/thumb_16514013_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/15\/thumb_16514013_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/15\/thumb_16514013_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/15\/47443a97284df0eb5adcd68b3cfaa95066dec772.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "Neben landschaftlichen Juwelen wie dem Attersee und dem Salzkammergut steht Ober\u00f6sterreich f\u00fcr wirtschaftliche Dynamik und kulturelle Vielfalt.", + "headline": "Die Geschichte Ober\u00f6sterreichs", + "id": 12395971, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte Ober\u00f6sterreichs", + "videos": 133, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/12395971" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16560037" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16560038" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/12395971\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560037_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560037_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560037_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560037_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560037_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/f9ba490e5c015aa7a451111566aa0221b9d62a86.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560038_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560038_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560038_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560038_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560038_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/c8319820c84fa09f9fccb6c75247b193aa3eb80b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 8, + "description": "Ob der Freiheitskampf rund um Andreas Hofer, die Trennung von S\u00fcdtirol oder die Olympischen Winterspiele in den Jahren 1964 und 1976: Tirol kann auf eine spannende und turbulente Geschichte zur\u00fcckblicken.", + "headline": "Die Geschichte Tirols", + "id": 12192997, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte Tirols", + "videos": 111, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/12192997" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16560118" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16560119" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/12192997\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560118_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560118_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560118_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560118_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/thumb_16560118_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/61\/b6e10d4dea9a3a91cfde99e0b8c60843a3afc957.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560119_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560119_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560119_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560119_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/thumb_16560119_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/61\/aa639edf07f11bcfa874928d0fec55be1e8de43d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "Vorarlberg z\u00e4hlt zwar zu den kleinsten Bundesl\u00e4ndern \u00d6sterreichs, doch es steht den anderen in Nichts nach. Das westlichste Bundesland hebt sich unter anderem mit seiner Wirtschaftsleistung und Kultur hervor.", + "headline": "Die Geschichte Vorarlbergs", + "id": 10963464, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte Vorarlbergs", + "videos": 126, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10963464" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563181" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563182" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10963464\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563181_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563181_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563181_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563181_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563181_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/13ca18cdd58e19bc3d2d32593e954aca0584e5f7.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563182_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563182_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563182_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563182_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563182_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/f980a856389d14c34e867d1e7f223553e54b4fd9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "Machtwechsel in der Politik, das Gletscherbahnungl\u00fcck in Kaprun, die Bedeutung der Salzburger Festspiele oder die Ski-Legende Hermann Maier: Das Archiv zeigt Videos der wichtigsten historischen Ereignisse in Salzburg.", + "headline": "Die Geschichte Salzburgs", + "id": 10780871, + "oewa_base_path": "Redcont\/Nachrichten\/Nachrichtenueberblick", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte Salzburgs", + "videos": 137, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10780871" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16493761" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16493762" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10780871\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493761_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493761_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493761_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493761_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493761_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/5a1ccbadc9c9647dcaa138300b8d08759cd68c66.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493762_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493762_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493762_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493762_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493762_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/29e5cd4cd0eb0d30f4116b5d1117254f840499b6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "Das s\u00fcdlichste Bundesland besticht durch landschaftliche Sch\u00f6nheit und Seenreichtum. Doch die Geschichte des Landes ist auch von wechselhaften politischen Mehrheiten gepr\u00e4gt.", + "headline": "Die Geschichte K\u00e4rntens", + "id": 10281661, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte K\u00e4rntens", + "videos": 118, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10281661" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16512431" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16777859" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10281661\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/13\/thumb_16512431_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/13\/thumb_16512431_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/13\/thumb_16512431_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/13\/thumb_16512431_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/13\/thumb_16512431_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/13\/9a4b8161397ce871a11a960293861fad265714c6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777859_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777859_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777859_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777859_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777859_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/03911a16c56e3066f24cb193d85d932aa444b9bf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "Portr\u00e4ts von politischen Pers\u00f6nlichkeiten, kulturelle Highlights oder ein Blick in die Wachau, die Stifte und Kl\u00f6ster: Das Archiv Nieder\u00f6sterreichs zeigt die Vielfalt des gr\u00f6\u00dften Bundeslandes.", + "headline": "Die Geschichte Nieder\u00f6sterreichs", + "id": 8378971, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte Nieder\u00f6sterreichs", + "videos": 242, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/8378971" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16493753" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16493754" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/8378971\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493753_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493753_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493753_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493753_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/thumb_16493753_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/94\/b4191ae2e2c0dbd99a6450d43a76fd8536beeac9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493754_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493754_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493754_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493754_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/thumb_16493754_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/94\/54a406a29387340cceb684596d58184d011a023e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "Im Jahr 2021 feierte das \u00f6stlichste Bundesland \u00d6sterreichs sein 100-j\u00e4hriges Bestehen. Dieses Videoarchiv bietet eine breite Palette an Einblicken: Von der landschaftlichen Sch\u00f6nheit, kulinarischen Vielfalt \u00fcber politische Entwicklungen und historische Ereignisse.", + "headline": "Die Geschichte des Burgenlandes", + "id": 9236430, + "oewa_base_path": "Redcont\/Nachrichten\/Nachrichtenueberblick", + "sub_headline": "Bundesland im Portr\u00e4t", + "title": "Die Geschichte des Burgenlandes", + "videos": 169, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9236430" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11854589" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9236430\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0119\/55\/thumb_11854589_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0119\/55\/thumb_11854589_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0119\/55\/thumb_11854589_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0119\/55\/thumb_11854589_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0119\/55\/thumb_11854589_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0119\/55\/38064eef5b8c38b0726db35b9fbd3ae17b396aa3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "Die Beitr\u00e4ge in diesem Archiv widmen sich den sechs autochthonen Volksgruppen in \u00d6sterreich. Die bewegte politische Geschichte - von der Verfolgung unter der NS-Terrorherrschaft bis hin zum Kampf um Anerkennung - wird ebenso beleuchtet wie gegenw\u00e4rtige Errungenschaften und anhaltende Konfliktherde.", + "headline": "Volksgruppen in \u00d6sterreich", + "id": 13557924, + "oewa_base_path": "Redcont\/Politik\/Sonstiges", + "sub_headline": "Bewegte Geschichte", + "title": "Volksgruppen in \u00d6sterreich", + "videos": 130, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557924" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16744046" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16744087" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557912" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557924\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/45\/thumb_16744046_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/45\/thumb_16744046_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/45\/thumb_16744046_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/45\/thumb_16744046_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/45\/thumb_16744046_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0168\/45\/3bda948feced05c0528387cfc52f0f5510b0d614.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/45\/thumb_16744087_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/45\/thumb_16744087_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/45\/thumb_16744087_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/45\/thumb_16744087_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/45\/thumb_16744087_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/45\/67b55d48983cdc40958f8912ae732ea0643a2eb6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + }, + { + "children_count": 8, + "description": "Die politischen und wirtschaftlichen Ereignisse im In-und Ausland im \u00dcberblick.", + "headline": "Politik und Wirtschaft", + "id": 13557911, + "oewa_base_path": "Redcont\/Politik\/Politikueberblick", + "sub_headline": "Politik und Wirtschaft", + "title": "Politik und Wirtschaft", + "videos": 511, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563306" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563307" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563306_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563306_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563306_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563306_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563306_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/56b0d7aa47289567b7f877a62a23dc1b4abcc198.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563307_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563307_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563307_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563307_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563307_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/4f6a492d3c979621b9ddd7fbc1997156c64ee9cb.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + }, + "children": [ + { + "children_count": 3, + "description": "Aufgrund der CoV-Pandemie und des Ukraine-Krieges herrschte 2022 eine Rekordinflation. Diese Archivbeitr\u00e4ge machen Ursachen und Folgen wie die rasant steigenden Energiekosten deutlich.", + "headline": "Rekordinflation und Energiekrise", + "id": 13557992, + "oewa_base_path": "Redcont\/Wirtschaft\/Sonstiges", + "sub_headline": "Teuerungswelle trifft \u00d6sterreich", + "title": "Rekordinflation und Energiekrise", + "videos": 28, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557992" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559836" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16777869" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557992\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559836_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559836_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559836_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559836_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559836_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/a8862e62c2c1a30ef165b982f9741c72132ff5bd.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777869_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777869_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777869_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777869_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/thumb_16777869_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/78\/beb62c85b5c337559a41efac4152a34ffcaf03dd.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "Das Videoarchiv widmet sich bedeutenden heeresgeschichtlichen Entwicklungen seit den 1960er-Jahren. Auch die Causa Eurofighter oder die Auslandseins\u00e4tze des Heeres k\u00f6nnen nachgesehen werden.", + "headline": "Das \u00d6sterreichische Bundesheer", + "id": 5106911, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Milit\u00e4r im Wandel der Zeit", + "title": "Das \u00d6sterreichische Bundesheer", + "videos": 86, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/5106911" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16553606" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16553607" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/5106911\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553606_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553606_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553606_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553606_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/thumb_16553606_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/54\/246bedd624af5754616eb7f173f6ceca4de1be0a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553607_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553607_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553607_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553607_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/thumb_16553607_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/54\/9768fa3ef50ee0cebe3fc32e9b51f856dbbb1d15.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 3, + "description": "Historische Videos zum Mauerfall 1989, einen R\u00fcckblick auf deutsche Spitzenpolitiker, aber auch Beitr\u00e4ge rund um das Ergebnis und die Folgen der Bundestagswahl im Herbst 2017 bietet dieses Archiv.", + "headline": "Die politische Landschaft in Deutschland", + "id": 6524565, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Mauerfall, Politikerportr\u00e4ts, Wahlen", + "title": "Die politische Landschaft in Deutschland", + "videos": 31, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/6524565" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559935" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559937" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/6524565\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559935_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559935_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559935_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559935_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559935_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/fa9c5345547bc3feecb19f3aa3ef6f33362ac181.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559937_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559937_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559937_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559937_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559937_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/5a30921418489adbe5a91391a2e0bf9feee16437.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 3, + "description": "Dieses Archiv blickt zur\u00fcck auf alle Bundespr\u00e4sidenten seit Ende des Zweiten Weltkrieges. Alexander Van der Bellen gewann 2016 die wiederholte Stichwahl sowie die Folgewahl 2022.", + "headline": "Bundespr\u00e4sidentenwahlen in \u00d6sterreich", + "id": 13304953, + "oewa_base_path": "Redcont\/Politik\/PolitikInland", + "sub_headline": "Urneng\u00e4nge seit 1945", + "title": "Bundespr\u00e4sidentenwahlen in \u00d6sterreich", + "videos": 33, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13304953" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16562832" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16773423" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13304953\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562832_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562832_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562832_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562832_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562832_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/94ee83d21786edc7d44e7c6840e0549b1af06728.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773423_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773423_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773423_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773423_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/thumb_16773423_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0168\/74\/2cfc3d3c17cb6d0c113156bdf86c9516eba42770.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 11, + "description": "Rund um die Nationalratswahlen sind hier Videohighlights ab dem Jahr 1955 zusammengestellt worden. Historische Wahlberichte wurden ebenso abrufbar gemacht wie Beitr\u00e4ge zur Causa Ibiza oder die \u00d6VP-Aff\u00e4re.", + "headline": "Nationalratswahlen in \u00d6sterreich", + "id": 6207003, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Historische Momente", + "title": "Nationalratswahlen in \u00d6sterreich", + "videos": 117, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/6207003" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559931" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16567648" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/6207003\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559931_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559931_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559931_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559931_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559931_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/5bd43448b691d673fb90f6df9d8cda01a6763b67.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567648_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567648_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567648_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567648_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/thumb_16567648_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/68\/52864b64aff104d5f94cc5fa866f325db0b39c13.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 5, + "description": "Das Milliardendebakel rund um die Hypo Alpe Adria besch\u00e4ftigt seit Jahren die heimische Innenpolitik. In diesem Archiv befinden sich relevante Beitr\u00e4ge von der Er\u00f6ffnung der ersten Hypo-Filiale bis zum Untersuchungsausschuss.", + "headline": "Causa Hypo", + "id": 9247783, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Chronologie eines Skandals", + "title": "Causa Hypo", + "videos": 70, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9247783" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559870" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16613159" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9247783\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559870_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559870_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559870_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559870_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559870_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/64c2f05fd794b4c358044a9628111a6b83cdcfcf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613159_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613159_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613159_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613159_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/thumb_16613159_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/14\/d20c762b7e4c27e2744d43230e731e53d96bd078.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 6, + "description": "Dieses Archiv wurde im Zuge der \u00f6sterreichischen Ratspr\u00e4sidentschaft und der EU-Wahl in den Jahren 2018 und 2019 erweitert. Darin wird unter anderem die Beziehung zwischen \u00d6sterreich und der EU dargestellt.", + "headline": "Die Geschichte der EU", + "id": 7774196, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Der lange Weg zur Union", + "title": "Die Geschichte der EU", + "videos": 105, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7774196" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559933" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559934" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7774196\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559933_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559933_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559933_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559933_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559933_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/b64d4aba6132b9ff9be5f59ed8be0c631f9c7aa3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559934_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559934_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559934_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559934_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559934_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/0e86db1a847c8b281d271a89334a5957dcb84007.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 4, + "description": "Die Pr\u00e4sidentenwahl 2012 war Anlass f\u00fcr ein Videoarchiv mit Blick auf Geschichtstr\u00e4chtiges in den USA. Es dokumentiert bedeutende Auftritte von Ex-Pr\u00e4sidenten und bietet einen \u00dcberblick \u00fcber die Wahlen 2016 und 2020.", + "headline": "Pr\u00e4sidentschaftswahlen in den USA", + "id": 4696497, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Von Washington bis Biden", + "title": "Pr\u00e4sidentschaftswahlen in den USA", + "videos": 41, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/4696497" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16562758" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16562759" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557911" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/4696497\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562758_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562758_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562758_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562758_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/thumb_16562758_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/63\/06d00549c58ee6b08cfe31830abeb23618c0c69f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562759_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562759_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562759_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562759_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/thumb_16562759_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/63\/601136e7f681abf50e6a839d117b836af266f4c8.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + }, + { + "children_count": 2, + "description": "Dokumentationen und Reportagen zum Juden- und Christentum.", + "headline": "Religion", + "id": 13557914, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/KulturUeberblick", + "sub_headline": "Religion", + "title": "Religion", + "videos": 317, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557914" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16487289" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16487303" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557914\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487289_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487289_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487289_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487289_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487289_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/64aaaf5b5b240e099f8e861122aaf1a2d517f44b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487303_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487303_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487303_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487303_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487303_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/34d853b92dccbb0b5a7026e01b4e80056e1c0735.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + }, + "children": [ + { + "children_count": 4, + "description": "Eine Sammlung von TV-Beitr\u00e4gen aus verschiedenen Bereichen der Weltreligion Judentum: Die dunkle Zeit des Holocausts wird darin ebenso beleuchtet wie religi\u00f6se Feste des Alltagslebens.", + "headline": "Medienarchiv Judentum", + "id": 6932895, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "\u00c4lteste abrahamitische Religion", + "title": "Medienarchiv Judentum", + "videos": 119, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/6932895" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16487317" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16487316" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557914" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/6932895\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487317_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487317_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487317_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487317_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/thumb_16487317_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0165\/88\/ef2059955d4183af92387b07b00a1d5de3de0b8a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487316_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487316_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487316_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487316_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/thumb_16487316_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0165\/88\/ff863d95bc6d2d33bc3cb69015ec3797add980db.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 9, + "description": "Das ORF-Medienarchiv Christentum ist eine Sammlung von TV-Beitr\u00e4gen \u00fcber die verschiedenen Facetten der am weitesten verbreiteten Religion der Welt.", + "headline": "Medienarchiv Christentum", + "id": 7914403, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Tradition, Glaube, Br\u00e4uche", + "title": "Medienarchiv Christentum", + "videos": 198, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7914403" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16544932" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16544933" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557914" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7914403\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/45\/thumb_16544932_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/45\/thumb_16544932_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/45\/thumb_16544932_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/45\/thumb_16544932_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/45\/thumb_16544932_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/45\/bdbbb950c0c57311d919e53cb035e7ca31968283.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544933_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544933_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544933_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544933_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/thumb_16544933_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/45\/ca76fa26c453edb46c0db3d252a15d8432c5408c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + }, + { + "children_count": 8, + "description": "Die Fernseh- und Mediengeschichte von Anfang bis heute sowie einzelne Sendungs-Highlights im \u00dcberblick.", + "headline": "Fernseh- und Mediengeschichte", + "id": 13557916, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/KulturUeberblick", + "sub_headline": "Fernseh- und Mediengeschichte", + "title": "Fernseh- und Mediengeschichte", + "videos": 573, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16554079" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16554080" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/55\/thumb_16554079_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/55\/thumb_16554079_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/55\/thumb_16554079_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/55\/thumb_16554079_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/55\/thumb_16554079_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/55\/ef0aafa1c4d901f105e796a31ce44ba70f68ef7f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/55\/thumb_16554080_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/55\/thumb_16554080_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/55\/thumb_16554080_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/55\/thumb_16554080_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/55\/thumb_16554080_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/55\/c4005f2cd0c95b0dbf6aab2ac584320ea6ba9747.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + }, + "children": [ + { + "children_count": 4, + "description": "Diese Videosammlung bietet Sozialreportagen aus \u00fcber zwei Jahrzehnten, die Einblicke in unterschiedliche Milieus geben und gesellschaftliche Entwicklungen aufzeigen.", + "headline": "Highlights von \"Am Schauplatz\"", + "id": 13558004, + "oewa_base_path": "Redcont\/Nachrichten\/GesellschaftUndLeute", + "sub_headline": "Investigative Reportagen", + "title": "Highlights von \"Am Schauplatz\"", + "videos": 28, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558004" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563092" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563883" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16687697" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13558004\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563092_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563092_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563092_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563092_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563092_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/cdf01c27d28aa23d0b0d951ca2ce637ab9482179.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563883_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563883_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563883_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563883_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563883_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/c8014fca8092a54a735a614d7abd947b2bb2e91c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687697_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687697_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687697_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687697_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687697_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/a54df62716682353e9328c41e6b73f1fd38a4f02.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 7, + "description": "Die \"ZIB 2\" geh\u00f6rt zu den erfolgreichsten Nachrichtensendungen des ORF. Vor allem diverse Studiogespr\u00e4che haben der Sendung ein einzigartiges Profil gegeben. Im \"ZIB 2\"-Archiv gibt es ein Best-of davon.", + "headline": "Best of \"ZIB 2\"-Interviews", + "id": 7874678, + "oewa_base_path": "Redcont\/Homepage\/Sonstiges", + "sub_headline": "Bedeutende TV-Auftritte", + "title": "Best of \"ZIB 2\"-Interviews", + "videos": 99, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7874678" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563098" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16857578" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16687698" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/7874678\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563098_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/744f0bb1392614abd1e730df530f748e9f6b7437.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/thumb_16857578_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0169\/58\/0f57cc1e98c4ff36dffbfdcd2823cf44467a3960.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/thumb_16687698_archive_topic_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_2x3\/0167\/88\/6085c0dc1ec28ac80d0ecea6d047fb845fb89737.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 2, + "description": "Im Jahr 1973 wurde LICHT INS DUNKEL ins Leben gerufen. Dieses Archiv zeigt, wie sich die gr\u00f6\u00dfte Spendensammelaktion des Landes entwickelt hat, stellt Kooperationspartner vor und pr\u00e4sentiert eine kleine Auswahl an Projekten, die von LICHT INS DUNKEL unterst\u00fctzt werden.", + "headline": "50 Jahre LICHT INS DUNKEL", + "id": 13557989, + "oewa_base_path": "Redcont\/Sonstiges\/Sonstiges", + "sub_headline": "Historischer R\u00fcckblick", + "title": "50 Jahre LICHT INS DUNKEL", + "videos": 30, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557989" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/14243993" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557989\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0143\/44\/thumb_14243993_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0143\/44\/thumb_14243993_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0143\/44\/thumb_14243993_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0143\/44\/thumb_14243993_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0143\/44\/thumb_14243993_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0143\/44\/ba3f6c970efba3334948b2714e05e3d115897ac2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 2, + "description": "Brisante Themen rund um Fragen der Medienqualit\u00e4t werden mit nationalen und internationalen Expertinnen und Experten im ORF-Dialogforum diskutiert. Dieses Videoarchiv zeigt eine Auswahl von spannenden Debatten.", + "headline": "Best of ORF-Dialogforum", + "id": 13557962, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Veranstaltungen", + "sub_headline": "Die Welt der Medien", + "title": "Best of ORF-Dialogforum", + "videos": 19, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557962" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563707" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16563708" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557962\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563707_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563707_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563707_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563707_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/thumb_16563707_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/64\/333f5773de6ba7deff7608d5a40f4d9133b80782.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563708_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563708_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563708_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563708_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/thumb_16563708_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/64\/7292f6da731f40500adc7e668f856ff94699fb58.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 9, + "description": "Die Sendung \"Bundesland heute\" hat 2018 ihr 30-j\u00e4hriges Jubil\u00e4um gefeiert. Zu diesem Anlass zeigt dieses Videoarchiv bewegende Momente aus drei Jahrzehnten regionaler Berichterstattung.", + "headline": "Bewegende Momente aus \"Bundesland heute\"", + "id": 13557894, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "sub_headline": "Erinnerungen", + "title": "Bewegende Momente aus \"Bundesland heute\"", + "videos": 275, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557894" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/8473895" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557894\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0085\/74\/thumb_8473895_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0085\/74\/thumb_8473895_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0085\/74\/thumb_8473895_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0085\/74\/thumb_8473895_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0085\/74\/thumb_8473895_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0085\/74\/d053a7e694fc27ceb1c2812a28070c800cd10b8b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 3, + "description": "Am 1. August 1955 wurde in \u00d6sterreich mit dem regelm\u00e4\u00dfigen Fernsehversuchsprogramm begonnen. Dieses Archiv unternimmt eine kleine Zeitreise zu den Anf\u00e4ngen des Fernsehens und zeigt historischer Beitr\u00e4ge.", + "headline": "Die Geschichte des Fernsehens", + "id": 10539830, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "sub_headline": "Bewegtbild als Revolution", + "title": "Die Geschichte des Fernsehens", + "videos": 40, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10539830" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559928" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559929" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/10539830\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559928_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559928_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559928_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559928_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559928_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/093549ab01076d60e4491395f3e6f196f460a429.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559929_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559929_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559929_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559929_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/thumb_16559929_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0166\/60\/0e42a20d70811e711e47c24fe003de259cacf7e6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 2, + "description": "Von Gespr\u00e4chsrunden \u00fcber Wutb\u00fcrger oder der Sprachkultur bei der TV-Serie \"Mundl - Ein echter Wiener geht nicht unter\" bis zu legend\u00e4ren \"Skandal-Clubs\" mit Nina Hagen \u2013 das \"Club2\"-Archiv reicht zur\u00fcck bis ins Jahr 1978.", + "headline": "Best of \"Club 2\"", + "id": 5106915, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "sub_headline": "Unvergessene Diskussionen", + "title": "Best of \"Club 2\"", + "videos": 26, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/5106915" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16541285" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/5106915\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541285_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541285_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541285_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541285_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/thumb_16541285_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/42\/062415e4a42a2c8eb0f9ef024aec54fb7330323d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": null, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "children_count": 8, + "description": "Am 10. Mai 2014 hat \u00d6sterreich das erste Mal nach 48 Jahren wieder den Song Contest gewonnen. Dieses Archiv dokumentiert anhand aller \u00d6sterreich-Starter des Bewerbs von 1957 bis heute.", + "headline": "\u00d6sterreich beim Song Contest", + "id": 9174892, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Musik", + "sub_headline": "Alle Auftritte im R\u00fcckblick", + "title": "\u00d6sterreich beim Song Contest", + "videos": 56, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9174892" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16559834" + }, + "image12x5": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16656585" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "parent": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/13557916" + }, + "children": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/history\/9174892\/children" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559834_archive_topics_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559834_archive_topics_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559834_archive_topics_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559834_archive_topics_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/thumb_16559834_archive_topics_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topics\/0166\/60\/254eaaa4cc096a7b4493fc76741bac14a98e2513.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image12x5": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/57\/thumb_16656585_archive_topic_12x5_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/57\/thumb_16656585_archive_topic_12x5_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/57\/thumb_16656585_archive_topic_12x5_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/57\/thumb_16656585_archive_topic_12x5_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/57\/thumb_16656585_archive_topic_12x5_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/archive_topic_12x5\/0167\/57\/807dbb989a61c6cf46b78321ac8c65c123453321.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/test/resources/orfOn/letter_1.json b/src/test/resources/orfOn/letter_1.json new file mode 100644 index 000000000..abbc22d76 --- /dev/null +++ b/src/test/resources/orfOn/letter_1.json @@ -0,0 +1,1490 @@ +{ + "page": 1, + "limit": 20, + "pages": 1, + "total": 9, + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profiles\/lettergroup\/G?page=1&limit=20" + }, + "first": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profiles\/lettergroup\/G?page=1&limit=20" + }, + "last": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profiles\/lettergroup\/G?page=1&limit=20" + } + }, + "_embedded": { + "items": [ + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": null, + "description": "Gesundheitsmagazin mit Christine Reiler", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "G'sund in \u00d6sterreich", + "hide_in_letter_group": false, + "id": 13894465, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14207677, + "oegs": false, + "oewa_base_path": "Redcont\/Homepage\/Homepage", + "online_episode_count": 2, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "G'sund in \u00d6sterreich", + "type": "temporary", + "updated_at": "2023-11-17T12:07:16+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16182644" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16182644" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1176" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13894465\/advertising\/tags" + }, + "oegs_profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895063" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/a91f495a8fe27e1a426b24c5f09bfbb4251718d3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/thumb_16182644_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0162\/83\/a91f495a8fe27e1a426b24c5f09bfbb4251718d3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Antworten auf aktuelle Fragen von Kindern", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Ganz Ohr", + "hide_in_letter_group": false, + "id": 13895942, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14207877, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Ganz Ohr", + "type": "temporary", + "updated_at": "2024-01-05T11:39:04+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16593345" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16593345" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895942\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/0df72bab81e7d93ccff25d352d525369241f730c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/thumb_16593345_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/94\/0df72bab81e7d93ccff25d352d525369241f730c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Tipps und Tricks f\u00fcr die Gartengestaltung", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Garteln in Salzburg", + "hide_in_letter_group": false, + "id": 8850620, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14207914, + "oegs": false, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Garteln in Salzburg", + "type": "temporary", + "updated_at": "2022-01-12T16:18:33+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/7471671" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/7471671" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/3309573" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850620\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/cd477576f9883154a1bdfd98f9bf3ff5435a8a6b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471671_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/cd477576f9883154a1bdfd98f9bf3ff5435a8a6b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": "Derzeit kein Video verf\u00fcgbar", + "dataset_name": "", + "description": "Frech, humorvoll und politisch unkorrekt", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Gemischtes Doppel - Beinahe wahre Geschichten", + "hide_in_letter_group": false, + "id": 13732047, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14207399, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "online_episode_count": 4, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Gemischtes Doppel - Beinahe wahre Geschichten", + "type": "temporary", + "updated_at": "2023-11-28T17:25:45+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13283" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/13283" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/13740650" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703835" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13732047\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/ee7356298e3a138450ca92146f2a62a03b5a828f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/thumb_13283_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0001\/14\/ee7356298e3a138450ca92146f2a62a03b5a828f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Christine-N\u00f6stlinger-Verfilmung", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Geschichten vom Franz", + "hide_in_letter_group": false, + "id": 13895899, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14207343, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/FilmUndKino", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [ + { + "id": 2703833, + "advertising_mapping": { + "live": { + "web": { + "sb": 4420063, + "tbar": 4420064, + "pre": 4420065, + "post": 4420066 + }, + "mob": { + "par": 4420067, + "pre": 4420221, + "post": 4420069 + }, + "app": { + "par": 4420070, + "pre": 4420071, + "post": 4420072 + }, + "smart": { + "pre": 4420073, + "post": 4420074 + } + }, + "vod": { + "web": { + "sb": 4420438, + "tbar": 4420439, + "pre": 4420440, + "post": 4420441 + }, + "mob": { + "par": 4420442, + "pre": 4420443, + "post": 4420444 + }, + "app": { + "par": 4420445, + "pre": 4420446, + "post": 4420447 + }, + "smart": { + "pre": 4420448, + "post": 4420449 + } + } + }, + "sorting": 10, + "title": "Film & Serie", + "updated_at": "2023-12-31T16:38:57+01:00", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596302" + }, + "profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/profiles" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/episodes" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703833\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/thumb_16596302_genres_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/genres\/0166\/97\/a6885e2f8ea6f778dcac9af57dfea24006218d76.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "sub_headline": null, + "title": "Geschichten vom Franz", + "type": "temporary", + "updated_at": "2023-12-29T20:29:49+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16535569" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16535569" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703801" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895899\/advertising\/tags" + }, + "audio_description_profile": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13895900" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/151b8422eb054f50e837b472e8490616eced1c9b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/thumb_16535569_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/36\/151b8422eb054f50e837b472e8490616eced1c9b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": "", + "description": "Tipps f\u00fcr ein gesundes Leben", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Gesund in Salzburg", + "hide_in_letter_group": false, + "id": 8850612, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14207624, + "oegs": false, + "oewa_base_path": "Redcont\/Nachrichten\/LokaleNachrichten", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Gesund in Salzburg", + "type": "temporary", + "updated_at": "2022-01-12T16:18:22+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/7471669" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/7471669" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/3309573" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/8850612\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/73f7fa14577ceea42bd6d08520c40ac1f12a26a9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/thumb_7471669_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0075\/72\/73f7fa14577ceea42bd6d08520c40ac1f12a26a9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": null, + "description": null, + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Glanz f\u00fcr die Ewigkeit - Die Restaurierung von Stift Melk", + "hide_in_letter_group": false, + "id": 13892414, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14087719, + "oegs": false, + "oewa_base_path": "Redcont\/Homepage\/Homepage", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Glanz f\u00fcr die Ewigkeit - Die Restaurierung von Stift Melk", + "type": "temporary", + "updated_at": "2021-01-05T11:12:31+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11312079" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11312079" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1173" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13892414\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/dd0478a018e4cd631c1eed182a303e2cc2198a58.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/thumb_11312079_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0114\/13\/dd0478a018e4cd631c1eed182a303e2cc2198a58.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": null, + "description": "Die Liga der PGA Tour", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Golf DP World Tour", + "hide_in_letter_group": false, + "id": 13887359, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14183755, + "oegs": false, + "oewa_base_path": "Redcont\/Sport\/Sonstiges", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Golf DP World Tour", + "type": "temporary", + "updated_at": "2023-06-23T08:54:20+02:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/8308866" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/8308866" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "theme": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/theme\/6644855" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/1178" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13887359\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/7f99dcab31ff36882f4a2564e3f55f0241b36c1f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/thumb_8308866_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0084\/09\/7f99dcab31ff36882f4a2564e3f55f0241b36c1f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "audio_description": false, + "break_text": null, + "break_title": null, + "dataset_name": null, + "description": "Late-Night-Show mit Peter Klien", + "has_active_youth_protection": false, + "has_youth_protection": false, + "headline": "Gute Nacht \u00d6sterreich", + "hide_in_letter_group": false, + "id": 13890803, + "letter_group": "G", + "livestream_sub_headline": null, + "newest_episode_id": 14205378, + "oegs": false, + "oewa_base_path": "Redcont\/KulturUndFreizeit\/Sonstiges", + "online_episode_count": 1, + "profile_website": null, + "secondary_genres": [], + "sub_headline": null, + "title": "Gute Nacht \u00d6sterreich", + "type": "temporary", + "updated_at": "2024-01-03T15:01:16+01:00", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/8789040" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/8789040" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "genre": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/genre\/2703835" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803\/links" + }, + "episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803\/episodes" + }, + "related_profiles": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803\/related" + }, + "latest_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803\/episode\/latest" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/profile\/13890803\/advertising\/tags" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/8c860e96736333e545f62dc039f6b29c56859b2d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/thumb_8789040_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0088\/90\/8c860e96736333e545f62dc039f6b29c56859b2d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] + } +} \ No newline at end of file diff --git a/src/test/resources/orfOn/schedule.json b/src/test/resources/orfOn/schedule.json new file mode 100644 index 000000000..7e3655731 --- /dev/null +++ b/src/test/resources/orfOn/schedule.json @@ -0,0 +1,21475 @@ +[ + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T06:11:00+01:00", + "delete_date": "2024-03-23T06:11:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1107, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter-Panorama und Programmvorschau vom 15.02.2024", + "id": 14213644, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter-Panorama", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213644_0050_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213644_0050_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213644_0050_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213644_0050_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213644_0050_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213644_0050_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213644_0050_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213644_0050_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter-Panorama und Programmvorschau vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213644" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817952" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817952" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/908abe5eb30f2620326095e2fa25311dbb06a8ca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817952_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/908abe5eb30f2620326095e2fa25311dbb06a8ca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T06:30:00+01:00", + "delete_date": "2024-03-23T06:30:00+01:00", + "vod_ressort": null, + "description": "Sicherheitskonferenz in M\u00fcnchen | Talk: Wer vom Wahlrecht ausgeschlossen ist | Meditationsunterricht bei M\u00f6nchen | Das gr\u00f6\u00dfte Wimmelbild der Welt | Der Hunde-Coach: Rechts-Links | Wort der Woche | Umstyling: Robert Kugler | Talk: Garteln mit Reinhard Kittenberger | Hitpanorama | Russland-Experte stellt Buch \u00fcber Ukraine-Krieg vor | Kalenderblick | Talk: \u00c4rger im Stra\u00dfenverkehr | Einfach gut: Zwiebelrostbraten mit R\u00f6stkartoffeln | Talk: Science Busters & Friends for Future | Hitpanorama", + "duration_seconds": 3028, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Guten Morgen \u00d6sterreich 06:30", + "id": 14213708, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Guten Morgen \u00d6sterreich", + "teaser_text": "Sicherheitskonferenz in M\u00fcnchen | Talk: Wer vom Wahlrecht ausgeschlossen ist | Meditationsunterricht bei M\u00f6nchen | Das gr\u00f6\u00dfte Wimmelbild der Welt | Der Hunde-Coach: Rechts-Links | Wort der Woche | Umstyling: Robert Kugler | Talk: Garteln mit Reinhard Kittenberger | Hitpanorama | Russland-Experte stellt Buch \u00fcber Ukraine-Krieg vor | Kalenderblick | Talk: \u00c4rger im Stra\u00dfenverkehr | Einfach gut: Zwiebelrostbraten mit R\u00f6stkartoffeln | Talk: Science Busters & Friends for Future | Hitpanorama", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213708_0017_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213708_0017_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213708_0017_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213708_0017_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213708_0017_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213708_0017_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213708_0017_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213708_0017_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Guten Morgen \u00d6sterreich 06:30", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213708" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817832" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817832" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/c770b3b4eac0fb05990b7ce8c88781cbe31578b3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817832_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/c770b3b4eac0fb05990b7ce8c88781cbe31578b3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:00:00+01:00", + "delete_date": "2024-03-23T07:00:00+01:00", + "vod_ressort": null, + "description": "Faschingskehraus im Jahr gro\u00dfer Wahlen | Biegler (ORF) zu den Aschermittwoch-Reden | Druck auf Israel und Hamas w\u00e4chst | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | EU-Abstimmung \u00fcber \"LKW-Gigaliner\" | Flughafen baut Terminal 3 f\u00fcr 420 Mio. Euro aus | Wetter", + "duration_seconds": 510, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB 7:00 vom 15.02.2024", + "id": 14213709, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 7:00", + "teaser_text": "Faschingskehraus im Jahr gro\u00dfer Wahlen | Biegler (ORF) zu den Aschermittwoch-Reden | Druck auf Israel und Hamas w\u00e4chst | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | EU-Abstimmung \u00fcber \"LKW-Gigaliner\" | Flughafen baut Terminal 3 f\u00fcr 420 Mio. Euro aus | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213709_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213709_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213709_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213709_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213709_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213709_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213709_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213709_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 7:00 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213709" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817853" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817853" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/763f376952f1083bf4b58918c8c202257ed446d6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817853_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/763f376952f1083bf4b58918c8c202257ed446d6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:05:34+01:00", + "delete_date": "2024-03-23T07:05:34+01:00", + "vod_ressort": null, + "description": "Kasperl soll auf die Schatzkiste des K\u00f6nigs aufpassen, damit diese in dessen Abwesenheit nicht gestohlen werden kann. Doch genau das passiert als Kasperl kurz ins Haus geht um der Gro\u00dfmutti Bescheid zu geben. Schlurfi und Murfi, ein R\u00e4uberp\u00e4rchen, nutzen die Gelegenheit, stehlen die Schatzkiste und nehmen sie mit in den R\u00e4uberwald. Kasperl, Strolchi und Hami Hami, das Krokodil, eilen nach um die Kiste zur\u00fcckzuholen, doch diese ist hinter einer Zaubermauer versteckt und wird von einem Drachen bewacht. Doch Kasperl wei\u00df Rat...\r\nBildquelle: ORF", + "duration_seconds": 1385, + "field_descriptor": "", + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Kasperl & Strolchi: Schlurfi, Murfi und die Schatzkiste", + "id": 14213692, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vormittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Servus Kasperl", + "teaser_text": "Kasperl soll auf die Schatzkiste des K\u00f6nigs aufpassen, damit diese in dessen Abwesenheit nicht gestohlen werden kann. Doch genau das passiert als Kasperl kurz ins Haus geht um der Gro\u00dfmutti Bescheid zu geben. Schlurfi und Murfi, ein R\u00e4uberp\u00e4rchen, nutzen die Gelegenheit, stehlen die Schatzkiste und nehmen sie mit in den R\u00e4uberwald. Kasperl, Strolchi und Hami Hami, das Krokodil, eilen nach um die Kiste zur\u00fcckzuholen, doch diese ist hinter einer Zaubermauer versteckt und wird von einem Drachen bewacht. Doch Kasperl wei\u00df Rat...", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0705_tl_01_Servus-Kasperl-_____14213692__o__7422149396__s15575553_3__ORF1HD_07062918P_07293516P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Servus Kasperl: Kasperl & Strolchi: Schlurfi, Murfi und die Schatzkiste", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213692" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814666" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814666" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/5770a541aca622d50fcf1150d5c004c7a11b8980.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814666_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/5770a541aca622d50fcf1150d5c004c7a11b8980.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:28:40+01:00", + "delete_date": "2024-03-23T07:28:40+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 127, + "field_descriptor": "", + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ABC B\u00e4r Lied vom 15.02.2024", + "id": 14213693, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Viel Spa\u00df beim Lernen", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0730_tl_01_ABC-Baer-Lied-v_____14213693__o__4564029665__s15575554_4__ORF1HD_07293601P_07314315P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ABC B\u00e4r Lied vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213693" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814665" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814665" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/1e6b659be8286ec712fcd0f27177a5650c7fcab4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814665_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/1e6b659be8286ec712fcd0f27177a5650c7fcab4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:30:00+01:00", + "delete_date": "2024-03-23T07:30:00+01:00", + "vod_ressort": null, + "description": "Sicherheitskonferenz in M\u00fcnchen | Talk: Wer vom Wahlrecht ausgeschlossen ist | Meditationsunterricht bei M\u00f6nchen | Das gr\u00f6\u00dfte Wimmelbild der Welt | Der Hunde-Coach: Rechts-Links | Talk: Garteln mit Reinhard Kittenberger | Hitpanorama | Russland-Experte stellt Buch \u00fcber Ukraine-Krieg vor | Kalenderblick | Talk: \u00c4rger im Stra\u00dfenverkehr | Einfach gut: Zwiebelrostbraten mit R\u00f6stkartoffeln | Talk: Science Busters & Friends for Future | Hitpanorama", + "duration_seconds": 2789, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Guten Morgen \u00d6sterreich 07:30", + "id": 14213946, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Guten Morgen \u00d6sterreich", + "teaser_text": "Sicherheitskonferenz in M\u00fcnchen | Talk: Wer vom Wahlrecht ausgeschlossen ist | Meditationsunterricht bei M\u00f6nchen | Das gr\u00f6\u00dfte Wimmelbild der Welt | Der Hunde-Coach: Rechts-Links | Talk: Garteln mit Reinhard Kittenberger | Hitpanorama | Russland-Experte stellt Buch \u00fcber Ukraine-Krieg vor | Kalenderblick | Talk: \u00c4rger im Stra\u00dfenverkehr | Einfach gut: Zwiebelrostbraten mit R\u00f6stkartoffeln | Talk: Science Busters & Friends for Future | Hitpanorama", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213946_0015_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213946_0015_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213946_0015_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213946_0015_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213946_0015_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213946_0015_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213946_0015_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213946_0015_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Guten Morgen \u00d6sterreich 07:30", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213946" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818038" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818038" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/7b54e8de670956399e8b1a612595fb0a2d8d970f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818038_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/7b54e8de670956399e8b1a612595fb0a2d8d970f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:30:00+01:00", + "delete_date": "2024-03-23T07:30:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1617, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetterpanorama vom 15.02.2024", + "id": 14213738, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter-Panorama", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0730_tl_06_Wetterpanorama-_Wetterpanorama-__14213738__o__1087329285__s15575894_4__ORF3HD_07325021P_07594820P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetterpanorama vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213738" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818662" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818662" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/7026ea24d885ad73802a3773b397e81f22e6752f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818662_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/7026ea24d885ad73802a3773b397e81f22e6752f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:30:00+01:00", + "delete_date": "2024-03-23T07:30:00+01:00", + "vod_ressort": null, + "description": "Deftige Aschermittwochsreden der Parteichefs | Politik-Analytiker Hofer \u00fcber Parteireden | Sch\u00fcsse bei Super Bowl-Parade | Deutschland \u00fcberholt Japan | Wetter", + "duration_seconds": 201, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB 7:30 vom 15.02.2024", + "id": 14213710, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 7:30", + "teaser_text": "Deftige Aschermittwochsreden der Parteichefs | Politik-Analytiker Hofer \u00fcber Parteireden | Sch\u00fcsse bei Super Bowl-Parade | Deutschland \u00fcberholt Japan | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0730_tl_02_ZIB-7-30-vom-15_ZIB-7-30-vom-15__14213710__o__9097701116__s15575734_4__ORF2HD_07300114P_07332301P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 7:30 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213710" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817931" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16817931" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/871b3ae5f0e0023c7289913eca30b3bfa7c7db78.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/thumb_16817931_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/18\/871b3ae5f0e0023c7289913eca30b3bfa7c7db78.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T07:30:48+01:00", + "delete_date": "2024-03-23T07:30:48+01:00", + "vod_ressort": null, + "description": "Kinder kochen mit Profikoch Alexander Kumptner ein Gericht f\u00fcr ihre Freunde. Die anderen basteln derweil eine lustige Tischdekoration. Wird das alles klappen? In dieser Folge steht asiatisches Essen auf dem Speiseplan. Die Kids entscheiden sich f\u00fcr einen asiatischen Wok mit H\u00fchner-Satay-Spie\u00dfen. Die Kochkids Noah und Theresa sind heute an der Reihe. Als Nachtisch serviert das Koch-Trio ger\u00f6stete Kokosnussst\u00fcckchen. Zum asiatischen Essen geh\u00f6rt nat\u00fcrlich eine asiatische Tischdekoration. Daf\u00fcr basteln Anna, Stani, David und Anna-Sophie bunt verzierte Essensboxen. Sie basteln auch lustige Origami-Springfr\u00f6sche als Namensk\u00e4rtchen.\r\nBildquelle: ORF", + "duration_seconds": 928, + "field_descriptor": "", + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Asiatisches Wokgericht mit H\u00fchner-Satay-Spie\u00dfen", + "id": 14213694, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vormittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Schmatzo", + "teaser_text": "Kinder kochen mit Profikoch Alexander Kumptner ein Gericht f\u00fcr ihre Freunde. Die anderen basteln derweil eine lustige Tischdekoration. Wird das alles klappen? In dieser Folge steht asiatisches Essen auf dem Speiseplan. Die Kids entscheiden sich f\u00fcr einen asiatischen Wok mit H\u00fchner-Satay-Spie\u00dfen. Die Kochkids Noah und Theresa sind heute an der Reihe. Als Nachtisch serviert das Koch-Trio ger\u00f6stete Kokosnussst\u00fcckchen. Zum asiatischen Essen geh\u00f6rt nat\u00fcrlich eine asiatische Tischdekoration. Daf\u00fcr basteln Anna, Stani, David und Anna-Sophie bunt verzierte Essensboxen. Sie basteln auch lustige Origami-Springfr\u00f6sche als Namensk\u00e4rtchen.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0735_tl_01_Schmatzo--Asiat_____14213694__o__5438444996__s15575563_3__ORF1HD_07314319P_07471217P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Schmatzo: Asiatisches Wokgericht mit H\u00fchner-Satay-Spie\u00dfen", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213694" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814664" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814664" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/d1bb87b222ea382f79e729766183c5442379c113.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814664_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/d1bb87b222ea382f79e729766183c5442379c113.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T08:00:00+01:00", + "delete_date": "2024-03-23T08:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1797, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Yoga Magazin: Folge 145", + "id": 14213752, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Fit und entspannt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213752_0006_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213752_0006_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213752_0006_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213752_0006_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213752_0006_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213752_0006_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213752_0006_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213752_0006_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Yoga Magazin: Folge 145", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213752" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818804" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818804" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/323fab431e0a18bc6ac5272a70f4d7229af44720.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818804_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/323fab431e0a18bc6ac5272a70f4d7229af44720.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T08:00:00+01:00", + "delete_date": "2024-03-23T08:00:00+01:00", + "vod_ressort": null, + "description": "Faschingskehraus im Jahr gro\u00dfer Wahlen | Biegler (ORF) zu den Aschermittwoch-Reden | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | Druck auf Israel und Hamas w\u00e4chst | EU-Abstimmung \u00fcber \"LKW-Gigaliner\" | Neuer Film von Houchang Allahyari | Wetter", + "duration_seconds": 535, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB 8:00 vom 15.02.2024", + "id": 14213711, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 8:00", + "teaser_text": "Faschingskehraus im Jahr gro\u00dfer Wahlen | Biegler (ORF) zu den Aschermittwoch-Reden | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | Druck auf Israel und Hamas w\u00e4chst | EU-Abstimmung \u00fcber \"LKW-Gigaliner\" | Neuer Film von Houchang Allahyari | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213711_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213711_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213711_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213711_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213711_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213711_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213711_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213711_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 8:00 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213711" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818029" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818029" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/f620580c5e834bcd73bc24c6fb8633c955a65c5d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818029_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/f620580c5e834bcd73bc24c6fb8633c955a65c5d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T08:30:00+01:00", + "delete_date": "2024-03-23T08:30:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1692, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Fit Aktiv f\u00fcr Junggebliebene: Folge 159", + "id": 14213753, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Fit Aktiv f\u00fcr Junggebliebene", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0830_tl_03_Fit-Aktiv-fuer-_Fit-Aktiv-fuer-__14213753__o__2923811206__s15575805_5__ORFSHD_08302719P_08584017P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Fit Aktiv f\u00fcr Junggebliebene: Folge 159", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213753" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818285" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818285" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/61da2e2c8c2ba0261858e8bcff9167b4d8bace5a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818285_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/61da2e2c8c2ba0261858e8bcff9167b4d8bace5a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T08:30:00+01:00", + "delete_date": "2024-03-23T08:30:00+01:00", + "vod_ressort": null, + "description": "Talk: Wer vom Wahlrecht ausgeschlossen ist | Sicherheitskonferenz in M\u00fcnchen | Das gr\u00f6\u00dfte Wimmelbild der Welt | Der Hunde-Coach: Rechts-Links | Wort der Woche | Umstyling: Robert Kugler | Talk: Garteln mit Reinhard Kittenberger | Hitpanorama", + "duration_seconds": 1482, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Guten Morgen \u00d6sterreich 08:30", + "id": 14213947, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Guten Morgen \u00d6sterreich", + "teaser_text": "Talk: Wer vom Wahlrecht ausgeschlossen ist | Sicherheitskonferenz in M\u00fcnchen | Das gr\u00f6\u00dfte Wimmelbild der Welt | Der Hunde-Coach: Rechts-Links | Wort der Woche | Umstyling: Robert Kugler | Talk: Garteln mit Reinhard Kittenberger | Hitpanorama", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213947_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213947_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213947_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213947_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213947_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213947_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213947_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213947_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Guten Morgen \u00d6sterreich 08:30", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213947" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818148" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818148" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/dffbf4e118d6a9e07bd2ff30304595d5fabb4962.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818148_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/dffbf4e118d6a9e07bd2ff30304595d5fabb4962.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T08:30:00+01:00", + "delete_date": "2024-03-23T08:30:00+01:00", + "vod_ressort": null, + "description": "Deftige Aschermittwochsreden der Parteichefs | Politik-Analytiker Hofer \u00fcber Parteireden | Sch\u00fcsse bei Super Bowl-Parade | Kommerzielle Mondmission | Wetter", + "duration_seconds": 214, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB 8:30 vom 15.02.2024", + "id": 14213712, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 8:30", + "teaser_text": "Deftige Aschermittwochsreden der Parteichefs | Politik-Analytiker Hofer \u00fcber Parteireden | Sch\u00fcsse bei Super Bowl-Parade | Kommerzielle Mondmission | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0830_tl_02_ZIB-8-30-vom-15_ZIB-8-30-vom-15__14213712__o__1261796432__s15575793_3__ORF2HD_08300113P_08333610P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 8:30 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213712" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818070" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818070" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/366e74643997e9891a374ca2ec00f9e5fea70303.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818070_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/366e74643997e9891a374ca2ec00f9e5fea70303.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T09:00:00+01:00", + "delete_date": "2024-03-23T09:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 14625, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Bundesratssitzung", + "id": 14213739, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Bundesrat", + "teaser_text": null, + "thumbnail_sources": null, + "title": "Bundesratssitzung", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213739" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818319" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818319" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/bcb2af5ab057021c31cb79aa8ff5a72b3847c971.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818319_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/bcb2af5ab057021c31cb79aa8ff5a72b3847c971.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T09:00:00+01:00", + "delete_date": "2024-03-23T09:00:00+01:00", + "vod_ressort": null, + "description": "Faschingskehraus im Jahr gro\u00dfer Wahlen | Biegler (ORF) zu den Aschermittwoch-Reden | NATO-Beratungen mit Schweden und Ukraine | Wehrsch\u00fctz (ORF) zum Mangel an Munition | Druck auf Israel und Hamas w\u00e4chst | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | Wetter", + "duration_seconds": 511, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB 9:00 vom 15.02.2024", + "id": 14213713, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 9:00", + "teaser_text": "Faschingskehraus im Jahr gro\u00dfer Wahlen | Biegler (ORF) zu den Aschermittwoch-Reden | NATO-Beratungen mit Schweden und Ukraine | Wehrsch\u00fctz (ORF) zum Mangel an Munition | Druck auf Israel und Hamas w\u00e4chst | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213713_0011_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213713_0011_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213713_0011_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213713_0011_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213713_0011_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213713_0011_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213713_0011_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213713_0011_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 9:00 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213713" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818170" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818170" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/e7e98c33b468553bbf9b5158eddb1cb4d0fe8d07.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818170_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/e7e98c33b468553bbf9b5158eddb1cb4d0fe8d07.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T09:09:31+01:00", + "delete_date": "2024-03-23T09:09:31+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1044, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Fit mit Philipp vom 15.02.2024", + "id": 14213714, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Morgensport", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_0909_tl_02_Fit-mit-Philipp_____14213714__o__1036469059__s15575646_6__ORF2HD_09092906P_09265405P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Fit mit Philipp vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213714" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818657" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818657" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/364b2381bd7811637a041c7258835bdc54ee3ce2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818657_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/364b2381bd7811637a041c7258835bdc54ee3ce2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T11:08:36+01:00", + "delete_date": "2024-03-23T11:08:36+01:00", + "vod_ressort": null, + "description": "Die kuriosesten Fragen, die witzigsten Antworten, die verr\u00fccktesten \"Dinge der Woche\" und viel Spa\u00df mit Oliver Baier und seinen G\u00e4sten.\r\n\r\nBildquelle: ORF\/G\u00fcnther Pichlkostner", + "duration_seconds": 2424, + "field_descriptor": "", + "genre_id": 2703835, + "genre_title": "Comedy & Satire", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Was gibt es Neues? - Archivfolge", + "id": 14213695, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vormittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Was gibt es Neues?", + "teaser_text": "Die kuriosesten Fragen, die witzigsten Antworten, die verr\u00fccktesten \"Dinge der Woche\" und viel Spa\u00df mit Oliver Baier und seinen G\u00e4sten.\r\n\r\nBildquelle: ORF\/G\u00fcnther Pichlkostner", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213695_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213695_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213695_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213695_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213695_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213695_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213695_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213695_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Was gibt es Neues? - Archivfolge", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213695" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818341" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818341" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/74241df3316f069b051b030f03d5d45fe25d1ea7.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818341_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/74241df3316f069b051b030f03d5d45fe25d1ea7.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T11:36:42+01:00", + "delete_date": "2024-03-23T11:36:42+01:00", + "vod_ressort": null, + "description": "Eine TV-Dokumentation aus dem ORF-Landesstudio N\u00d6 \u00fcber die spannende Regionalkultur von Radlbrunn bis Haidershofen:\r\nDie Regionalkultur in Nieder\u00f6sterreich ist jung, kreativ und vielf\u00e4ltig. Vom tiefsten Mostviertel bis hin zum \u00e4u\u00dfersten Waldviertel, vom Weinviertel bis an die Donau \u2013 in allen Winkeln Nieder\u00f6sterreichs wird gewerkt, gemalt, gesungen, gespielt, geforscht und Kulturgut belebt.\r\n\r\nBildquelle: ORF\/ORF-Nieder\u00f6sterreich", + "duration_seconds": 1469, + "field_descriptor": "", + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Vielseitig und jung - Regionalkultur in N\u00d6", + "id": 14213716, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vormittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Belebtes Kulturgut", + "teaser_text": "Eine TV-Dokumentation aus dem ORF-Landesstudio N\u00d6 \u00fcber die spannende Regionalkultur von Radlbrunn bis Haidershofen:\r\nDie Regionalkultur in Nieder\u00f6sterreich ist jung, kreativ und vielf\u00e4ltig. Vom tiefsten Mostviertel bis hin zum \u00e4u\u00dfersten Waldviertel, vom Weinviertel bis an die Donau \u2013 in allen Winkeln Nieder\u00f6sterreichs wird gewerkt, gemalt, gesungen, gespielt, geforscht und Kulturgut belebt.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1136_tl_02_Vielseitig-und-_____14213716__o__9366507656__s15575406_6__ORF2HD_11363216P_12010212P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Vielseitig und jung - Regionalkultur in N\u00d6", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213716" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814076" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814076" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/adf65b2b49de87086d6445520adfedec46f2f98d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814076_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/adf65b2b49de87086d6445520adfedec46f2f98d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T12:03:12+01:00", + "delete_date": "2024-03-23T12:03:12+01:00", + "vod_ressort": null, + "description": "Er gilt als brutaler, perfider und verr\u00fcckter Herrscher und als einer der gr\u00f6\u00dften Verbrecher der Geschichte. Sein Name steht als Synonym f\u00fcr das B\u00f6se schlechthin: Nero. Zur Liste der Vorw\u00fcrfe z\u00e4hlen Mord an der eigenen Mutter, Mord an der Ehefrau, N\u00f6tigung zum Selbstmord der engsten Vertrauten, Inzest, sexuelle Perversionen, Gr\u00f6\u00dfenwahn, brutale Christenverfolgung und nicht zuletzt die Brandstiftung in Rom. Doch neueste Forschungen zeigen den Herrscher in einem ganz anderen Licht. Keines der ihm zur Last gelegten Verbrechen h\u00e4lt bei genauer Untersuchung stand, Nero war beim Volk beliebt und seine Regentschaft galt als goldenes Zeitalter. Woher stammt dann das Bild eines verr\u00fcckten Monsters? Seit Neros Regentschaft vor knapp 2000 Jahren gab es einen massiven \u201eTwist\u201c in den g\u00e4ngigen Vorstellungen von Herrschertugenden und Moral. So wurde Nero von der Geschichtsschreibung gleich zweimal verurteilt: Einmal aus Sicht der r\u00f6mischen Eliten und ein zweites Mal aus dem Blickwinkel des Christentums. Der Film \u201eDie Akte Nero\u201c verwebt den aktuellen Stand der Forschung, modernste Forensik und nachinszenierte Spielszenen zu einem spannenden Doku-Krimi. In einer Cold Case-Ermittlung wird der Fall Nero als Kriminalgeschichte um Verbrechen, Sex und Intrigen neu aufgerollt \u2013 durch den bekannten Profiler und Kriminalpsychologen Thomas M\u00fcller. Mit einem \u00fcberraschenden Ende! Muss die Geschichte neu geschrieben werden? Ein Film von Klaus T. Steindl.\r\n\r\nBildquelle: ORF\/Interspot Film\/Helmut Wimmer", + "duration_seconds": 2648, + "field_descriptor": "", + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Die Akte Nero - Auf den Spuren einer antiken Verschw\u00f6rung", + "id": 14213717, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Universum History", + "teaser_text": "Die Dokumentation von Klaus T. Steindl verwebt den aktuellen Stand der Forschung, modernste Forensik und nachinszenierte Spielszenen zu einem spannenden Doku-Krimi.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1203_in_02_Universum-Histo_____14213717__o__1343193399__s15575357_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Universum History: Die Akte Nero - Auf den Spuren einer antiken Verschw\u00f6rung", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213717" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813676" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813676" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813679" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/21fea78201836522fd2b870245e2a788bcdd6ad4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813676_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/21fea78201836522fd2b870245e2a788bcdd6ad4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/14\/thumb_16813679_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/14\/thumb_16813679_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/14\/thumb_16813679_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/14\/thumb_16813679_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/14\/48f76402f173ef1b3eb278c124cb4c814a35d092.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": true, + "date": "2024-02-15T12:34:25+01:00", + "delete_date": "2024-09-02T12:30:00+02:00", + "vod_ressort": null, + "description": "Franziska ist in Gefahr. Ein mutma\u00dflicher M\u00f6rder und Vergewaltiger, der aufgrund ihrer Expertise vor 15 Jahren verurteilt wurde, ist wieder auf freiem Fu\u00df und will Rache. Doch nicht nur damit haben Carl und Helmuth zu tun, sondern auch mit dem Tod eines alten, kranken Mannes, dessen Selbstmord offenbar doch nicht ganz freiwillig war. W\u00e4hrend der Ermittlungen verschwindet Franziska pl\u00f6tzlich spurlos.\r\n\r\nBildquelle: ORF\/SATEL-Film\/Petro Domenigg", + "duration_seconds": 2598, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Soko Donau: Solo f\u00fcr Beck", + "id": 14213763, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": 2014, + "related_audiodescription_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814141_segments_highlight_teaser.jpeg", + "related_audiodescription_episode_title": "AD | Soko Donau: Solo f\u00fcr Beck", + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Krimiserie | Staffel 10", + "teaser_text": "Franziska ist in Gefahr. Ein mutma\u00dflicher M\u00f6rder und Vergewaltiger, der aufgrund ihrer Expertise vor 15 Jahren verurteilt wurde, ist wieder auf freiem Fu\u00df und will Rache. Doch nicht nur damit haben Carl und Helmuth zu tun, sondern auch mit dem Tod eines alten, kranken Mannes, dessen Selbstmord offenbar doch nicht ganz freiwillig war. W\u00e4hrend der Ermittlungen verschwindet Franziska pl\u00f6tzlich spurlos.\r\n\r\nBildquelle: ORF\/SATEL-Film\/Petro Domenigg", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1230_in_01_Soko-Donau--Sol_____14213763__o__4820338986__s15575422_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Soko Donau: Solo f\u00fcr Beck", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213763" + }, + "audio_description_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213899" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814139" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814139" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16806091" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/36f4a02f7def0f4116c9b96e6d40893e4607dd30.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814139_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/36f4a02f7def0f4116c9b96e6d40893e4607dd30.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/550d430bc766093575c6d695fce838b4cd7f4046.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T13:00:00+01:00", + "delete_date": "2024-03-23T13:00:00+01:00", + "vod_ressort": null, + "description": "Signation | Begr\u00fc\u00dfung | Israelische Truppen in Spital in Chan Junis vorgedrungen | Wildner (ORF) zur Offensive Israels | NATO-Beratungen mit Schweden und Ukraine | Wehrsch\u00fctz (ORF) zur br\u00f6ckelnden Unterst\u00fctzung | Transit: Italien schickte Klagsaufforderung an Kommission | Vospernik (ORF) zur Transit-Klage Italiens | Babler (SP\u00d6) von Gewerkschaft kritisiert | Mayer-Bohusch (ORF) zum Kurs der SP\u00d6 | Neue Reform der Betriebskosten gefordert | Schleppender Ausbau von Wasserkraftwerken | Zulassungsschein nun auch digital | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | US-Firma will erste kommerzielle Mondlandung schaffen | Schauspielerin Johanna von Koczian gestorben | Programm zum 200. Strauss-Jubil\u00e4um", + "duration_seconds": 1299, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB 13:00 vom 15.02.2024", + "id": 14213718, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 13:00", + "teaser_text": "Signation | Begr\u00fc\u00dfung | Israelische Truppen in Spital in Chan Junis vorgedrungen | Wildner (ORF) zur Offensive Israels | NATO-Beratungen mit Schweden und Ukraine | Wehrsch\u00fctz (ORF) zur br\u00f6ckelnden Unterst\u00fctzung | Transit: Italien schickte Klagsaufforderung an Kommission | Vospernik (ORF) zur Transit-Klage Italiens | Babler (SP\u00d6) von Gewerkschaft kritisiert | Mayer-Bohusch (ORF) zum Kurs der SP\u00d6 | Neue Reform der Betriebskosten gefordert | Schleppender Ausbau von Wasserkraftwerken | Zulassungsschein nun auch digital | Sch\u00fcsse \u00fcberschatten Super-Bowl-Parade | US-Firma will erste kommerzielle Mondlandung schaffen | Schauspielerin Johanna von Koczian gestorben | Programm zum 200. Strauss-Jubil\u00e4um", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213718_0018_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213718_0018_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213718_0018_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213718_0018_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213718_0018_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213718_0018_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213718_0018_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213718_0018_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 13:00 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213718" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818755" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818755" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/6ed2fe98a42ae618173c563cc0f71b703480f0d9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818755_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/6ed2fe98a42ae618173c563cc0f71b703480f0d9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T13:21:42+01:00", + "delete_date": "2024-03-23T13:21:42+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 95, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Wetter vom 15.02.2024", + "id": 14213719, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter ZIB 13", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1321_tl_02_Wetter-vom-15-0_____14213719__o__1894473601__s15575645_5__ORF2HD_13231308P_13244900P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213719" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818718" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818718" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/f15706d566c93905870e858e4901fb3255fea3ee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818718_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/f15706d566c93905870e858e4901fb3255fea3ee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T13:23:02+01:00", + "delete_date": "2024-03-23T13:23:02+01:00", + "vod_ressort": null, + "description": "Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4serei-Chef | Brand in Hollabrunn | M\u00e4dchen aus Sessellift gefallen | Schwerer B\u00f6llerunfall | Landwirt soll Rind Zunge ausgerissen haben | Boom bei Scheinfirmen | Leiter der Finanzpolizei \u00fcber Scheinunternehmen | Bruck k\u00e4mpft um abgeschobene Familie | Klimatickets zum Ausborgen | Hinweis auf \"konkret\" | Weinmesse in Paris | Strengere Regeln f\u00fcr Hundehalter | Hundetrainer \u00fcber neue Vorschriften | Skisaison auf Karkogel gelaufen | Erste Einblicke in neues Pratermuseum | Wetter", + "duration_seconds": 2206, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Aktuell nach eins vom 15.02.2024", + "id": 14213720, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Aktuell nach eins", + "teaser_text": "Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4serei-Chef | Brand in Hollabrunn | M\u00e4dchen aus Sessellift gefallen | Schwerer B\u00f6llerunfall | Landwirt soll Rind Zunge ausgerissen haben | Boom bei Scheinfirmen | Leiter der Finanzpolizei \u00fcber Scheinunternehmen | Bruck k\u00e4mpft um abgeschobene Familie | Klimatickets zum Ausborgen | Hinweis auf \"konkret\" | Weinmesse in Paris | Strengere Regeln f\u00fcr Hundehalter | Hundetrainer \u00fcber neue Vorschriften | Skisaison auf Karkogel gelaufen | Erste Einblicke in neues Pratermuseum | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213720_0019_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213720_0019_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213720_0019_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213720_0019_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213720_0019_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213720_0019_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213720_0019_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213720_0019_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Aktuell nach eins vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213720" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818817" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818817" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/48a69997ccad50a10dc0720c03e87ccc0c875cde.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/thumb_16818817_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/19\/48a69997ccad50a10dc0720c03e87ccc0c875cde.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T13:50:00+01:00", + "delete_date": "2024-03-23T13:50:00+01:00", + "vod_ressort": null, + "description": "\u201eAlles Gl\u00fcck! Alles Walzer!\u201c Das war das Motto der 22. Grazer Opernredoute. Doch wie viel Gl\u00fcck braucht es f\u00fcr eine gelungene Ballnacht und wie viel harte Arbeit und Vorbereitung sind n\u00f6tig? Diese Dokumentation wirft einen Blick hinter die Kulissen des steirischen Traditionsballs: Von den ersten Polonaiseproben und der Gestaltung der Kr\u00f6nchen \u00fcber den tagelangen Umbau des Opernhauses hin zum Blumenschmuck, der Kulinarik und der Mitternachtseinlage. Ein Film von Thomas Weber.\r\n\r\nBildquelle: ORF\/Marija-M. Kanizaj", + "duration_seconds": 1395, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "\"Alles Gl\u00fcck! Alles Walzer!\" - Hinter den Kulissen der Grazer Opernredoute 2020", + "id": 14213740, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "nachmittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Unser \u00d6sterreich", + "teaser_text": "\u201eAlles Gl\u00fcck! Alles Walzer!\u201c Das war das Motto der 22. Grazer Opernredoute. Doch wie viel Gl\u00fcck braucht es f\u00fcr eine gelungene Ballnacht und wie viel harte Arbeit und Vorbereitung sind n\u00f6tig? Diese Dokumentation wirft einen Blick hinter die Kulissen des steirischen Traditionsballs: Von den ersten Polonaiseproben und der Gestaltung der Kr\u00f6nchen \u00fcber den tagelangen Umbau des Opernhauses hin zum Blumenschmuck, der Kulinarik und der Mitternachtseinlage. Ein Film von Thomas Weber.\r\n\r\nBildquelle: ORF\/Marija-M. Kanizaj", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1350_tl_06_Unser-Oesterrei_____14213740__o__9373518376__s15575437_7__ORF3HD_13532607P_14164114P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Unser \u00d6sterreich: \"Alles Gl\u00fcck! Alles Walzer!\" - Hinter den Kulissen der Grazer Opernredoute 2020", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213740" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814145" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814145" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/a0941dd51dcff2ab0b3b63955430677886a91cee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814145_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/a0941dd51dcff2ab0b3b63955430677886a91cee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T14:00:00+01:00", + "delete_date": "2024-03-23T14:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 3505, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Langlauf-Weltcup: Sprint klassisch Herren und Damen, Highlights aus Canmore", + "id": 14213754, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Langlauf-Weltcup: Damen und Herren", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1400_tl_03_Langlauf-Weltcu_____14213754__o__8972063026__s15576008_8__ORFSHD_13580424P_14563013P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Langlauf-Weltcup: Sprint klassisch Herren und Damen, Highlights aus Canmore", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213754" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819565" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819565" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/29d2da457b388e5ec0ec064d06cf84b50e5a7929.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819565_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/29d2da457b388e5ec0ec064d06cf84b50e5a7929.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T14:02:17+01:00", + "delete_date": "2024-03-23T14:02:17+01:00", + "vod_ressort": null, + "description": "Mit Karl Ploberger, dem Bio-G\u00e4rtner der Nation geht es in die Fastenzeit. Mitgebracht hat er zwei Gerichte, in denen Gem\u00fcse die Hauptrolle spielt: Karottensuppe sowie Gem\u00fcselaibchen mit Tomatensauce.", + "duration_seconds": 1470, + "field_descriptor": "", + "genre_id": 1177, + "genre_title": "Unterhaltung", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Silvia kocht vom 15.02.2024", + "id": 14213721, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Kochsendung", + "teaser_text": "Mit Karl Ploberger, dem Bio-G\u00e4rtner der Nation geht es in die Fastenzeit. Mitgebracht hat er zwei Gerichte, in denen Gem\u00fcse die Hauptrolle spielt: Karottensuppe sowie Gem\u00fcselaibchen mit Tomatensauce.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1402_in_02_Silvia-kocht-vo_____14213721__o__8499923286__s15575459_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Silvia kocht vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213721" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814153" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814153" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/e7d8b5b642263fc4fc49d867f357aad3b54d0a25.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814153_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/e7d8b5b642263fc4fc49d867f357aad3b54d0a25.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T14:15:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Sie arbeiten in schwindelerregenden H\u00f6hen genauso wie in den Kellern der Museen. Durch ihre H\u00e4nde gehen Kultursch\u00e4tze, die wir nur aus der Ferne sehen. Wer hat schon die M\u00f6glichkeit, ein Original von Peter Paul Rubens, unsch\u00e4tzbar wertvolles Porzellan von Maria Theresia oder ein Reliquiar des Heiligen Sebastian in H\u00e4nden zu haben. Sie besch\u00e4ftigen sich oft wochenlang intensiv mit einem Objekt, auch mit forensischen Mitteln, bevor die eigentliche Restaurierung beginnt. Das l\u00e4sst eine Beziehung zu den Werken und deren Sch\u00f6pfern entstehen. Wir geben Einblick in die Welt der Restauratorinnen, eine Welt, die im Kontrast zur Schnelllebigkeit unserer Gesellschaft steht. Ein Film von Wilfried Wagner f\u00fcr das Landesstudio Wien.\r\n\r\nBildquelle: ORF\/Landesstudio Wien", + "duration_seconds": 1484, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Geschichte bewahren - Restauratorinnen in Wien", + "id": 14213741, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Unser \u00d6sterreich", + "teaser_text": "Sie arbeiten in schwindelerregenden H\u00f6hen genauso wie in den Kellern der Museen. Durch ihre H\u00e4nde gehen Kultursch\u00e4tze, die wir nur aus der Ferne sehen. Wer hat schon die M\u00f6glichkeit, ein Original von Peter Paul Rubens, unsch\u00e4tzbar wertvolles Porzellan von Maria Theresia oder ein Reliquiar des Heiligen Sebastian in H\u00e4nden zu haben. Sie besch\u00e4ftigen sich oft wochenlang intensiv mit einem Objekt, auch mit forensischen Mitteln, bevor die eigentliche Restaurierung beginnt. Das l\u00e4sst eine Beziehung zu den Werken und deren Sch\u00f6pfern entstehen. Wir geben Einblick in die Welt der Restauratorinnen, eine Welt, die im Kontrast zur Schnelllebigkeit unserer Gesellschaft steht. Ein Film von Wilfried Wagner f\u00fcr das Landesstudio Wien.\r\n\r\nBildquelle: ORF\/Landesstudio Wien", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1415_tl_06_Unser-Oesterrei_____14213741__o__1105571160__s15575447_7__ORF3HD_14190008P_14434413P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Unser \u00d6sterreich: Geschichte bewahren - Restauratorinnen in Wien", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213741" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814151" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814151" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814154" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/010b70c3dd93fc39bb31ce9d676ceb0ee112dcdc.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814151_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/010b70c3dd93fc39bb31ce9d676ceb0ee112dcdc.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814154_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814154_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814154_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814154_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/ce3eb69cae60020c13c0578aa3adc2ae3d467130.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T14:27:33+01:00", + "delete_date": "2024-03-23T14:27:33+01:00", + "vod_ressort": null, + "description": "Nach ihrem Schw\u00e4cheanfall ist Wilma erstaunlich schnell wieder auf den Beinen. Gemeinsam mit Ana will sie Paragliden gehen. Ana sieht dem Ereignis freudig entgegen. Nur Vincent l\u00e4sst sich nicht t\u00e4uschen und erkennt, wie schlecht es in Wahrheit um Wilma steht. Ihre Tage sind gez\u00e4hlt. Alexandras st\u00fcrmische Aff\u00e4re mit Tom trifft bei Christoph einen wunden Punkt. Von Rachsucht getrieben, leitet er umgehend Toms K\u00fcndigung in die Wege. Doch Tom hat eine starke F\u00fcrsprecherin an seiner Seite.\r\n\r\nBildquelle: ORF\/ARD\/Christof Arnold", + "duration_seconds": 2941, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Sturm der Liebe: Teil 4199", + "id": 14213722, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": "Deutschland", + "production_year": 2024, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Sturm der Liebe", + "teaser_text": "Nach ihrem Schw\u00e4cheanfall ist Wilma erstaunlich schnell wieder auf den Beinen. Gemeinsam mit Ana will sie Paragliden gehen. Ana sieht dem Ereignis freudig entgegen. Nur Vincent l\u00e4sst sich nicht t\u00e4uschen und erkennt, wie schlecht es in Wahrheit um Wilma steht. Ihre Tage sind gez\u00e4hlt. Alexandras st\u00fcrmische Aff\u00e4re mit Tom trifft bei Christoph einen wunden Punkt. Von Rachsucht getrieben, leitet er umgehend Toms K\u00fcndigung in die Wege. Doch Tom hat eine starke F\u00fcrsprecherin an seiner Seite.\r\n\r\nBildquelle: ORF\/ARD\/Christof Arnold", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1427_in_02_Sturm-der-Liebe_____14213722__o__2123099612__s15575355_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Sturm der Liebe: Teil 4199", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213722" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814702" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814702" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16724688" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/4a74a296f03f434380bf5e2becfc1a3a67d59d9d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814702_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/4a74a296f03f434380bf5e2becfc1a3a67d59d9d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0168\/25\/thumb_16724688_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0168\/25\/thumb_16724688_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0168\/25\/thumb_16724688_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0168\/25\/thumb_16724688_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0168\/25\/4b4a1622d74ef607615561b96b1553c3f795111b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T14:45:00+01:00", + "delete_date": "2024-03-23T14:45:00+01:00", + "vod_ressort": null, + "description": "1716 Br\u00fccken und Stege gibt es in Wien \u2013 viermal so viel wie in Venedig. Br\u00fcckenkonstruktionen mit vielf\u00e4ltigen Funktionen f\u00fcr Auto, Bahn und Fu\u00dfg\u00e4nger. Von den ersten Holzbr\u00fccken \u00fcber die Donauarme bis zu den High-Tech-L\u00f6sungen der Gegenwart: ERL\u00d6 zeigt spektakul\u00e4re Ansichten und unbekannte Details dieser Verbindungen, die nicht immer sichtbar sind, wie z.B. der Wiener Naschmarkt \u2013 die 2,8 km lange Einw\u00f6lbung des Wien-Flusses ist eigentlich die \u201abreiteste\u2018 Br\u00fccke der Stadt. Oder der neue Wiener Hauptbahnhof \u2013 eine gewaltige Br\u00fcckenkonstruktion \u00fcber 3 Etagen \u2013 allein f\u00fcr das markante Rautendach wurden 7000 Tonnen Stahl verarbeitet \u2013 genauso viel wie f\u00fcr den Pariser Eiffelturm. Ein Film von Gerald Teufel f\u00fcr das Landesstudio Wien.\r\n\r\nBildquelle: ORF\/Landesstudio Wien\/Mediaentertainment", + "duration_seconds": 1426, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "\u00dcber Br\u00fccken in Wien", + "id": 14213742, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Unser \u00d6sterreich", + "teaser_text": "1716 Br\u00fccken und Stege gibt es in Wien \u2013 viermal so viel wie in Venedig. Br\u00fcckenkonstruktionen mit vielf\u00e4ltigen Funktionen f\u00fcr Auto, Bahn und Fu\u00dfg\u00e4nger. Von den ersten Holzbr\u00fccken \u00fcber die Donauarme bis zu den High-Tech-L\u00f6sungen der Gegenwart: ERL\u00d6 zeigt spektakul\u00e4re Ansichten und unbekannte Details dieser Verbindungen, die nicht immer sichtbar sind, wie z.B. der Wiener Naschmarkt \u2013 die 2,8 km lange Einw\u00f6lbung des Wien-Flusses ist eigentlich die \u201abreiteste\u2018 Br\u00fccke der Stadt. Oder der neue Wiener Hauptbahnhof \u2013 eine gewaltige Br\u00fcckenkonstruktion \u00fcber 3 Etagen \u2013 allein f\u00fcr das markante Rautendach wurden 7000 Tonnen Stahl verarbeitet \u2013 genauso viel wie f\u00fcr den Pariser Eiffelturm. Ein Film von Gerald Teufel f\u00fcr das Landesstudio Wien.\r\n\r\nBildquelle: ORF\/Landesstudio Wien\/Mediaentertainment", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1445_tl_06_Unser-Oesterrei_____14213742__o__5421725886__s15575471_1__ORF3HD_14464015P_15102709P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Unser \u00d6sterreich: \u00dcber Br\u00fccken in Wien", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213742" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814186" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814186" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/152ae60cd04a975c66c8ff39ee4d42e9aa706b7d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814186_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/152ae60cd04a975c66c8ff39ee4d42e9aa706b7d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T15:10:00+01:00", + "delete_date": "2024-03-23T15:10:00+01:00", + "vod_ressort": null, + "description": "Der Blick vom Riesenrad gew\u00e4hrt Eindr\u00fccke auf die kleinen und gro\u00dfen Wunder des Gr\u00fcnen Praters, einem faszinierenden St\u00fcck Auenlandschaft: geschaffen vom Donaustrom und im Lauf der Jahrhunderte vom Menschen nach seinen Bed\u00fcrfnissen ver\u00e4ndert \u2013 jedoch ohne die Natur dabei ganz zu eliminieren. Ein wunderbares St\u00fcck Wildheit inmitten einer Millionenstadt. Regisseur Thomas Rilk hat f\u00fcr das Landesstudio Wien so manche \u00fcberraschende Begegnung mit Wildtieren gemacht.\r\n\r\nBildquelle: ORF\/ORF-Wien", + "duration_seconds": 1472, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Gschichten aus dem Wiener Prater", + "id": 14213743, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Unser \u00d6sterreich", + "teaser_text": "Der Blick vom Riesenrad gew\u00e4hrt Eindr\u00fccke auf die kleinen und gro\u00dfen Wunder des Gr\u00fcnen Praters, einem faszinierenden St\u00fcck Auenlandschaft: geschaffen vom Donaustrom und im Lauf der Jahrhunderte vom Menschen nach seinen Bed\u00fcrfnissen ver\u00e4ndert \u2013 jedoch ohne die Natur dabei ganz zu eliminieren. Ein wunderbares St\u00fcck Wildheit inmitten einer Millionenstadt. Regisseur Thomas Rilk hat f\u00fcr das Landesstudio Wien so manche \u00fcberraschende Begegnung mit Wildtieren gemacht.\r\n\r\nBildquelle: ORF\/ORF-Wien", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1510_tl_06_Unser-Oesterrei_____14213743__o__1901933704__s15575486_6__ORF3HD_15133911P_15381201P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Unser \u00d6sterreich: Gschichten aus dem Wiener Prater", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213743" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814187" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814187" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814188" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/3a6499a04b15d3827dde4150ab73d1d596b6bf3a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814187_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/3a6499a04b15d3827dde4150ab73d1d596b6bf3a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814188_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814188_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814188_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/thumb_16814188_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/15\/350ac263c29f44afec781a7e3bfe09565c26a9c0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:03:01+01:00", + "delete_date": "2024-03-23T16:03:01+01:00", + "vod_ressort": null, + "description": "Die Familie ist der Ort, an dem wir lernen, dass das Wichtigste im Leben die Menschen sind, die wir lieben.\r\nIm besten Fall bedeutet Familie Zusammenhalt und bedingungslose Liebe. In jeder Familie gibt es auch mal Stress, \u00c4rger und Sorgen, aber wenn alle zusammenhalten und sich gegenseitig unterst\u00fctzen, k\u00f6nnen Unstimmigkeiten bew\u00e4ltigt werden.", + "duration_seconds": 3133, + "field_descriptor": "", + "genre_id": 13776488, + "genre_title": "Talk", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Meine perfekte Familie", + "id": 14213723, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Barbara Karlich - Talk um 4", + "teaser_text": "Die Familie ist der Ort, an dem wir lernen, dass das Wichtigste im Leben die Menschen sind, die wir lieben.\r\nIm besten Fall bedeutet Familie Zusammenhalt und bedingungslose Liebe. In jeder Familie gibt es auch mal Stress, \u00c4rger und Sorgen, aber wenn alle zusammenhalten und sich gegenseitig unterst\u00fctzen, k\u00f6nnen Unstimmigkeiten bew\u00e4ltigt werden.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1603_in_02_Barbara-Karlich_____14213723__o__2082398849__s15575467_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Barbara Karlich - Talk um 4: Meine perfekte Familie", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213723" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814155" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814155" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/3505ca13874de57b3255b03af7ba828c2174ed64.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814155_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/3505ca13874de57b3255b03af7ba828c2174ed64.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:04:45+01:00", + "delete_date": "2024-03-23T16:04:45+01:00", + "vod_ressort": null, + "description": "Digitaler Zulassungsschein | Transit: Italien schickte Klagsaufforderung an Kommission | Israelische Truppen in Spital in Chan Junis vorgedrungen | Kommerzielle Mondmission | Medien: Flugzeug kehrt wegen Maden im Gep\u00e4ckfach um | Wetter", + "duration_seconds": 214, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB Flash 1 vom 15.02.2024", + "id": 14213696, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB Flash", + "teaser_text": "Digitaler Zulassungsschein | Transit: Italien schickte Klagsaufforderung an Kommission | Israelische Truppen in Spital in Chan Junis vorgedrungen | Kommerzielle Mondmission | Medien: Flugzeug kehrt wegen Maden im Gep\u00e4ckfach um | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1604_tl_01_ZIB-Flash-1-vom_____14213696__o__2163226516__s15575956_6__ORF1HD_16034114P_16071610P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB Flash 1 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213696" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819571" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819571" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/8112b6b37931b6049029ae0bc3be9be8cc4f8f95.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819571_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/8112b6b37931b6049029ae0bc3be9be8cc4f8f95.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": true, + "date": "2024-02-15T16:09:09+01:00", + "delete_date": "2024-09-02T16:10:00+02:00", + "vod_ressort": null, + "description": "(Krimiserie, AUT 2014)\r\nWas anfangs wie ein Autounfall aussieht, stellt sich doch als Mord heraus: Die Frau, die tot in ihrem Wagen aufgefunden wird, wurde mit Stechapfeltee vergiftet. Ihr Bauernhof in Ober\u00f6sterreich ist Wohnsitz einer nur auf den ersten Blick idyllischen Hippie-Kommune, die vom Mann der Toten, dem charismatischen Simon, geleitet wird. Vieles in der beschaulichen Love-and-Peace-Truppe macht unser Team stutzig, und Carl und Helmuth sto\u00dfen schlie\u00dflich auf ein gef\u00e4hrliches Geheimnis.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Christoph von Friedl (Simon), Fanny Krausz (Mia), Lucie Muhr (Franka), Moritz Ostanek (Lukas), Michael Dangl (Otto Holzinger), Marie Wohlmuth (Anna), Rochus Millauer (Platzwart) u.a.\r\nBuch: Sarah Wassermair und Jacob Groll\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Petro Domenigg", + "duration_seconds": 2619, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Soko Donau: Perfekte Welt", + "id": 14213697, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": 2014, + "related_audiodescription_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_highlight_teaser.jpeg", + "related_audiodescription_episode_title": "AD | Soko Donau: Perfekte Welt", + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Krimiserie | Staffel 10", + "teaser_text": "(Krimiserie, AUT 2014)\r\nWas anfangs wie ein Autounfall aussieht, stellt sich doch als Mord heraus: Die Frau, die tot in ihrem Wagen aufgefunden wird, wurde mit Stechapfeltee vergiftet. Ihr Bauernhof in Ober\u00f6sterreich ist Wohnsitz einer nur auf den ersten Blick idyllischen Hippie-Kommune, die vom Mann der Toten, dem charismatischen Simon, geleitet wird. Vieles in der beschaulichen Love-and-Peace-Truppe macht unser Team stutzig, und Carl und Helmuth sto\u00dfen schlie\u00dflich auf ein gef\u00e4hrliches Geheimnis.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Christoph von Friedl (Simon), Fanny Krausz (Mia), Lucie Muhr (Franka), Moritz Ostanek (Lukas), Michael Dangl (Otto Holzinger), Marie Wohlmuth (Anna), Rochus Millauer (Platzwart) u.a.\r\nBuch: Sarah Wassermair und Jacob Groll\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Petro Domenigg", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1610_in_01_Soko-Donau--Per_____14213697__o__1016790609__s15575505_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Soko Donau: Perfekte Welt", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213697" + }, + "audio_description_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213900" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814189" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814189" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16806091" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/00f19f8fa7b08eff84cd35c665d35e4075d5892e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814189_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/00f19f8fa7b08eff84cd35c665d35e4075d5892e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/550d430bc766093575c6d695fce838b4cd7f4046.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:10:00+01:00", + "delete_date": "2024-09-02T16:10:00+02:00", + "vod_ressort": null, + "description": "(Krimiserie, AUT 2014)\r\nWas anfangs wie ein Autounfall aussieht, stellt sich doch als Mord heraus: Die Frau, die tot in ihrem Wagen aufgefunden wird, wurde mit Stechapfeltee vergiftet. Ihr Bauernhof in Ober\u00f6sterreich ist Wohnsitz einer nur auf den ersten Blick idyllischen Hippie-Kommune, die vom Mann der Toten, dem charismatischen Simon, geleitet wird. Vieles in der beschaulichen Love-and-Peace-Truppe macht unser Team stutzig, und Carl und Helmuth sto\u00dfen schlie\u00dflich auf ein gef\u00e4hrliches Geheimnis.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Christoph von Friedl (Simon), Fanny Krausz (Mia), Lucie Muhr (Franka), Moritz Ostanek (Lukas), Michael Dangl (Otto Holzinger), Marie Wohlmuth (Anna), Rochus Millauer (Platzwart) u.a.\r\nBuch: Sarah Wassermair und Jacob Groll\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Petro Domenigg", + "duration_seconds": 2619, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "AD | Soko Donau: Perfekte Welt", + "id": 14213900, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Krimiserie | Staffel 10", + "teaser_text": "(Krimiserie, AUT 2014)\r\nWas anfangs wie ein Autounfall aussieht, stellt sich doch als Mord heraus: Die Frau, die tot in ihrem Wagen aufgefunden wird, wurde mit Stechapfeltee vergiftet. Ihr Bauernhof in Ober\u00f6sterreich ist Wohnsitz einer nur auf den ersten Blick idyllischen Hippie-Kommune, die vom Mann der Toten, dem charismatischen Simon, geleitet wird. Vieles in der beschaulichen Love-and-Peace-Truppe macht unser Team stutzig, und Carl und Helmuth sto\u00dfen schlie\u00dflich auf ein gef\u00e4hrliches Geheimnis.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Christoph von Friedl (Simon), Fanny Krausz (Mia), Lucie Muhr (Franka), Moritz Ostanek (Lukas), Michael Dangl (Otto Holzinger), Marie Wohlmuth (Anna), Rochus Millauer (Platzwart) u.a.\r\nBuch: Sarah Wassermair und Jacob Groll\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Petro Domenigg", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1610_in_01_AD---Soko-Donau_____14213900__o__2058558865__s15575527_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "AD | Soko Donau: Perfekte Welt", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213900" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814211" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814211" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818749" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/27b82ee0566f8ccc8c017e0901459e05ea5af283.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814211_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/27b82ee0566f8ccc8c017e0901459e05ea5af283.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/cac15b3288bcb8266ba9d0ef337f77720ec87ead.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:25:00+01:00", + "delete_date": "2024-03-23T16:25:00+01:00", + "vod_ressort": null, + "description": "In diesem tierischen Alltag kann man die erstaunliche Vielfalt an Ges\u00e4ngen, Lauten und Pfiffen h\u00f6ren, die Buckelwale zur Kommunikation verwenden. Ein Wurf L\u00f6wenbabys lernt das Leben im Rudel kennen und nimmt an einer der gr\u00f6\u00dften Wanderungen der Welt teil \u2013 der Wanderung der Gnus. Auch l\u00e4sst sich eine Gruppe, eine sogenannte Verschw\u00f6rung der Lemuren in Aktion beobachten \u2013 diese ber\u00fchmten Bewohner Madagaskars machen alles gemeinsam \u2013 vor allem, um sich vor Feinden zu sch\u00fctzen aber auch die K\u00f6rperpflege. Wenn es sie juckt, tun sie sich zusammen, um sich gemeinsam zu kratzen. Ein Spa\u00df f\u00fcr die ganze Familie.\r\n\r\nBildquelle: ORF\/ZDF\/ soft light", + "duration_seconds": 3124, + "field_descriptor": "", + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Tierischer Alltag - Episode 1", + "id": 14213744, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": 2019, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Expeditionen", + "teaser_text": "In diesem tierischen Alltag kann man die erstaunliche Vielfalt an Ges\u00e4ngen, Lauten und Pfiffen h\u00f6ren, die Buckelwale zur Kommunikation verwenden, beobachten wie ein Wurf L\u00f6wenbabys das Leben im Rudel kennenlernt und wie andere ber\u00fchmte Bewohner Madagaskars tun um sich vor Feinden zu sch\u00fctzen.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1625_tl_06_Expeditionen--T_____14213744__o__2296713986__s15575528_8__ORF3HD_16284315P_17204813P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Expeditionen: Tierischer Alltag - Episode 1", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213744" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814494" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814494" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819483" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/2a5db96e2c7b045a9522082ce5d5bef426a849e1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814494_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/2a5db96e2c7b045a9522082ce5d5bef426a849e1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/20\/thumb_16819483_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/20\/thumb_16819483_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/20\/thumb_16819483_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/20\/thumb_16819483_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/20\/ea90e522052e6f7273313dc7d922fef1f13dd0ee.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": true, + "date": "2024-02-15T16:53:48+01:00", + "delete_date": "2024-09-02T16:55:00+02:00", + "vod_ressort": null, + "description": "(Krimiserie, AUT 2014)\r\nBei einer n\u00e4chtlichen Heimfahrt hat Wohlfahrt einen schrecklichen Unfall, ein toter Junge liegt auf der Stra\u00dfe. Wohlfahrt ist ziemlich sicher, er lag da schon, als er ihn \u00fcberrollte, doch solange das nicht bewiesen ist, scheint er schuld am Tod des Kindes zu sein. Im Schulumfeld des Toten erf\u00e4hrt man, dass dieser Teil einer gewaltbereiten Gruppe war, die in der Schule gef\u00fcrchtet war. Es gibt Hinweise auf einen Mobbingvorfall, die ein M\u00e4dchen aus seiner Klasse betroffen hat. Eine App am Handy des Toten bringt neue und erschreckende Erkenntnisse in die Ermittlung.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Peter Faerber (Ernst Benesch), Antonia Jung (Luisa Bach), Fiona Hauser (Sophie Mandl), Sabine Waibel (Ingrid Schober), Dietmar K\u00f6nig (Hermann Schober), Leopold J\u00e4ger (Daniel Buchner), Pipo Fuhs (Moritz Ebner), Konstanze Dutzi (Stefanie Buchner), Olivia Silhavy (Mag. Elisabeth Lang), Johannes Rhomberg (Martin Kahlmann), Juri Zanger (Gregor) u.a.\r\nBuch: Renate Ziemer\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Stefan Haring", + "duration_seconds": 2616, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Soko Donau: Und raus bist du", + "id": 14213698, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": 2014, + "related_audiodescription_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_highlight_teaser.jpeg", + "related_audiodescription_episode_title": "AD | Soko Donau: Und raus bist du", + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Krimiserie | Staffel 10", + "teaser_text": "(Krimiserie, AUT 2014)\r\nBei einer n\u00e4chtlichen Heimfahrt hat Wohlfahrt einen schrecklichen Unfall, ein toter Junge liegt auf der Stra\u00dfe. Wohlfahrt ist ziemlich sicher, er lag da schon, als er ihn \u00fcberrollte, doch solange das nicht bewiesen ist, scheint er schuld am Tod des Kindes zu sein. Im Schulumfeld des Toten erf\u00e4hrt man, dass dieser Teil einer gewaltbereiten Gruppe war, die in der Schule gef\u00fcrchtet war. Es gibt Hinweise auf einen Mobbingvorfall, die ein M\u00e4dchen aus seiner Klasse betroffen hat. Eine App am Handy des Toten bringt neue und erschreckende Erkenntnisse in die Ermittlung.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Peter Faerber (Ernst Benesch), Antonia Jung (Luisa Bach), Fiona Hauser (Sophie Mandl), Sabine Waibel (Ingrid Schober), Dietmar K\u00f6nig (Hermann Schober), Leopold J\u00e4ger (Daniel Buchner), Pipo Fuhs (Moritz Ebner), Konstanze Dutzi (Stefanie Buchner), Olivia Silhavy (Mag. Elisabeth Lang), Johannes Rhomberg (Martin Kahlmann), Juri Zanger (Gregor) u.a.\r\nBuch: Renate Ziemer\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Stefan Haring", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1655_in_01_Soko-Donau--Und_____14213698__o__4755318865__s15575539_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Soko Donau: Und raus bist du", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213698" + }, + "audio_description_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213901" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814660" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814660" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16806091" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/dfac8ebe0260a0666ecc24497dbe2637e21db32f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814660_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/dfac8ebe0260a0666ecc24497dbe2637e21db32f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/thumb_16806091_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/07\/550d430bc766093575c6d695fce838b4cd7f4046.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:55:00+01:00", + "delete_date": "2024-09-02T16:55:00+02:00", + "vod_ressort": null, + "description": "(Krimiserie, AUT 2014)\r\nBei einer n\u00e4chtlichen Heimfahrt hat Wohlfahrt einen schrecklichen Unfall, ein toter Junge liegt auf der Stra\u00dfe. Wohlfahrt ist ziemlich sicher, er lag da schon, als er ihn \u00fcberrollte, doch solange das nicht bewiesen ist, scheint er schuld am Tod des Kindes zu sein. Im Schulumfeld des Toten erf\u00e4hrt man, dass dieser Teil einer gewaltbereiten Gruppe war, die in der Schule gef\u00fcrchtet war. Es gibt Hinweise auf einen Mobbingvorfall, die ein M\u00e4dchen aus seiner Klasse betroffen hat. Eine App am Handy des Toten bringt neue und erschreckende Erkenntnisse in die Ermittlung.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Peter Faerber (Ernst Benesch), Antonia Jung (Luisa Bach), Fiona Hauser (Sophie Mandl), Sabine Waibel (Ingrid Schober), Dietmar K\u00f6nig (Hermann Schober), Leopold J\u00e4ger (Daniel Buchner), Pipo Fuhs (Moritz Ebner), Konstanze Dutzi (Stefanie Buchner), Olivia Silhavy (Mag. Elisabeth Lang), Johannes Rhomberg (Martin Kahlmann), Juri Zanger (Gregor) u.a.\r\nBuch: Renate Ziemer\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Stefan Haring", + "duration_seconds": 2616, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "AD | Soko Donau: Und raus bist du", + "id": 14213901, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Krimiserie | Staffel 10", + "teaser_text": "(Krimiserie, AUT 2014)\r\nBei einer n\u00e4chtlichen Heimfahrt hat Wohlfahrt einen schrecklichen Unfall, ein toter Junge liegt auf der Stra\u00dfe. Wohlfahrt ist ziemlich sicher, er lag da schon, als er ihn \u00fcberrollte, doch solange das nicht bewiesen ist, scheint er schuld am Tod des Kindes zu sein. Im Schulumfeld des Toten erf\u00e4hrt man, dass dieser Teil einer gewaltbereiten Gruppe war, die in der Schule gef\u00fcrchtet war. Es gibt Hinweise auf einen Mobbingvorfall, die ein M\u00e4dchen aus seiner Klasse betroffen hat. Eine App am Handy des Toten bringt neue und erschreckende Erkenntnisse in die Ermittlung.\r\nMit Stefan J\u00fcrgens (Carl Ribarski), Gregor Seberg (Helmuth Nowak), Dietrich Siegl (Otto Dirnberger), Maria Happel (Dr. Franziska Beck), Helmut Bohatsch (Franz Wohlfahrt), Peter Faerber (Ernst Benesch), Antonia Jung (Luisa Bach), Fiona Hauser (Sophie Mandl), Sabine Waibel (Ingrid Schober), Dietmar K\u00f6nig (Hermann Schober), Leopold J\u00e4ger (Daniel Buchner), Pipo Fuhs (Moritz Ebner), Konstanze Dutzi (Stefanie Buchner), Olivia Silhavy (Mag. Elisabeth Lang), Johannes Rhomberg (Martin Kahlmann), Juri Zanger (Gregor) u.a.\r\nBuch: Renate Ziemer\r\nRegie: Erhard Riedlsperger\r\n\r\nBildquelle: ORF\/SATEL-Film\/Stefan Haring", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1655_in_01_AD---Soko-Donau_____14213901__o__1402612168__s15575551_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "AD | Soko Donau: Und raus bist du", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213901" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814662" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814662" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818749" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/5a25fefe5f5e1b020f5e62fa9aef122a72a6f27e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814662_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/5a25fefe5f5e1b020f5e62fa9aef122a72a6f27e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/thumb_16818749_profile_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profile_2x3-with-logo\/0169\/19\/cac15b3288bcb8266ba9d0ef337f77720ec87ead.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 48, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Burgenland heute kompakt vom 15.02.2024", + "id": 14213940, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Burgenland heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_23_Burgenland-heut_____14213940__o__3829168116__s15575917_7__BLBHD_16570511P_16575315P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Burgenland heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213940" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819669" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819669" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/8bd1d4a0a962c16d29f14304cfc01488b037f350.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819669_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/8bd1d4a0a962c16d29f14304cfc01488b037f350.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 52, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "K\u00e4rnten heute kompakt vom 15.02.2024", + "id": 14213911, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "K\u00e4rnten heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_25_Kaernten-heute-_____14213911__o__1816603388__s15575924_4__BLKB_16570108P_16575314P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "K\u00e4rnten heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213911" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819611" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819611" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/954b1c6caa567a0352639be01eb29d20641d8c1a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819611_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/954b1c6caa567a0352639be01eb29d20641d8c1a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 51, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Nieder\u00f6sterreich heute kompakt vom 15.02.2024", + "id": 14213912, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Nieder\u00f6sterreich heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_22_Niederoesterrei_____14213912__o__1510290302__s15575923_3__ORF2HD_16570120P_16575301P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Nieder\u00f6sterreich heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213912" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819613" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819613" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/94cec596a3e12126a05647d107d39a964bacb0a5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819613_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/94cec596a3e12126a05647d107d39a964bacb0a5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 56, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Ober\u00f6sterreich heute kompakt vom 15.02.2024", + "id": 14213913, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Ober\u00f6sterreich heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_26_Oberoesterreich_____14213913__o__4498529796__s15575922_2__BLOOEB_16583312P_16592916P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Ober\u00f6sterreich heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213913" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819667" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819667" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/606e1a5529b7a54e0daa30b1fd2751c181d44b78.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819667_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/606e1a5529b7a54e0daa30b1fd2751c181d44b78.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 61, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Salzburg heute kompakt vom 15.02.2024", + "id": 14213941, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Salzburg heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_27_Salzburg-heute-_____14213941__o__6148775976__s15575916_6__BLSB_16582621P_16592807P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Salzburg heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213941" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819615" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819615" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/6990ddbe0f11afe8a59e647c154396dd4f14d9f1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819615_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/6990ddbe0f11afe8a59e647c154396dd4f14d9f1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 68, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Steiermark heute kompakt vom 15.02.2024", + "id": 14213920, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Steiermark heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_24_Steiermark-heut_____14213920__o__3761413806__s15575918_8__BLSTMHD_16570022P_16580907P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Steiermark heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213920" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819673" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819673" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/27f0dbb56cc337890e9d7887ad351657e523b965.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819673_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/27f0dbb56cc337890e9d7887ad351657e523b965.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 60, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Tirol heute kompakt vom 15.02.2024", + "id": 14213916, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Tirol heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_28_Tirol-heute-kom_____14213916__o__1206157124__s15575919_9__BLTHD_16570106P_16580108P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Tirol heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213916" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819677" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819677" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/d6241f28699d0c260b232811eb7358565fefe165.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819677_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/d6241f28699d0c260b232811eb7358565fefe165.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 80, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Vorarlberg heute kompakt vom 15.02.2024", + "id": 14213914, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Vorarlberg heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_29_Vorarlberg-heut_____14213914__o__9421099256__s15575921_1__BLVHD_16570107P_16582122P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Vorarlberg heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213914" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819671" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819671" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/89eafe29f96ed078e39f73c26d5bdce2c9169abe.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819671_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/89eafe29f96ed078e39f73c26d5bdce2c9169abe.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T16:57:00+01:00", + "delete_date": "2024-03-23T16:57:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 84, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wien heute kompakt vom 15.02.2024", + "id": 14213915, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nachmittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wien heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1657_tl_21_Wien-heute-komp_____14213915__o__1380458502__s15575920_0__BLWHD_16580212P_16592622P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wien heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213915" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819675" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819675" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/3a4f7301b7b103bb66a8d82759e24f9b6eed75d0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819675_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/3a4f7301b7b103bb66a8d82759e24f9b6eed75d0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:00:00+01:00", + "delete_date": "2024-03-23T17:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 60, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "S\u00fcdtirol heute kompakt vom 15.02.2024", + "id": 14213917, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "S\u00fcdtirol heute kompakt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1700_tl_28_Suedtirol-heute_____14213917__o__4740454616__s15575914_4__BLTHD_16582808P_16592900P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "S\u00fcdtirol heute kompakt vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213917" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819679" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819679" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/0321495583b62684ebc7aa843949e1bff3001e97.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819679_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/0321495583b62684ebc7aa843949e1bff3001e97.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:00:00+01:00", + "delete_date": "2024-03-23T17:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 7164, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "World Aquatics Schwimm Weltmeisterschaft 2024 Doha: Tag 5", + "id": 14213755, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Schwimmen: Weltmeisterschaft 2024", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1700_tl_03_World-Aquatics-_____14213755__o__1625817156__s15575915_5__ORFSHD_17000102P_18592601P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "World Aquatics Schwimm Weltmeisterschaft 2024 Doha: Tag 5", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213755" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820495" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820495" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/4d9caaaa549b16c611016cd9fb7c9650208ca995.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820495_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/4d9caaaa549b16c611016cd9fb7c9650208ca995.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:00:00+01:00", + "delete_date": "2024-03-23T17:00:00+01:00", + "vod_ressort": null, + "description": "Israel vor Offensive in Rafah | Ukraine: Teilweiser R\u00fcckzug aus Awdijiwka | Transit: Italien schickte Klagsaufforderung an Kommission | Gewerkschaft kritisiert Babler | Hinweis auf \"Aktuell nach f\u00fcnf\" | Wetter", + "duration_seconds": 360, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB 17:00 vom 15.02.2024", + "id": 14213724, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 17:00", + "teaser_text": "Israel vor Offensive in Rafah | Ukraine: Teilweiser R\u00fcckzug aus Awdijiwka | Transit: Italien schickte Klagsaufforderung an Kommission | Gewerkschaft kritisiert Babler | Hinweis auf \"Aktuell nach f\u00fcnf\" | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213724_0009_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213724_0009_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213724_0009_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213724_0009_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213724_0009_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213724_0009_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213724_0009_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213724_0009_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 17:00 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213724" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819689" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819689" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/38eadb43c7fba4529973fe837c0b201b985c2dd6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819689_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/38eadb43c7fba4529973fe837c0b201b985c2dd6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:08:36+01:00", + "delete_date": "2024-03-23T17:08:36+01:00", + "vod_ressort": null, + "description": "Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4sereichef | Landesveterin\u00e4r Greber zu illegalem Medikamentenhandel | Jugendliche von Sessellift gefallen | Bruck k\u00e4mpft um abgeschobene Familie | Hollabrunn: Gro\u00dfbrand zerst\u00f6rte Lagerhalle | Schwerer B\u00f6llerunfall in K\u00e4rnten | Hochbetrieb an Kinderkliniken | Welpentaufe bei Milit\u00e4rhundezentrum | Wetter | Hinweis \"Studio 2\"", + "duration_seconds": 1119, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Aktuell nach f\u00fcnf vom 15.02.2024", + "id": 14213725, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Aktuell nach f\u00fcnf", + "teaser_text": "Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4sereichef | Landesveterin\u00e4r Greber zu illegalem Medikamentenhandel | Jugendliche von Sessellift gefallen | Bruck k\u00e4mpft um abgeschobene Familie | Hollabrunn: Gro\u00dfbrand zerst\u00f6rte Lagerhalle | Schwerer B\u00f6llerunfall in K\u00e4rnten | Hochbetrieb an Kinderkliniken | Welpentaufe bei Milit\u00e4rhundezentrum | Wetter | Hinweis \"Studio 2\"", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213725_0014_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213725_0014_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213725_0014_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213725_0014_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213725_0014_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213725_0014_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213725_0014_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213725_0014_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Aktuell nach f\u00fcnf vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213725" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819787" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819787" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/503331a23a1d28c77e52bfba40eb3b1dd053bf73.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819787_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/503331a23a1d28c77e52bfba40eb3b1dd053bf73.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:30:42+01:00", + "delete_date": "2024-03-23T17:30:42+01:00", + "vod_ressort": null, + "description": "Johanna von Koczian ist tot | Themen der Sendung | Medizin: Kurzsichtigkeit bei Kindern | Vergessene Verkehrsregeln | Fach\u00e4rztin f\u00fcr Psychiatrie und Neurologie \u00fcber Einsamkeit | Talk \u00fcber ORF-Umfrage | StrickdesignerInnen | Gartentipps mit Gartengestalterin Gabesam-Rasner | Falcos Band im U4 | B\u00fcchertalk mit Bettina Wagner | Stargast: Ina Regen", + "duration_seconds": 3254, + "field_descriptor": "", + "genre_id": 1176, + "genre_title": "Magazin", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Studio 2 vom 15.02.2024", + "id": 14213726, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Studio 2", + "teaser_text": "Johanna von Koczian ist tot | Themen der Sendung | Medizin: Kurzsichtigkeit bei Kindern | Vergessene Verkehrsregeln | Fach\u00e4rztin f\u00fcr Psychiatrie und Neurologie \u00fcber Einsamkeit | Talk \u00fcber ORF-Umfrage | StrickdesignerInnen | Gartentipps mit Gartengestalterin Gabesam-Rasner | Falcos Band im U4 | B\u00fcchertalk mit Bettina Wagner | Stargast: Ina Regen", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213726_0013_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213726_0013_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213726_0013_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213726_0013_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213726_0013_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213726_0013_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213726_0013_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213726_0013_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Studio 2 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213726" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820130" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820130" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/8ed5dc622e12b3db3497832551a4cfef1736c9e5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820130_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/8ed5dc622e12b3db3497832551a4cfef1736c9e5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:38:54+01:00", + "delete_date": "2024-03-23T17:38:54+01:00", + "vod_ressort": null, + "description": "Mietervereinigung fordert Entlastung f\u00fcr MieterInnen | Digitaler Zulassungsschein", + "duration_seconds": 311, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB Flash 2 vom 15.02.2024", + "id": 14213699, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB Flash", + "teaser_text": "Mietervereinigung fordert Entlastung f\u00fcr MieterInnen | Digitaler Zulassungsschein", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1738_tl_01_ZIB-Flash-2-vom_____14213699__o__1083315906__s15576019_9__ORF1HD_17382215P_17433411P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB Flash 2 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213699" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819852" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16819852" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/e2a9a9b14786058a121b07b60a31b15391784c7c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/thumb_16819852_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/20\/e2a9a9b14786058a121b07b60a31b15391784c7c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:46:21+01:00", + "delete_date": "2024-03-23T17:46:21+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 58, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter vom 15.02.2024", + "id": 14213700, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter ORF 1", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1746_tl_01_Wetter-vom-15-0_____14213700__o__1703037118__s15575644_4__ORF1HD_17455312P_17465112P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213700" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820034" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820034" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/23f1d5b70f9d7dda841738d6bf41267984e7d896.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820034_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/23f1d5b70f9d7dda841738d6bf41267984e7d896.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": true, + "date": "2024-02-15T17:50:00+01:00", + "delete_date": "2024-03-23T17:50:00+01:00", + "vod_ressort": null, + "description": "live aus Nove Mesto\r\nKommentar: Dietmar Wolff\r\nCo-Kommentar: Dominik Landertinger\r\nModeration: Boris Kasnter-Jirka", + "duration_seconds": 3921, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Biathlon Weltmeisterschaft 2024 Nove Mesto: Single Mixed Staffel", + "id": 14213701, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_highlight_teaser.jpeg", + "related_audiodescription_episode_title": "AD | Biathlon Weltmeisterschaft 2024 Nove Mesto: Single Mixed Staffel", + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Biathlon-WM 2024", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1750_tl_01_Biathlon-Weltme_____14213701__o__2096314753__s15576140_0__ORF1HD_17494104P_18550213P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Biathlon Weltmeisterschaft 2024 Nove Mesto: Single Mixed Staffel", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213701" + }, + "audio_description_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214039" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820199" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820199" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/b8223c20237f4087ec4e068c4a06db4073429fef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820199_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/b8223c20237f4087ec4e068c4a06db4073429fef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:50:00+01:00", + "delete_date": "2024-03-23T17:50:00+01:00", + "vod_ressort": null, + "description": "live aus Nove Mesto\r\nKommentar: Dietmar Wolff\r\nCo-Kommentar: Dominik Landertinger\r\nModeration: Boris Kasnter-Jirka", + "duration_seconds": 3921, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "AD | Biathlon Weltmeisterschaft 2024 Nove Mesto: Single Mixed Staffel", + "id": 14214039, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "AD | Biathlon-WM 2024", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1750_sd_01_AD---Biathlon-W_____14214039__o__1055161621__s15576195_5__ORF1ADHD_17494104P_18550213P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "AD | Biathlon Weltmeisterschaft 2024 Nove Mesto: Single Mixed Staffel", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214039" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820200" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820200" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/87ffc82969fa6b2996306c1fdc2322ccf9bc3e45.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820200_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/87ffc82969fa6b2996306c1fdc2322ccf9bc3e45.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T17:55:00+01:00", + "delete_date": "2024-03-23T17:55:00+01:00", + "vod_ressort": null, + "description": "Golfstrom in Zukunft | Eisb\u00e4ren | Frage Lina: Wieso verfolgen Hunde Katzen? | Skispringen in Murau", + "duration_seconds": 290, + "field_descriptor": "", + "genre_id": 2703801, + "genre_title": "ORF Kids", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB Zack Mini vom 15.02.2024 (\u00d6GS)", + "id": 14214038, + "is_archive": false, + "is_oegs": true, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 8089706, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "News f\u00fcr Kids", + "teaser_text": "Golfstrom in Zukunft | Eisb\u00e4ren | Frage Lina: Wieso verfolgen Hunde Katzen? | Skispringen in Murau", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1755_in_00_ZIB-Zack-Mini-v_____14214038__o__8845436156__s15576194_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB Zack Mini vom 15.02.2024 (\u00d6GS)", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214038" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16569393" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16569393" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/7270218243b59c55d4e80027b8ea85ba934fc685.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/thumb_16569393_profiles_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/profiles\/0166\/70\/7270218243b59c55d4e80027b8ea85ba934fc685.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T18:28:00+01:00", + "delete_date": "2024-03-23T18:28:00+01:00", + "vod_ressort": null, + "description": "Salvini macht Drohung ernst | Brixen w\u00e4hlt neuen B\u00fcrgermeister | Meldungen | Infrastrukturprojekte in Bozen schreiten voran | Echte Tierpr\u00e4parate aus dem Passaiertal | Ministranten beim Papst", + "duration_seconds": 1090, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "S\u00fcdtirol Heute vom 15.02.2024", + "id": 14213672, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "S\u00fcdtirol heute", + "teaser_text": "Salvini macht Drohung ernst | Brixen w\u00e4hlt neuen B\u00fcrgermeister | Meldungen | Infrastrukturprojekte in Bozen schreiten voran | Echte Tierpr\u00e4parate aus dem Passaiertal | Ministranten beim Papst", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213672_0009_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213672_0009_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213672_0009_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213672_0009_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213672_0009_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213672_0009_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213672_0009_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213672_0009_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "S\u00fcdtirol Heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213672" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820177" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820177" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/67da47afa3cf7ddb24769f3e722acf587f6559ce.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820177_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/67da47afa3cf7ddb24769f3e722acf587f6559ce.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T18:30:00+01:00", + "delete_date": "2024-03-23T18:30:00+01:00", + "vod_ressort": null, + "description": "Probleme von Payback-Angeboten | Konsumentensch\u00fctzer zu Bonusprogrammen | Konkret kompakt | Entsorgung von Batterien | Expertin zu Recycling von Batterien | Aufruf zur Umfrage | L\u00fccken im Impfpass", + "duration_seconds": 1356, + "field_descriptor": "", + "genre_id": 1176, + "genre_title": "Magazin", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "konkret vom 15.02.2024", + "id": 14213727, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_highlight_teaser.jpeg", + "related_oegs_episode_title": "konkret vom 15.02.2024 (\u00d6GS)", + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "konkret", + "teaser_text": "Probleme von Payback-Angeboten | Konsumentensch\u00fctzer zu Bonusprogrammen | Konkret kompakt | Entsorgung von Batterien | Expertin zu Recycling von Batterien | Aufruf zur Umfrage | L\u00fccken im Impfpass", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213727_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213727_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213727_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213727_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213727_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213727_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213727_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213727_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "konkret vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213727" + }, + "oegs_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214041" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820197" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820197" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/57d0f8f42ba453e05a851d2c163a036dc1b7bd34.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820197_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/57d0f8f42ba453e05a851d2c163a036dc1b7bd34.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T18:30:00+01:00", + "delete_date": "2024-03-23T18:30:00+01:00", + "vod_ressort": null, + "description": "Probleme von Payback-Angeboten | Konsumentensch\u00fctzer zu Bonusprogrammen | Konkret kompakt | Entsorgung von Batterien | Expertin zu Recycling von Batterien | Aufruf zur Umfrage | L\u00fccken im Impfpass", + "duration_seconds": 1356, + "field_descriptor": "", + "genre_id": 1176, + "genre_title": "Magazin", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "konkret vom 15.02.2024 (\u00d6GS)", + "id": 14214041, + "is_archive": false, + "is_oegs": true, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "konkret (\u00d6GS)", + "teaser_text": "Probleme von Payback-Angeboten | Konsumentensch\u00fctzer zu Bonusprogrammen | Konkret kompakt | Entsorgung von Batterien | Expertin zu Recycling von Batterien | Aufruf zur Umfrage | L\u00fccken im Impfpass", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14214041_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14214041_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14214041_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14214041_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14214041_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14214041_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14214041_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14214041_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "konkret vom 15.02.2024 (\u00d6GS)", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214041" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821073" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821073" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/74fc1ed13e36d4e5c097370215a41fdb172fcf58.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821073_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/74fc1ed13e36d4e5c097370215a41fdb172fcf58.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T18:49:00+01:00", + "delete_date": "2024-03-23T18:49:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 104, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter S\u00fcdtirol vom 15.02.2024", + "id": 14213944, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter S\u00fcdtirol", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1849_tl_28_Wetter-Suedtiro_____14213944__o__2478262326__s15575941_1__BLTHD_18475824P_18494307P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter S\u00fcdtirol vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213944" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820196" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820196" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/426b918509220d971ce9801d60e5758e8aaaad52.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820196_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/426b918509220d971ce9801d60e5758e8aaaad52.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T18:51:50+01:00", + "delete_date": "2024-03-23T18:51:50+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 75, + "field_descriptor": "", + "genre_id": 1176, + "genre_title": "Magazin", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "infos & tipps vom 15.02.2024", + "id": 14213728, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "infos & tipps", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1851_tl_02_infos-and-tipps_____14213728__o__2067310248__s15575649_9__ORF2HD_18521314P_18532820P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "infos & tipps vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213728" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820202" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820202" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/9b66b547b49d8b93da8bbffbbcde2c96d7d5341d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820202_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/9b66b547b49d8b93da8bbffbbcde2c96d7d5341d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Klimatickets zum Ausborgen | Neue Gastro-Konzepte | Nachrichten\u00fcberblick | 50 Jahre Energieferien | Burgenlandskiwoche | Schneider (ORF) \u00fcber die Burgenlandskiwoche | Sprengstoff-Sp\u00fcrnasen in Ausbildung", + "duration_seconds": 1142, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Burgenland heute vom 15.02.2024", + "id": 14213918, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Burgenland heute", + "teaser_text": "Klimatickets zum Ausborgen | Neue Gastro-Konzepte | Nachrichten\u00fcberblick | 50 Jahre Energieferien | Burgenlandskiwoche | Schneider (ORF) \u00fcber die Burgenlandskiwoche | Sprengstoff-Sp\u00fcrnasen in Ausbildung", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213918_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213918_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213918_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213918_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213918_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213918_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213918_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213918_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Burgenland heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213918" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820281" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820281" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/f1d34bf91c014d8af83b98417cd2bac8f0cf6965.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820281_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/f1d34bf91c014d8af83b98417cd2bac8f0cf6965.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1082, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "K\u00e4rnten heute vom 15.02.2024", + "id": 14213924, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "K\u00e4rnten heute", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213924_0009_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213924_0009_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213924_0009_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213924_0009_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213924_0009_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213924_0009_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213924_0009_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213924_0009_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "K\u00e4rnten heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213924" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820387" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820387" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/74190ae12e87d74134711fc87bd377444223f7bc.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820387_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/74190ae12e87d74134711fc87bd377444223f7bc.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4sereichef | Lage in der Bauwirtschaft | Live Schaltung zu Schloss Haindorf | Bundesratssitzung Vorsitz ORF III | AK Wahl | Neuer B\u00fcrgermeister in Krems | Nachrichten\u00fcberblick | Ein Leben f\u00fcr die Formel 1: Alex Wurz ist 50 | WOHIN am Donnerstag | Aufgesp\u00fcrt: Hammerschmiede in Ybbsitz", + "duration_seconds": 1317, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Nieder\u00f6sterreich heute vom 15.02.2024", + "id": 14213923, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Nieder\u00f6sterreich heute", + "teaser_text": "Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4sereichef | Lage in der Bauwirtschaft | Live Schaltung zu Schloss Haindorf | Bundesratssitzung Vorsitz ORF III | AK Wahl | Neuer B\u00fcrgermeister in Krems | Nachrichten\u00fcberblick | Ein Leben f\u00fcr die Formel 1: Alex Wurz ist 50 | WOHIN am Donnerstag | Aufgesp\u00fcrt: Hammerschmiede in Ybbsitz", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213923_0013_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213923_0013_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213923_0013_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213923_0013_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213923_0013_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213923_0013_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213923_0013_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213923_0013_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Nieder\u00f6sterreich heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213923" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820416" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820416" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/72367ee46af858dbf01c87db79470e135ebd489a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820416_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/72367ee46af858dbf01c87db79470e135ebd489a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Hinweis auf \"Am Schauplatz: Ungel\u00f6ste F\u00e4lle\" | Politischer Aschermittwoch: FP\u00d6 | Pr\u00e4sentation f\u00fcr digitalen Zulassungsschein | Schulleiter f\u00fchlen sich \u00fcberlastet | Buchungslage und Verkehr bei Semesterferien | 2 Jahre Krieg in der Ukraine | Nachrichten\u00fcberblick | K\u00f6rperliches Fasten | Hollywood in Hallstatt", + "duration_seconds": 1288, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Ober\u00f6sterreich heute vom 15.02.2024", + "id": 14213922, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Ober\u00f6sterreich heute", + "teaser_text": "Hinweis auf \"Am Schauplatz: Ungel\u00f6ste F\u00e4lle\" | Politischer Aschermittwoch: FP\u00d6 | Pr\u00e4sentation f\u00fcr digitalen Zulassungsschein | Schulleiter f\u00fchlen sich \u00fcberlastet | Buchungslage und Verkehr bei Semesterferien | 2 Jahre Krieg in der Ukraine | Nachrichten\u00fcberblick | K\u00f6rperliches Fasten | Hollywood in Hallstatt", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213922_0012_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213922_0012_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213922_0012_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213922_0012_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213922_0012_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213922_0012_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213922_0012_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213922_0012_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Ober\u00f6sterreich heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213922" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820455" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820455" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/b2619fab80826685aaee8e2015ac90d397440109.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820455_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/b2619fab80826685aaee8e2015ac90d397440109.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Lanserhofsiedlung wird erneuert | Bruck k\u00e4mpft um abgeschobene Familie | Verfassungsjurist zu abgeschobener Familie | Meldungen | Erste Fl\u00fcssigerdgas-Tankstelle er\u00f6ffnet | Neues Quartier f\u00fcr Obdachlose | Tanzfestival SEAD | ORF fragt: Welche Themen bewegen \u00d6sterreich?", + "duration_seconds": 1229, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Salzburg heute vom 15.02.2024", + "id": 14213925, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Salzburg heute", + "teaser_text": "Lanserhofsiedlung wird erneuert | Bruck k\u00e4mpft um abgeschobene Familie | Verfassungsjurist zu abgeschobener Familie | Meldungen | Erste Fl\u00fcssigerdgas-Tankstelle er\u00f6ffnet | Neues Quartier f\u00fcr Obdachlose | Tanzfestival SEAD | ORF fragt: Welche Themen bewegen \u00d6sterreich?", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213925_0011_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213925_0011_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213925_0011_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213925_0011_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213925_0011_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213925_0011_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213925_0011_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213925_0011_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Salzburg heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213925" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820354" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820354" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/b680b6eed19053f1925e35047e4bf53bf93229b4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820354_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/b680b6eed19053f1925e35047e4bf53bf93229b4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Kinderklinik durch Masern & Co. gefordert | Einsatzbilanz Feuerwehr | Studiogespr\u00e4ch mit Thomas Meier vom Landesfeuerwehrverband | Politischer Aschermittwoch: SP\u00d6 | Nachrichten\u00fcberblick | \"Nachbar in Not\" Pressenkonferenz | Neues Werk von Autor Konrad Paul Liessmann", + "duration_seconds": 1068, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Steiermark heute vom 15.02.2024", + "id": 14213919, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Steiermark heute", + "teaser_text": "Kinderklinik durch Masern & Co. gefordert | Einsatzbilanz Feuerwehr | Studiogespr\u00e4ch mit Thomas Meier vom Landesfeuerwehrverband | Politischer Aschermittwoch: SP\u00d6 | Nachrichten\u00fcberblick | \"Nachbar in Not\" Pressenkonferenz | Neues Werk von Autor Konrad Paul Liessmann", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213919_0011_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213919_0011_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213919_0011_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213919_0011_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213919_0011_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213919_0011_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213919_0011_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213919_0011_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Steiermark heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213919" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820229" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820229" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/7129176379065f0c1de0b890631c171d48a84391.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820229_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/7129176379065f0c1de0b890631c171d48a84391.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Transit: Italien forderte EU zur Klage auf | Novartis investiert 250 Millionen in Kundl | Alpinpolizei vermehrt im Einsatz | Meldungen | Einer der \u00e4ltesten \u00d6sterreicher | Skisprungtalent Stephan Embacher", + "duration_seconds": 1179, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Tirol heute vom 15.02.2024", + "id": 14213927, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Tirol heute", + "teaser_text": "Transit: Italien forderte EU zur Klage auf | Novartis investiert 250 Millionen in Kundl | Alpinpolizei vermehrt im Einsatz | Meldungen | Einer der \u00e4ltesten \u00d6sterreicher | Skisprungtalent Stephan Embacher", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213927_0009_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213927_0009_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213927_0009_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213927_0009_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213927_0009_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213927_0009_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213927_0009_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213927_0009_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Tirol heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213927" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820396" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820396" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/aeaed3ac851450aab112308d419a19e7a3a1dd42.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820396_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/aeaed3ac851450aab112308d419a19e7a3a1dd42.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "K\u00fche brauchen immer \u00f6fter Antibiotika | Vorwissenschaftliche Arbeiten vor dem Aus | Baufachmesse com:bau | KUB zeigt Brus-Kunstwerke nach seinem Tod | Meditation bei M\u00f6nchen | Vorschau \"Am Schauplatz\" | Zu Gast im Landgasthof Sulz", + "duration_seconds": 1239, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Vorarlberg heute vom 15.02.2024", + "id": 14213926, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Vorarlberg heute", + "teaser_text": "K\u00fche brauchen immer \u00f6fter Antibiotika | Vorwissenschaftliche Arbeiten vor dem Aus | Baufachmesse com:bau | KUB zeigt Brus-Kunstwerke nach seinem Tod | Meditation bei M\u00f6nchen | Vorschau \"Am Schauplatz\" | Zu Gast im Landgasthof Sulz", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213926_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213926_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213926_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213926_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213926_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213926_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213926_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213926_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Vorarlberg heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213926" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820368" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820368" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/cae69399993f58794cdea03c40b1a52e859e75b4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820368_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/cae69399993f58794cdea03c40b1a52e859e75b4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": "Personalmangel - Was tun? | ME\/CFS-Zahlen steigen wegen Coronavirus | Johann Strauss Jahr | Hilfsprojekt \"Nachbar in Not\" f\u00fcr Ukraine | Nachrichten\u00fcberblick | Hinter den Kulissen: Show \"Afrika Afrika\" | Premiere: \"Luziwuzi\" mit Tim Neuwirth\/\"Conchita Wurst\"", + "duration_seconds": 1278, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Wien heute vom 15.02.2024", + "id": 14213921, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wien heute", + "teaser_text": "Personalmangel - Was tun? | ME\/CFS-Zahlen steigen wegen Coronavirus | Johann Strauss Jahr | Hilfsprojekt \"Nachbar in Not\" f\u00fcr Ukraine | Nachrichten\u00fcberblick | Hinter den Kulissen: Show \"Afrika Afrika\" | Premiere: \"Luziwuzi\" mit Tim Neuwirth\/\"Conchita Wurst\"", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213921_0013_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213921_0013_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213921_0013_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213921_0013_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213921_0013_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213921_0013_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213921_0013_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213921_0013_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wien heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213921" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820255" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820255" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/c84078f8aa38ecc22bbe9ad797a6f3274fa4028a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820255_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/c84078f8aa38ecc22bbe9ad797a6f3274fa4028a.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:00:00+01:00", + "delete_date": "2024-03-23T19:00:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1785, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Yoga Magazin: Folge 207", + "id": 14213756, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Fit und entspannt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213756_0007_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213756_0007_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213756_0007_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213756_0007_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213756_0007_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213756_0007_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213756_0007_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213756_0007_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Yoga Magazin: Folge 207", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213756" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822491" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822491" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/e377dc9fdc33b9a8ae9975aa08ac4277c354216c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822491_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/e377dc9fdc33b9a8ae9975aa08ac4277c354216c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:18:00+01:00", + "delete_date": "2024-03-23T19:18:00+01:00", + "vod_ressort": null, + "description": "Ukraine: Teilweiser R\u00fcckzug aus Awdijiwka | Atomwaffen im All | Israel vor Offensive in Rafah | Get\u00f6tete Journalisten | Babler will Arbeitsplatzgarantie f\u00fcr Langzeitarbeitslose | Transit: Italien schickte Klagsaufforderung an Kommission | Betriebskosten: Mietervereinigung fordert Reform | Kinderklinik durch Masern & Co. gefordert | Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4sereichef | US-Firma will erste kommerzielle Mondlandung schaffen | Wetter | Vorschau auf \"Kultur heute\"", + "duration_seconds": 765, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ORF III AKTUELL am Abend vom 15.02.2024", + "id": 14213745, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ORF III Aktuell am Abend", + "teaser_text": "Ukraine: Teilweiser R\u00fcckzug aus Awdijiwka | Atomwaffen im All | Israel vor Offensive in Rafah | Get\u00f6tete Journalisten | Babler will Arbeitsplatzgarantie f\u00fcr Langzeitarbeitslose | Transit: Italien schickte Klagsaufforderung an Kommission | Betriebskosten: Mietervereinigung fordert Reform | Kinderklinik durch Masern & Co. gefordert | Listerien-Tote: 13 Monate Haft f\u00fcr K\u00e4sereichef | US-Firma will erste kommerzielle Mondlandung schaffen | Wetter | Vorschau auf \"Kultur heute\"", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213745_0015_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213745_0015_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213745_0015_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213745_0015_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213745_0015_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213745_0015_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213745_0015_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213745_0015_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ORF III AKTUELL am Abend vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213745" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820510" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820510" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/7dcc42bd8f4469a949396f7788c9e534d895f1ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820510_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/7dcc42bd8f4469a949396f7788c9e534d895f1ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 90, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Garteln in Salzburg", + "id": 14213937, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Garteln in Salzburg", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_27_Garteln-in-Salz_____14213937__o__1518997974__s15575925_5__BLSB_19202810P_19215813P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Garteln in Salzburg", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213937" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820682" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820682" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/fd63bb166c58efed0d57b6d6d15b71122da537df.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820682_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/fd63bb166c58efed0d57b6d6d15b71122da537df.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 121, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Gesundheitstipp", + "id": 14213939, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Gesundheitstipp", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_23_Gesundheitstipp_____14213939__o__2134300646__s15575927_7__BLBHD_19190015P_19210120P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Gesundheitstipp", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213939" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820687" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820687" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/340e495e711d8ef847da18d533d9639177020965.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820687_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/340e495e711d8ef847da18d533d9639177020965.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 183, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Kulinarium", + "id": 14213945, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Kulinarium", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_24_Kulinarium_____14213945__o__2112684192__s15575962_2__BLSTMHD_19203406P_19233723P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Kulinarium", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213945" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820698" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820698" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/77f8691319118620f3269b37566495e168ab626d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820698_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/77f8691319118620f3269b37566495e168ab626d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 107, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Pflanzerei", + "id": 14213943, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Pflanzerei", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_28_Pflanzerei_____14213943__o__1082879032__s15575929_9__BLTHD_19215306P_19234010P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Pflanzerei", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213943" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820690" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820690" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/bbf16b75ffff33e74556978e670c0551d7dcd6ea.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820690_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/bbf16b75ffff33e74556978e670c0551d7dcd6ea.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": null, + "duration_seconds": 120, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Stadtwerke Klagenfurt - Lehrlinge", + "id": 14213831, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Stadtwerke Klagenfurt", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_25_Stadtwerke-Klag_____14213831__o__2065309233__s15575940_0__BLKB_19180724P_19200814P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Stadtwerke Klagenfurt - Lehrlinge", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213831" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820499" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820499" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/c4938225e2f14c49898cf50e90442f5d2f15fbd6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820499_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/c4938225e2f14c49898cf50e90442f5d2f15fbd6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 140, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Burgenland vom 15.02.2024", + "id": 14213933, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Burgenland", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_23_Wetter-Burgenla_____14213933__o__2022991692__s15575934_4__BLBHD_19210120P_19232204P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Burgenland vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213933" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820444" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820444" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/7a16f723b6a88a83083c8ec489d14f34761307d5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820444_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/7a16f723b6a88a83083c8ec489d14f34761307d5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 204, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter K\u00e4rnten vom 15.02.2024", + "id": 14213931, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter K\u00e4rnten", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_25_Wetter-Kaernten_____14213931__o__1513345561__s15575936_6__BLKB_19200816P_19233222P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter K\u00e4rnten vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213931" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820436" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820436" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/41223457ae39c98ffe6f69d0f0d6ce5054d2bb84.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820436_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/41223457ae39c98ffe6f69d0f0d6ce5054d2bb84.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 97, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Nieder\u00f6sterreich vom 15.02.2024", + "id": 14213934, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Nieder\u00f6sterreich", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_22_Wetter-Niederoe_____14213934__o__5999109836__s15575932_2__ORF2HD_19215305P_19233023P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Nieder\u00f6sterreich vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213934" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820449" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820449" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/376cf693858b32d0abc4b95c6bc96a380dc72c59.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820449_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/376cf693858b32d0abc4b95c6bc96a380dc72c59.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 117, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Ober\u00f6sterreich vom 15.02.2024", + "id": 14213935, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Ober\u00f6sterreich", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_26_Wetter-Oberoest_____14213935__o__6494563936__s15575931_1__BLOOEB_19212922P_19232716P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Ober\u00f6sterreich vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213935" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820453" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820453" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/415adf79243bd4c23662e63122c062b952dbbc04.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820453_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/415adf79243bd4c23662e63122c062b952dbbc04.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 95, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Salzburg vom 15.02.2024", + "id": 14213928, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Salzburg", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_27_Wetter-Salzburg_____14213928__o__2166249206__s15575939_9__BLSB_19215800P_19233315P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Salzburg vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213928" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820407" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820407" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/08186e565a71ad13e3ef63ceffaaf66c7720410c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820407_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/08186e565a71ad13e3ef63ceffaaf66c7720410c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 153, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Steiermark vom 15.02.2024", + "id": 14213932, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Steiermark", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_24_Wetter-Steierma_____14213932__o__1987464354__s15575935_5__BLSTMHD_19180108P_19203414P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Steiermark vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213932" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820441" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820441" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/bb4118ded96011bc4260927a5d61196dc4f793a8.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820441_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/bb4118ded96011bc4260927a5d61196dc4f793a8.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 133, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Tirol vom 15.02.2024", + "id": 14213930, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Tirol", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_28_Wetter-Tirol-vo_____14213930__o__1753946824__s15575937_7__BLTHD_19193918P_19215306P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Tirol vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213930" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820415" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820415" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/4b12942a9a51bb3610d267970f08425fcdef6ddf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820415_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/4b12942a9a51bb3610d267970f08425fcdef6ddf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 184, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Vorarlberg vom 15.02.2024", + "id": 14213929, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Vorarlberg", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_29_Wetter-Vorarlbe_____14213929__o__3549047476__s15575938_8__BLVHD_19203316P_19233717P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Vorarlberg vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213929" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820411" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820411" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/1a80072fbd5e9e82c2990330bec8beaa17c3b37d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820411_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/1a80072fbd5e9e82c2990330bec8beaa17c3b37d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 52, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wetter Wien vom 15.02.2024", + "id": 14213936, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wetter Wien", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_21_Wetter-Wien-vom_____14213936__o__1311650661__s15575930_0__BLWHD_19224422P_19233701P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter Wien vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213936" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820468" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820468" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/0445ece5d3c74a0a6213d761ee04a507ffbb9ef3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820468_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/0445ece5d3c74a0a6213d761ee04a507ffbb9ef3.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:20:00+01:00", + "delete_date": "2024-03-23T19:20:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 38, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Wohin in Wien? vom 15.02.2024", + "id": 14213938, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Wohin in Wien?", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1920_tl_21_Wohin-in-Wien--_____14213938__o__1588078823__s15575926_6__BLWHD_19220619P_19224509P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wohin in Wien? vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213938" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820684" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820684" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/a9f6f0d8062cf98a1c56f8b8dc49ae580c26cf84.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820684_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/a9f6f0d8062cf98a1c56f8b8dc49ae580c26cf84.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:25:00+01:00", + "delete_date": "2024-03-23T19:25:00+01:00", + "vod_ressort": null, + "description": "In Argentinien ist die Teuerung auf \u00fcber 250 Prozent gestiegen. Das ist eine der h\u00f6chsten Teuerungen weltweit. Argentinien ist ein Land in S\u00fcd-Amerika. Im J\u00e4nner sind die Preise in Argentinien um rund 20 Prozent angestiegen. Damit waren die Preise so hoch wie seit 1991 nicht mehr. In Argentinien ist derzeit eine schwere Wirtschafts-Krise. Vor allem die Kosten f\u00fcr Produkte wie K\u00f6rperpflege, Transport und Telefonieren sind deutlich gestiegen. Der neue Pr\u00e4sident Javier Milei m\u00f6chte mit Spar-Ma\u00dfnahmen die Teuerung bek\u00e4mpfen. Daf\u00fcr hat die Regierung unter anderem die Landes-W\u00e4hrung \u201ePeso\u201c abgewertet. Auch k\u00fcndigte Milei an, staatliche Hilfen f\u00fcr Gas, Wasser, Strom und \u00f6ffentliche Verkehrs-Mittel zu k\u00fcrzen. \r\n\r\nIm Jahr 2023 haben fast 20.000 Menschen in \u00d6sterreich die Staats-B\u00fcrgerschaft bekommen. Das sind um 3,2 Prozent weniger Staats-B\u00fcrgerschaften als im Jahr 2022. Eine Staats-B\u00fcrgerschaft bedeutet die Zugeh\u00f6rigkeit zu einem Staat. Der R\u00fcckgang ist vor allem auf die gesunkene Zahl an Einb\u00fcrgerungen von Opfern des Nationalsozialismus und deren Nachkommen zur\u00fcckzuf\u00fchren. National-Sozialisten ermordeten Menschen, die nicht zu ihren Ansichten gepasst haben. Das waren beispielsweise Juden, Menschen der Volks-Gruppe Roma und Sinti oder Menschen mit Behinderungen. Vergangenes Jahr haben insgesamt mehr als 7.900 Opfer des National-Sozialismus und ihre Verwandten die \u00f6sterreichische Staats-B\u00fcrgerschaft bekommen. \r\n\r\nIn der Ukraine hat es heute Fr\u00fch einen landesweiten Luft-Alarm gegeben. Bei einem Luft-Alarm wird die Bev\u00f6lkerung von einem Land, dass sich im Krieg befindet, vor Soldaten mit Raketen und Kampf-Flugzeugen gewarnt. Mehrere Bomber-Flugzeuge sind vom russischem Milit\u00e4r-Flug-Platz Olenja im Gebiet Murmansk gestartet. Sp\u00e4ter haben ukrainische Soldaten vom Angriff russischer Raketen auf die ukrainische Haupt-Stadt Kiew berichtet. Laut B\u00fcrger-Meister Vitali Klitschko hat es Explosionen in Kiew gegeben. Aber: Soldaten konnten durch die Luft-Abwehr Raketen und Bomben abwehren. Bei den russischen Angriffen sind 6 Personen verletzt worden. Auch wurden mehrere Wohn-H\u00e4user in der Ukraine besch\u00e4digt. \r\n\r\nDie Fahrzeug-Kontrolle wird jetzt einfacher: Denn Zulassungs-Schein und F\u00fchrerschein k\u00f6nnen jetzt in einer App gespeichert werden. Man muss sie nicht mehr im Auto mithaben. Bei einer Verkehrs-Kontrolle k\u00f6nnen Polizisten k\u00fcnftig F\u00fchrer-Schein und Zulassungs-Schein am Handy kontrollieren. Daf\u00fcr brauchen Fahrzeug-Lenker einen QR-Code. Diese App hei\u00dft \"e-Ausweise\". Im Zulassungs-Schein stehen wichtige Fahrzeug-Daten. F\u00fcr den digitalen Zulassungs-Schein brauchen Fahrzeug-Lenker die App \u201eDigitales Amt\u201c und eine \"ID Austria.\" Die \u201eID Austria\u201c ist ein digitaler Ausweis f\u00fcr Handy-Nutzer.", + "duration_seconds": 248, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Nachrichten in Einfacher Sprache vom 15.02.2024", + "id": 14213746, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Nachrichten in Einfacher Sprache", + "teaser_text": "In Argentinien ist die Teuerung auf \u00fcber 250 Prozent gestiegen. Das ist eine der h\u00f6chsten Teuerungen weltweit. Argentinien ist ein Land in S\u00fcd-Amerika. Im J\u00e4nner sind die Preise in Argentinien um rund 20 Prozent angestiegen. Damit waren die Preise so hoch wie seit 1991 nicht mehr. In Argentinien ist derzeit eine schwere Wirtschafts-Krise. Vor allem die Kosten f\u00fcr Produkte wie K\u00f6rperpflege, Transport und Telefonieren sind deutlich gestiegen. Der neue Pr\u00e4sident Javier Milei m\u00f6chte mit Spar-Ma\u00dfnahmen die Teuerung bek\u00e4mpfen. Daf\u00fcr hat die Regierung unter anderem die Landes-W\u00e4hrung \u201ePeso\u201c abgewertet. Auch k\u00fcndigte Milei an, staatliche Hilfen f\u00fcr Gas, Wasser, Strom und \u00f6ffentliche Verkehrs-Mittel zu k\u00fcrzen. \r\n\r\nIm Jahr 2023 haben fast 20.000 Menschen in \u00d6sterreich die Staats-B\u00fcrgerschaft bekommen. Das sind um 3,2 Prozent weniger Staats-B\u00fcrgerschaften als im Jahr 2022. Eine Staats-B\u00fcrgerschaft bedeutet die Zugeh\u00f6rigkeit zu einem Staat. Der R\u00fcckgang ist vor allem auf die gesunkene Zahl an Einb\u00fcrgerungen von Opfern des Nationalsozialismus und deren Nachkommen zur\u00fcckzuf\u00fchren. National-Sozialisten ermordeten Menschen, die nicht zu ihren Ansichten gepasst haben. Das waren beispielsweise Juden, Menschen der Volks-Gruppe Roma und Sinti oder Menschen mit Behinderungen. Vergangenes Jahr haben insgesamt mehr als 7.900 Opfer des National-Sozialismus und ihre Verwandten die \u00f6sterreichische Staats-B\u00fcrgerschaft bekommen. \r\n\r\nIn der Ukraine hat es heute Fr\u00fch einen landesweiten Luft-Alarm gegeben. Bei einem Luft-Alarm wird die Bev\u00f6lkerung von einem Land, dass sich im Krieg befindet, vor Soldaten mit Raketen und Kampf-Flugzeugen gewarnt. Mehrere Bomber-Flugzeuge sind vom russischem Milit\u00e4r-Flug-Platz Olenja im Gebiet Murmansk gestartet. Sp\u00e4ter haben ukrainische Soldaten vom Angriff russischer Raketen auf die ukrainische Haupt-Stadt Kiew berichtet. Laut B\u00fcrger-Meister Vitali Klitschko hat es Explosionen in Kiew gegeben. Aber: Soldaten konnten durch die Luft-Abwehr Raketen und Bomben abwehren. Bei den russischen Angriffen sind 6 Personen verletzt worden. Auch wurden mehrere Wohn-H\u00e4user in der Ukraine besch\u00e4digt. \r\n\r\nDie Fahrzeug-Kontrolle wird jetzt einfacher: Denn Zulassungs-Schein und F\u00fchrerschein k\u00f6nnen jetzt in einer App gespeichert werden. Man muss sie nicht mehr im Auto mithaben. Bei einer Verkehrs-Kontrolle k\u00f6nnen Polizisten k\u00fcnftig F\u00fchrer-Schein und Zulassungs-Schein am Handy kontrollieren. Daf\u00fcr brauchen Fahrzeug-Lenker einen QR-Code. Diese App hei\u00dft \"e-Ausweise\". Im Zulassungs-Schein stehen wichtige Fahrzeug-Daten. F\u00fcr den digitalen Zulassungs-Schein brauchen Fahrzeug-Lenker die App \u201eDigitales Amt\u201c und eine \"ID Austria.\" Die \u201eID Austria\u201c ist ein digitaler Ausweis f\u00fcr Handy-Nutzer.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1925_tl_06_Nachrichten-in-_____14213746__o__1349922547__s15576110_0__ORF3HD_19304508P_19345407P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Nachrichten in Einfacher Sprache vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213746" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820525" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820525" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/954707ae005dee67ed586414cb9089ee4dbf12d0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820525_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/954707ae005dee67ed586414cb9089ee4dbf12d0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:30:00+01:00", + "delete_date": "2024-03-23T19:30:00+01:00", + "vod_ressort": null, + "description": "Pollensaison beginnt wieder | Handgemachte und preisgekr\u00f6nte Schokolade aus Nieder\u00f6sterreich", + "duration_seconds": 312, + "field_descriptor": "", + "genre_id": 3309573, + "genre_title": "Regionales", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "\u00d6sterreich Heute - Das Magazin vom 15.02.2024", + "id": 14213747, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "\u00d6sterreich Heute - Das Magazin", + "teaser_text": "Pollensaison beginnt wieder | Handgemachte und preisgekr\u00f6nte Schokolade aus Nieder\u00f6sterreich", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213747_0004_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213747_0004_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213747_0004_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213747_0004_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213747_0004_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213747_0004_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213747_0004_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213747_0004_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "\u00d6sterreich Heute - Das Magazin vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213747" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820701" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820701" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/91bc44a5f8234b244cf19633439d38ee3aa9220e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820701_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/91bc44a5f8234b244cf19633439d38ee3aa9220e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:30:00+01:00", + "delete_date": "2024-03-23T19:30:00+01:00", + "vod_ressort": null, + "description": "Israel vor Offensive in Rafah | Analyse zur bevorstehenden Offensive in Rafah | USA besorgt: Russische Atomraketen im Weltall? | Italien wendet sich wegen Transits an Br\u00fcssel | Gewerkschaft kritisiert SP\u00d6-Chef Babler | Regierung will Wirtschaftsstandort st\u00e4rken | Mieter wollen Betriebskostenreform | Meldungsblock | Er\u00f6ffnung der Berlinale", + "duration_seconds": 1180, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB 1 vom 15.02.2024", + "id": 14213729, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_highlight_teaser.jpeg", + "related_oegs_episode_title": "ZIB 1 vom 15.02.2024 (\u00d6GS)", + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 1", + "teaser_text": "Israel vor Offensive in Rafah | Analyse zur bevorstehenden Offensive in Rafah | USA besorgt: Russische Atomraketen im Weltall? | Italien wendet sich wegen Transits an Br\u00fcssel | Gewerkschaft kritisiert SP\u00d6-Chef Babler | Regierung will Wirtschaftsstandort st\u00e4rken | Mieter wollen Betriebskostenreform | Meldungsblock | Er\u00f6ffnung der Berlinale", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213729_0012_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213729_0012_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213729_0012_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213729_0012_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213729_0012_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213729_0012_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213729_0012_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213729_0012_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 1 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213729" + }, + "oegs_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214042" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820691" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820691" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/73adc7892a64a1912cd71769d1a7d84119c2af2c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820691_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/73adc7892a64a1912cd71769d1a7d84119c2af2c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:30:00+01:00", + "delete_date": "2024-03-23T19:30:00+01:00", + "vod_ressort": null, + "description": "Israel vor Offensive in Rafah | Analyse zur bevorstehenden Offensive in Rafah | USA besorgt: Russische Atomraketen im Weltall? | Italien wendet sich wegen Transits an Br\u00fcssel | Gewerkschaft kritisiert SP\u00d6-Chef Babler | Regierung will Wirtschaftsstandort st\u00e4rken | Mieter wollen Betriebskostenreform | Meldungsblock | Er\u00f6ffnung der Berlinale", + "duration_seconds": 1180, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB 1 vom 15.02.2024 (\u00d6GS)", + "id": 14214042, + "is_archive": false, + "is_oegs": true, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 1 (\u00d6GS)", + "teaser_text": "Israel vor Offensive in Rafah | Analyse zur bevorstehenden Offensive in Rafah | USA besorgt: Russische Atomraketen im Weltall? | Italien wendet sich wegen Transits an Br\u00fcssel | Gewerkschaft kritisiert SP\u00d6-Chef Babler | Regierung will Wirtschaftsstandort st\u00e4rken | Mieter wollen Betriebskostenreform | Meldungsblock | Er\u00f6ffnung der Berlinale", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14214042_0012_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14214042_0012_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14214042_0012_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14214042_0012_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14214042_0012_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14214042_0012_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14214042_0012_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14214042_0012_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 1 vom 15.02.2024 (\u00d6GS)", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214042" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821450" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821450" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/692af148f13f19a9762c81c3518efa015f767bca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821450_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/692af148f13f19a9762c81c3518efa015f767bca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:45:00+01:00", + "delete_date": "2024-03-23T19:45:00+01:00", + "vod_ressort": null, + "description": "Pressekonferenz zu \"200 Jahre Johann Strauss\" | Erste Einblicke in neues Pratermuseum | Festspiele Reichenau 2024 | \"Phantom der Oper\" im Raimund Theater | Neues Wiener Aktionismus Museum | Ausstellung \"K\u00f6rperwelten\" gastiert in Linz | Kulturmeldungen | Neues Kunstprojekt: Kollegienkirche - Salzburg | \"Luzi Wuzi\" im Wiener Rabenhoftheater | Neuer Film von Houchang Allahyari", + "duration_seconds": 1379, + "field_descriptor": "", + "genre_id": 1175, + "genre_title": "Kultur", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Kultur Heute vom 15.02.2024", + "id": 14213748, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Kultur Heute", + "teaser_text": "Pressekonferenz zu \"200 Jahre Johann Strauss\" | Erste Einblicke in neues Pratermuseum | Festspiele Reichenau 2024 | \"Phantom der Oper\" im Raimund Theater | Neues Wiener Aktionismus Museum | Ausstellung \"K\u00f6rperwelten\" gastiert in Linz | Kulturmeldungen | Neues Kunstprojekt: Kollegienkirche - Salzburg | \"Luzi Wuzi\" im Wiener Rabenhoftheater | Neuer Film von Houchang Allahyari", + "thumbnail_sources": null, + "title": "Kultur Heute vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213748" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821666" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821666" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/ad2b34dec021bf6da2a15bdac5fbe813f1f4efaf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821666_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/ad2b34dec021bf6da2a15bdac5fbe813f1f4efaf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:51:53+01:00", + "delete_date": "2024-03-23T19:51:53+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 104, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Wetter vom 15.02.2024", + "id": 14213730, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_highlight_teaser.jpeg", + "related_oegs_episode_title": "Wetter vom 15.02.2024 (\u00d6GS)", + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "[WETTER] ZIB", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1951_tl_02_Wetter-vom-15-0_____14213730__o__1880457135__s15575643_3__ORF2HD_19520508P_19534911P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213730" + }, + "oegs_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214040" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820972" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820972" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/746b851f82da140e899b4e1f2c23bb3aa35063fc.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820972_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/746b851f82da140e899b4e1f2c23bb3aa35063fc.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:51:53+01:00", + "delete_date": "2024-03-23T19:51:53+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 103, + "field_descriptor": "", + "genre_id": 2703827, + "genre_title": "Wetter", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Wetter vom 15.02.2024 (\u00d6GS)", + "id": 14214040, + "is_archive": false, + "is_oegs": true, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "[WETTER] ZIB (\u00d6GS)", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_1951_sd_05_Wetter-vom-15-0_____14214040__o__1959204998__s15576213_3__ORF2EHD_19520604P_19534924P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Wetter vom 15.02.2024 (\u00d6GS)", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214040" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820975" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820975" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/3c0ae0f472f8224fddb4755aa31c468609006acf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/thumb_16820975_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/21\/3c0ae0f472f8224fddb4755aa31c468609006acf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T19:55:33+01:00", + "delete_date": "2024-03-23T19:55:33+01:00", + "vod_ressort": null, + "description": "Glasner wird Trainer bei Crystal Palace | Bayern nach R\u00fcckschlag angez\u00e4hlt | Venier motiviert f\u00fcr Crans-Montana | Eder\/Hauser gehen in Single-Mixed leer aus", + "duration_seconds": 235, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Sport Aktuell vom 15.02.2024", + "id": 14213731, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Sport Aktuell", + "teaser_text": "Glasner wird Trainer bei Crystal Palace | Bayern nach R\u00fcckschlag angez\u00e4hlt | Venier motiviert f\u00fcr Crans-Montana | Eder\/Hauser gehen in Single-Mixed leer aus", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213731_0009_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213731_0009_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213731_0009_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213731_0009_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213731_0009_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213731_0009_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213731_0009_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213731_0009_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Sport Aktuell vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213731" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821066" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821066" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/e0a8ada5a7cceed873ddb345fcafd9024e5ab3ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821066_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/e0a8ada5a7cceed873ddb345fcafd9024e5ab3ef.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:00:00+01:00", + "delete_date": "2024-03-23T20:00:00+01:00", + "vod_ressort": null, + "description": "RC Lens trifft auf SC Freiburg | Bologna feiert dritten Serie-A-Sieg in Serie | Ronaldo erzielt Erfolge f\u00fcr Al Nassr | Klinsmann und Herzog vor Aus in S\u00fcdkorea | OSV-Kraulstaffel der Frauen verpasst Olympia | Kriechmayr auf Platz vier bei Training in Kvtifjell | \u00d6sterreichische Erfolge im Para-Ski-Weltcup | Vierter NHL-Sieg f\u00fcr Minnesota in Folge | NBA: Golden State Warriors unterliegen Clippers | Alexander Wurz wird 50", + "duration_seconds": 777, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Sport 20 vom 15.02.2024", + "id": 14213757, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Sport 20", + "teaser_text": "RC Lens trifft auf SC Freiburg | Bologna feiert dritten Serie-A-Sieg in Serie | Ronaldo erzielt Erfolge f\u00fcr Al Nassr | Klinsmann und Herzog vor Aus in S\u00fcdkorea | OSV-Kraulstaffel der Frauen verpasst Olympia | Kriechmayr auf Platz vier bei Training in Kvtifjell | \u00d6sterreichische Erfolge im Para-Ski-Weltcup | Vierter NHL-Sieg f\u00fcr Minnesota in Folge | NBA: Golden State Warriors unterliegen Clippers | Alexander Wurz wird 50", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213757_0013_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213757_0013_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213757_0013_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213757_0013_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213757_0013_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213757_0013_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213757_0013_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213757_0013_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Sport 20 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213757" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822103" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822103" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/f812507f531bbc674298b46303ad06c5224e1cec.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822103_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/f812507f531bbc674298b46303ad06c5224e1cec.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:03:05+01:00", + "delete_date": "2024-03-23T20:03:05+01:00", + "vod_ressort": null, + "description": "Fastentuch Pr\u00e4sentation | Heringsschmaus | \"TWIST!\"-Premiere", + "duration_seconds": 333, + "field_descriptor": "", + "genre_id": 1177, + "genre_title": "Unterhaltung", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Seitenblicke vom 15.02.2024", + "id": 14213732, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Seitenblicke", + "teaser_text": "Fastentuch Pr\u00e4sentation | Heringsschmaus | \"TWIST!\"-Premiere", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213732_0004_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213732_0004_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213732_0004_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213732_0004_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213732_0004_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213732_0004_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213732_0004_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213732_0004_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Seitenblicke vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213732" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821663" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821663" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/4a8807c39c857f8ccbd51d75862ff1ca04af85e4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821663_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/4a8807c39c857f8ccbd51d75862ff1ca04af85e4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:03:30+01:00", + "delete_date": "2024-03-23T20:03:30+01:00", + "vod_ressort": null, + "description": "Klimaschutz f\u00fcr alle | Das Zusammenspiel von Klima und Atlantik", + "duration_seconds": 257, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB Magazin vom 15.02.2024", + "id": 14213702, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB Magazin", + "teaser_text": "Klimaschutz f\u00fcr alle | Das Zusammenspiel von Klima und Atlantik", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213702_0005_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213702_0005_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213702_0005_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213702_0005_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213702_0005_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213702_0005_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213702_0005_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213702_0005_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB Magazin vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213702" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821924" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16821924" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/90fddbaca4f9e38e177822159ba220f9a619db19.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/thumb_16821924_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/22\/90fddbaca4f9e38e177822159ba220f9a619db19.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:15:00+01:00", + "delete_date": "2024-03-23T20:15:00+01:00", + "vod_ressort": null, + "description": "Das Lesachtal gilt als das naturbelassenste Tal Europas. Schon die geografische Lage und die topografischen Gegebenheiten sorgen daf\u00fcr, dass es ein Naturjuwel bleibt. Eingebettet zwischen den Lienzer Dolomiten im Norden und den Karnischen Alpen im S\u00fcden ist das Lesachtal der s\u00fcdwestlichste Teil K\u00e4rntens. Hier lebt Familie Lugger in einem Bauernhof, den Vater und Sohn an anderer Stelle abgetragen und hier wieder aufgestellt haben. Die Luggers leben von Getreide, ein paar K\u00fchen, den Almwiesen, dem Wald und dem Tourismus. Und sie leben sehr naturverbunden. In der eigenen M\u00fchle wird das Getreide gemahlen und f\u00fcr den Eigenbedarf zu Brot verarbeitet. Diese \u201eLand der Berge\u201c-Produktion portraitiert Familie Lugger im Wechsel der Jahreszeiten und zeigt ihren Alltag im malerischen Lesachtal.\r\n\r\nBildquelle: ORF\/epo film\/Nela-Valentina Pichl", + "duration_seconds": 2764, + "field_descriptor": "", + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Bergbauernleben: Im Lesachtal", + "id": 14213749, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": 2024, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Land der Berge", + "teaser_text": "Das Lesachtal gilt als das naturbelassenste Tal Europas. Schon die geografische Lage und die topografischen Gegebenheiten sorgen daf\u00fcr, dass es ein Naturjuwel bleibt. Eingebettet zwischen den Lienzer Dolomiten im Norden und den Karnischen Alpen im S\u00fcden ist das Lesachtal der s\u00fcdwestlichste Teil K\u00e4rntens. Hier lebt Familie Lugger in einem Bauernhof, den Vater und Sohn an anderer Stelle abgetragen und hier wieder aufgestellt haben. Die Luggers leben von Getreide, ein paar K\u00fchen, den Almwiesen, dem Wald und dem Tourismus. Und sie leben sehr naturverbunden. In der eigenen M\u00fchle wird das Getreide gemahlen und f\u00fcr den Eigenbedarf zu Brot verarbeitet. Diese \u201eLand der Berge\u201c-Produktion portraitiert Familie Lugger im Wechsel der Jahreszeiten und zeigt ihren Alltag im malerischen Lesachtal.\r\n\r\nBildquelle: ORF\/epo film\/Nela-Valentina Pichl", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2015_tl_06_Land-der-Berge-_____14213749__o__1494890539__s15575564_4__ORF3HD_20145222P_21005704P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Land der Berge: Bergbauernleben: Im Lesachtal", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213749" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814667" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814667" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/99ceb89739b4921195ecf619ef7a80162191822c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814667_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/99ceb89739b4921195ecf619ef7a80162191822c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:15:00+01:00", + "delete_date": "2024-03-23T20:15:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 1804, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "OHNE GRENZEN - das Behindertensport Magazin: Folge 41", + "id": 14213758, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": true, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Ohne Grenzen", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2015_tl_03_OHNE-GRENZEN---_____14213758__o__1132830391__s15575943_3__ORFSHD_20150212P_20450618P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "OHNE GRENZEN - das Behindertensport Magazin: Folge 41", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213758" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822647" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822647" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/c05894cbda3f8d5e7806066751d5598a9f52b70c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822647_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/c05894cbda3f8d5e7806066751d5598a9f52b70c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:15:01+01:00", + "delete_date": "2024-03-23T20:15:01+01:00", + "vod_ressort": null, + "description": "Der RC Lens und der SC Freiburg trennen sich im Europa-League-Knock-out-Play-off-Hinspiel in Frankreich 0:0. Der Aufsteiger wird im R\u00fcckspiel in Freiburg (GER) ermittelt.", + "duration_seconds": 9684, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Europa League Knock-out-Play-off Hinspiel: RC Lens - SC Freiburg", + "id": 14213703, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": true, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_highlight_teaser.jpeg", + "related_audiodescription_episode_title": "AD | Europa League Knock-out-Play-off Hinspiel: RC Lens - SC Freiburg", + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "RC Lens - SC Freiburg", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213703_0049_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213703_0049_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213703_0049_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213703_0049_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213703_0049_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213703_0049_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213703_0049_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213703_0049_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Europa League Knock-out-Play-off Hinspiel: RC Lens - SC Freiburg", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213703" + }, + "audio_description_episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214044" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822599" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822599" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/5351ca66fa62fe633d02118313d8e0fb29c90b84.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822599_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/5351ca66fa62fe633d02118313d8e0fb29c90b84.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T20:15:02+01:00", + "delete_date": "2024-03-23T20:15:02+01:00", + "vod_ressort": null, + "description": "Der RC Lens und der SC Freiburg trennen sich im Europa-League-Knock-out-Play-off-Hinspiel in Frankreich 0:0. Der Aufsteiger wird im R\u00fcckspiel in Freiburg (GER) ermittelt.", + "duration_seconds": 9684, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "AD | Europa League Knock-out-Play-off Hinspiel: RC Lens - SC Freiburg", + "id": 14214044, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "AD | Fu\u00dfball: Europa League", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14214044_0047_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14214044_0047_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14214044_0047_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14214044_0047_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14214044_0047_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14214044_0047_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14214044_0047_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14214044_0047_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "AD | Europa League Knock-out-Play-off Hinspiel: RC Lens - SC Freiburg", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214044" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822852" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822852" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/6b83b3ae68600a5ddf3c816fa9d48605beda7f48.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822852_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/6b83b3ae68600a5ddf3c816fa9d48605beda7f48.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T21:04:19+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Manche Kriminalf\u00e4lle in \u00d6sterreich bleiben trotz gr\u00f6\u00dfter Bem\u00fchungen ungekl\u00e4rt. Die Polizei spricht dann von einem Cold Case. So kommt es vor, dass ein Mensch verschwindet oder zu Tode kommt und niemand wei\u00df, was genau passiert ist. War es ein Unfall oder ein Verbrechen? \u201eDas Schlimmste ist die Ungewissheit\u201c, sind sich Angeh\u00f6rige einig:\r\nAm 14. Oktober 2023 verschwand in Linz die 54-j\u00e4hrige Christa. Was man wei\u00df: Sie war in einem Lokal und hat danach bei einem Bekannten \u00fcbernachtet. Dort soll sie in der Fr\u00fch die Wohnung verlassen haben. Seit damals fehlt jede Spur. Was ist passiert? Ist sie untergetaucht? Wurde sie entf\u00fchrt und wird irgendwo festgehalten? War es Mord? Ein tragischer Unfall? Die Kinder k\u00f6nnen nichts ausschlie\u00dfen. \u201eNach so langer Zeit muss man schon vom Schlimmsten ausgehen\u201c, sagt Sohn Michael. In Vorarlberg ist vor fast sechs Jahren die 26-j\u00e4hrige Gloria verschwunden. Zuletzt gesehen wurde sie in der Bank, als sie eine neue Bankomatkarte beantragt hat. Ein halbes Jahr sp\u00e4ter wurden Teile ihres Skeletts in den Bergen gefunden. Kleidung, Rucksack und Schuhe fehlen bis heute. Die Umst\u00e4nde ihres Todes bleiben r\u00e4tselhaft. Mutter Christa will wissen, warum ihre Tochter sterben musste. F\u00fcr die Polizei ist der Akt geschlossen. \u201eIch muss einfach erfahren, was an diesem 5. M\u00e4rz 2018 passiert ist\u201c, sagt Christa, \u201evorher kann ich nicht abschlie\u00dfen.\u201c\r\nGabi aus Wien ist schon seit 34 Jahren abg\u00e4ngig. Damals war sie 29 Jahre alt und wurde zuletzt bei einem Disco-Besuch gesehen. Ihre Schwester Regina, die jetzt Mitte 60 ist, hat die Suche nie aufgegeben. V\u00f6llig \u00fcberraschend gibt es nun neue Hinweise.\r\nF\u00fcr die \u201eAm Schauplatz\u201c-Reportage \u201eFall ungel\u00f6st\u201c \u2013 zu sehen am Donnerstag, dem 15. Februar 2024, um 21.05 Uhr in ORF 2 \u2013 rekonstruiert Julia Kovarik diese ungel\u00f6sten F\u00e4lle und begibt sich mit den Angeh\u00f6rigen auf Spurensuche.\r\n\r\nBildquelle: ORF", + "duration_seconds": 3034, + "field_descriptor": "", + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Fall ungel\u00f6st", + "id": 14213733, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "hauptabend", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Am Schauplatz", + "teaser_text": "Manche Kriminalf\u00e4lle in \u00d6sterreich bleiben trotz gr\u00f6\u00dfter Bem\u00fchungen ungekl\u00e4rt. So kommt es vor, dass ein Mensch verschwindet oder zu Tode kommt und niemand wei\u00df, was genau passiert ist.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2104_in_02_Am-Schauplatz--_____14213733__o__2091133008__s15576193_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Am Schauplatz: Fall ungel\u00f6st", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213733" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16823382" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820161" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820162" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16820160" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/24\/thumb_16823382_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/24\/thumb_16823382_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/24\/thumb_16823382_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/24\/thumb_16823382_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/24\/93b122e337c18abca08c01744f3d19b74150a451.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/21\/thumb_16820161_segment_16x9-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/21\/thumb_16820161_segment_16x9-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/21\/thumb_16820161_segment_16x9-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/21\/thumb_16820161_segment_16x9-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/21\/ca006965cb1ff4bc54d8c61a59b9a479624a37f8.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/21\/thumb_16820162_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/21\/thumb_16820162_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/21\/thumb_16820162_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/21\/thumb_16820162_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/21\/4ea26dc6567d1c9a28670faff30612753337c95b.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/21\/thumb_16820160_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/21\/thumb_16820160_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/21\/thumb_16820160_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/21\/thumb_16820160_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/21\/56bd84b71567f1e1b998f9eff699774b094c23fe.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T21:05:00+01:00", + "delete_date": "2024-03-23T21:05:00+01:00", + "vod_ressort": null, + "description": "Diese ORF III Neuproduktion f\u00fcr \"Land der Berge \"begleitet vier unterschiedliche Bergbauernfamilien aus vier Bundesl\u00e4ndern durch die Jahreszeiten. 365 Tage im Jahr ist ein Bauer Bauer, eine B\u00e4uerin B\u00e4uerin. Es ist vielmehr Berufung als Beruf. Eine Trennung zwischen Arbeitswelt und privatem Sein gibt es kaum. Es ist eine Lebensart und eine bewusste Entscheidung, die Natur als Wirtschaftsraum zu nutzen, sich selbst in ihre Rhythmen einzuf\u00fcgen und den Kreislauf de Jahreszeiten zur Grundlage des eigenen Lebens zu machen. Die Dokumentation beginnt mit der stillsten Jahreszeit, dem Winter, und zeigt vier Bergbauernfamilien in ihrer Lebensart, eingebettet in wundersch\u00f6ne Regionen und Naturr\u00e4ume, umgeben von herrlichen Gipfeln, zu deren F\u00fc\u00dfen sich bildgewaltige T\u00e4ler ausbreiten. Lebenswelten zwischen Tradition und Vision f\u00fcr eine lebenswerte Zukunft.\r\n\r\nBildquelle: ORF\/Stefan Pichl\/Nela-Valentina Pichl", + "duration_seconds": 2730, + "field_descriptor": "", + "genre_id": 1173, + "genre_title": "Doku & Reportage", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Mit den Bergbauern durchs Jahr", + "id": 14213750, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": 2022, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Land der Berge", + "teaser_text": "Diese ORF III Neuproduktion f\u00fcr \"Land der Berge \"begleitet vier unterschiedliche Bergbauernfamilien aus vier Bundesl\u00e4ndern durch die Jahreszeiten. 365 Tage im Jahr ist ein Bauer Bauer, eine B\u00e4uerin B\u00e4uerin. Es ist vielmehr Berufung als Beruf. Eine Trennung zwischen Arbeitswelt und privatem Sein gibt es kaum. Es ist eine Lebensart und eine bewusste Entscheidung, die Natur als Wirtschaftsraum zu nutzen, sich selbst in ihre Rhythmen einzuf\u00fcgen und den Kreislauf de Jahreszeiten zur Grundlage des eigenen Lebens zu machen. Die Dokumentation beginnt mit der stillsten Jahreszeit, dem Winter, und zeigt vier Bergbauernfamilien in ihrer Lebensart, eingebettet in wundersch\u00f6ne Regionen und Naturr\u00e4ume, umgeben von herrlichen Gipfeln, zu deren F\u00fc\u00dfen sich bildgewaltige T\u00e4ler ausbreiten. Lebenswelten zwischen Tradition und Vision f\u00fcr eine lebenswerte Zukunft.\r\n\r\nBildquelle: ORF\/Stefan Pichl\/Nela-Valentina Pichl", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2105_tl_06_Land-der-Berge-_____14213750__o__1705561697__s15575577_7__ORF3HD_21054508P_21511603P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Land der Berge: Mit den Bergbauern durchs Jahr", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213750" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814668" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16814668" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16818462" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/2a2011d16d9f98185d80519786ce21c69191ca9c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/thumb_16814668_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/15\/2a2011d16d9f98185d80519786ce21c69191ca9c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/19\/thumb_16818462_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/19\/thumb_16818462_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/19\/thumb_16818462_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/19\/thumb_16818462_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/19\/9ccd0d43427c61c732fba60cead40bac1a14c6ab.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T21:45:00+01:00", + "delete_date": "2024-03-23T21:45:00+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 4273, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "World Aquatics Schwimm Weltmeisterschaft 2024 Doha Tag 5, Highlights", + "id": 14213759, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 76464, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Schwimmen: Weltmeisterschaft 2024", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2145_tl_03_World-Aquatics-_____14213759__o__1303292701__s15575944_4__ORFSHD_21554720P_23070118P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "World Aquatics Schwimm Weltmeisterschaft 2024 Doha Tag 5, Highlights", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213759" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822782" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822782" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/2d6e3179f87b45ae00cf7e2d35056588d53d867d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822782_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/2d6e3179f87b45ae00cf7e2d35056588d53d867d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T21:48:00+01:00", + "delete_date": "2024-03-23T21:48:00+01:00", + "vod_ressort": null, + "description": "Vermieter sollen Betriebskostenanteil tragen | NATO sagt Ukraine R\u00fcstungshilfe zu | Trump wieder vor Gericht | Hyperinflation in Argentinien | Wetter", + "duration_seconds": 190, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB Flash 3 vom 15.02.2024", + "id": 14214043, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB Flash", + "teaser_text": "Vermieter sollen Betriebskostenanteil tragen | NATO sagt Ukraine R\u00fcstungshilfe zu | Trump wieder vor Gericht | Hyperinflation in Argentinien | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2148_tl_01_ZIB-Flash-3-vom_ZIB-Flash-3-vom__14214043__o__1068260000__s15576279_9__ORF1HD_21492624P_21523716P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB Flash 3 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14214043" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822688" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822688" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/279a0cb09cfac655c5065f5f76a23d37fd348f18.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822688_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/279a0cb09cfac655c5065f5f76a23d37fd348f18.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T22:00:00+01:00", + "delete_date": "2024-03-23T22:00:00+01:00", + "vod_ressort": null, + "description": "Ukraine: Teilweiser R\u00fcckzug aus Awdijiwka | Schw\u00e4chelnde Industrie | IV-Pr\u00e4sident Knill zur schw\u00e4chelnden Industrie | SP\u00d6: Streit auf offener B\u00fchne | Meldungsblock | Johanna von Koczian ist tot | Wetter", + "duration_seconds": 1601, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ZIB 2 vom 15.02.2024", + "id": 14213734, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 2", + "teaser_text": "Ukraine: Teilweiser R\u00fcckzug aus Awdijiwka | Schw\u00e4chelnde Industrie | IV-Pr\u00e4sident Knill zur schw\u00e4chelnden Industrie | SP\u00d6: Streit auf offener B\u00fchne| Meldungsblock | Johanna von Koczian ist tot | Wetter", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213734_0010_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213734_0010_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213734_0010_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213734_0010_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213734_0010_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213734_0010_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213734_0010_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213734_0010_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ZIB 2 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213734" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822764" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822764" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/b5d00b70822fab3d916927be061fdd6b1c7a69fb.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822764_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/b5d00b70822fab3d916927be061fdd6b1c7a69fb.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T22:29:57+01:00", + "delete_date": "2024-08-20T22:29:57+02:00", + "vod_ressort": null, + "description": "Machtlose Mieter \u2013 vom Sanierungspaket profitieren vor allem Hauseigent\u00fcmer | Fehlende Fachkr\u00e4fte: Kann Zuwanderung das Problem l\u00f6sen? | Zielgruppe Singles: Wie Unternehmen neue Kundschaft entdecken", + "duration_seconds": 1850, + "field_descriptor": "", + "genre_id": 1176, + "genre_title": "Magazin", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Eco vom 15.02.2024", + "id": 14213735, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "hauptabend", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Eco", + "teaser_text": "Machtlose Mieter \u2013 vom Sanierungspaket profitieren vor allem Hauseigent\u00fcmer | Fehlende Fachkr\u00e4fte: Kann Zuwanderung das Problem l\u00f6sen? | Zielgruppe Singles: Wie Unternehmen neue Kundschaft entdecken", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213735_0006_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213735_0006_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213735_0006_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213735_0006_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213735_0006_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213735_0006_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213735_0006_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213735_0006_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Eco vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213735" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822791" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822791" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/99ecdd628c532321029a055005a9329cad0650ea.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822791_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/99ecdd628c532321029a055005a9329cad0650ea.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T23:00:00+01:00", + "delete_date": "2024-03-23T23:00:00+01:00", + "vod_ressort": null, + "description": "Der Schlagzeuger Bernhard Egger entlockt den Stars Geschichten, die sonst kaum einer kennt. In dieser Folge nimmt niemand Geringerer als Starkabarettistin und Publikumsliebling Monika Gruber Platz auf dem \u201eroten Stuhl\u201c. In einem ganz pers\u00f6nlichen Gespr\u00e4ch erz\u00e4hlt Gruber aus ihrem Leben, ordnet aktuelle gesellschaftliche Entwicklungen ein (\u201eDie Deppen werden jeden Tag mehr\u201c) und wird so richtig emotional, dass sogar die Tr\u00e4nen flie\u00dfen. Monika Gruber, wie man sie so noch nicht erlebt hat!\r\n\r\nBildquelle: ORF\/Bernhard Egger", + "duration_seconds": 3803, + "field_descriptor": "", + "genre_id": 2703835, + "genre_title": "Comedy & Satire", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Auf dem Roten Stuhl", + "id": 14213751, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "orf_label": null, + "time_section": "nacht", + "production_country": null, + "production_year": 2016, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Talk-Sendung", + "teaser_text": "Die Starkabarettistin Monika Gruber erz\u00e4hlt in einem ganz pers\u00f6nlichen Gespr\u00e4ch mit dem Schlagzeuger Bernhard Egger aus ihrem Leben.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2300_tl_06_Auf-dem-Roten-S_____14213751__o__1914558150__s15575256_6__ORF3HD_22581304P_00013703P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Auf dem Roten Stuhl", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213751" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813875" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813877" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813017" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16813017" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813875_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813875_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813875_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/thumb_16813875_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/14\/b074fc3dacfa974d4c1db8ff5d3933fe2e87a550.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/14\/thumb_16813877_segment_16x9-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/14\/thumb_16813877_segment_16x9-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/14\/thumb_16813877_segment_16x9-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/14\/thumb_16813877_segment_16x9-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_16x9-with-logo\/0169\/14\/cda9259a7e0c33499da33e1b5649904feef9fb26.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/1a032443a6b837819f9736f9c3fa18b28e04b631.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/thumb_16813017_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0169\/14\/1a032443a6b837819f9736f9c3fa18b28e04b631.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T23:01:46+01:00", + "delete_date": "2024-03-23T23:01:46+01:00", + "vod_ressort": null, + "description": null, + "duration_seconds": 86, + "field_descriptor": "", + "genre_id": 1177, + "genre_title": "Unterhaltung", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Eurodreams", + "id": 14213705, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nacht", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Eurodreams", + "teaser_text": null, + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2301_tl_01_Eurodreams_____14213705__o__1884690756__s15575683_3__ORF1HD_23040713P_23053406P_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Eurodreams", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213705" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822946" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822946" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/d8356f78f5e563fcba80f850aaee19069ea124cf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822946_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/d8356f78f5e563fcba80f850aaee19069ea124cf.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T23:03:14+01:00", + "delete_date": "2024-03-23T23:03:14+01:00", + "vod_ressort": null, + "description": "Am\u00e9lie van Tass und Thommy Ten verzaubern die Welt. In Las Vegas geh\u00f6ren die Meister:innen der Mentalmagie quasi schon zum Inventar, jetzt kommen sie mit ihrer neuen Show nach \u00d6sterreich. Im Nighttalk \u201eSt\u00f6ckl\u201c erz\u00e4hlen die beiden Weltstars \u00fcber ihre Wahlheimat Las Vegas, ihren neuen B\u00fchnenpartner und lassen au\u00dferdem mit einem kurzen Trick die anderen G\u00e4ste staunen. \u201eIch habe noch sieben Jahre und 26 Tage bis zur Pension!\u201c, scherzt Politologe Gerhard Mangott. Im Gespr\u00e4ch mit Barbara St\u00f6ckl zeigt sich der gefragte Russlandexperte auch von seiner pers\u00f6nlichen Seite und erz\u00e4hlt unter anderem, warum er mit seinem Partner tanzen geht, auch wenn er eigentlich nicht gerne tanzt. \u201eDer Charakter einer Person hat viel damit zu tun, wie man sich kleidet, aber auch damit, was man isst\u201c, sagt Sternekoch und Autor Johann Lafer. Was Ern\u00e4hrung mit einem macht, hat er am eigenen Leibe erlebt, denn mit seiner medizinischen K\u00fcche hat er sich von seiner Arthrose befreit. In seinem Kochbuch \u201eEssen gegen Schmerzen\u201c teilt er seine gesunden Rezepte. Andrea Pirker ist Forst- und Landwirtin, die als neues Werbegesicht eines Motors\u00e4gen-Herstellers eine Lanze f\u00fcr \u201eechte\u201c Frauen gebrochen hat. \u201eDie Forstwirtschaft ist weiblich. Wir Frauen waren immer schon im Wald\u201c, betont sie im ORF-Nighttalk. Au\u00dferdem erz\u00e4hlt sie von der Erziehung ihres Vaters und wie er sie auf eine m\u00e4nnerdominierte Branche vorbereiten wollte.\r\n\r\nBildquelle: ORF\/G\u00fcnther Pichlkostner", + "duration_seconds": 3453, + "field_descriptor": "", + "genre_id": 13776488, + "genre_title": "Talk", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "ST\u00d6CKL", + "id": 14213736, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nacht", + "production_country": "\u00d6sterreich", + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Talkshow", + "teaser_text": "Magier-Duo Thommy Ten und Am\u00e9lie van Tass, Russlandexperte Gerhard Mangott, Sternekoch und Autor Johann Lafer sowie Forstwirtin Andrea Pirker sind zu Gast bei Barbara St\u00f6ckl.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-15_2303_in_02_STOeCKL_____14213736__o__2208805636__s15575540_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "ST\u00d6CKL", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213736" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16815432" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16815432" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/d78a3b3615a7534e9a2ed59619b9819f0422214e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815432_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/d78a3b3615a7534e9a2ed59619b9819f0422214e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T23:06:56+01:00", + "delete_date": "2024-03-23T23:06:56+01:00", + "vod_ressort": null, + "description": "Ukraine zieht sich teilweise aus Awdijiwka zur\u00fcck | Milit\u00e4rstratege zum ukrainischen R\u00fcckzug | Mietervereinigung fordert Reform der Betriebskosten | EU: Influencer weisen Werbung nicht korrekt aus | Argentinien: Inflation klettert auf 250 Prozent | Er\u00f6ffnung der Berlinale | Wetter", + "duration_seconds": 860, + "field_descriptor": "", + "genre_id": 2703825, + "genre_title": "ZIB & Information", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "ZIB 3 vom 15.02.2024", + "id": 14213706, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nacht", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "ZIB 3", + "teaser_text": "Ukraine zieht sich teilweise aus Awdijiwka zur\u00fcck | Milit\u00e4rstratege zum ukrainischen R\u00fcckzug | Mietervereinigung fordert Reform der Betriebskosten | EU: Influencer weisen Werbung nicht korrekt aus | Argentinien: Inflation klettert auf 250 Prozent | Er\u00f6ffnung der Berlinale | Wetter", + "thumbnail_sources": null, + "title": "ZIB 3 vom 15.02.2024", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213706" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822930" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822930" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/926dbbce2e6174a6ed663633f5cb9ec797f4eae1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822930_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/926dbbce2e6174a6ed663633f5cb9ec797f4eae1.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-15T23:22:30+01:00", + "delete_date": "2024-03-23T23:22:30+01:00", + "vod_ressort": null, + "description": "Sturm schl\u00e4gt Slovan 4:1 | Feyenoord vs. AS Roma endet 1:1 | Milan schl\u00e4gt Rennes 3:0 | Saint-Gilloise macht 0:2 gegen Eintracht wett", + "duration_seconds": 1807, + "field_descriptor": "", + "genre_id": 1178, + "genre_title": "Sport", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Europa League und Conference League Knock-out-Play-off-Hinspiele: Highlights", + "id": 14213707, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": true, + "uhd": false, + "main_channel_id": 1180, + "orf_label": null, + "time_section": "nacht", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Europa League", + "teaser_text": "Sturm schl\u00e4gt Slovan 4:1 | Feyenoord vs. AS Roma endet 1:1 | Milan schl\u00e4gt Rennes 3:0 | Saint-Gilloise macht 0:2 gegen Eintracht wett", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213707_0007_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/14213707_0007_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213707_0007_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/14213707_0007_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213707_0007_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/14213707_0007_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213707_0007_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/14213707_0007_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Europa League und Conference League Knock-out-Play-off-Hinspiele: Highlights", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213707" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822955" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16822955" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/93e7b7eb543f396ca070b9e4230e6346a0483d88.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/thumb_16822955_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/23\/93e7b7eb543f396ca070b9e4230e6346a0483d88.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "age_classification": "", + "audio_description_service_available": false, + "date": "2024-02-16T00:03:05+01:00", + "delete_date": "2024-08-23T00:05:00+02:00", + "vod_ressort": null, + "description": "Es ist perfekt. Liebe auf den ersten Blick. Anna und Max sind Gegens\u00e4tze, die sich anziehen. Allerdings nicht lange, denn auf den zweiten Blick passen sie eigentlich gar nicht zusammen. Ein paar Jahre sp\u00e4ter funkt es daf\u00fcr umso heftiger. Und wieder folgt eine harte Landung in der Wirklichkeit. Es geht sich einfach nicht aus zwischen den Beiden. Zw\u00f6lf Jahre lang geht das so. Bis Anna beschlie\u00dft einen anderen zu heiraten und Max scheinbar irrt\u00fcmlich zur Hochzeit nach Venedig eingeladen wird.\r\n\r\nBildquelle: ORF\/ARD\/Degeto\/Petro Domenigg", + "duration_seconds": 5274, + "field_descriptor": "", + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": true, + "has_subtitle": true, + "has_youth_protection": false, + "headline": "Die Liebe ein Traum", + "id": 14213737, + "is_archive": false, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "orf_label": null, + "time_section": "nacht", + "production_country": null, + "production_year": 2007, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "sub_headline": "Liebeskom\u00f6die", + "teaser_text": "Eine rasante Liebeskom\u00f6die von Xaver Schwarzenberger, die zeigt, dass es manchmal vier Blicke braucht um die gro\u00dfe Liebe zu finden.", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2024-02-16_0003_in_02_Die-Liebe-ein-T_____14213737__o__1105170682__s15575396_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "Die Liebe ein Traum", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14213737" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16815365" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16815365" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16815366" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/45ab598116eb35afb7c4b61b70d7ae45ec548b76.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/thumb_16815365_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0169\/16\/45ab598116eb35afb7c4b61b70d7ae45ec548b76.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/16\/thumb_16815366_segment_2x3-with-logo_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/16\/thumb_16815366_segment_2x3-with-logo_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/16\/thumb_16815366_segment_2x3-with-logo_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/16\/thumb_16815366_segment_2x3-with-logo_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3-with-logo\/0169\/16\/2b9d13fd75d799ede3a38bc7fe218ca53ff0ac9f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } +] \ No newline at end of file diff --git a/src/test/resources/orfOn/subtitle_868782.json b/src/test/resources/orfOn/subtitle_868782.json new file mode 100644 index 000000000..50a3fe3dc --- /dev/null +++ b/src/test/resources/orfOn/subtitle_868782.json @@ -0,0 +1,31 @@ +{ + "id": 868782, + "parsed_at": null, + "sami_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0162\/100\/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi", + "srt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0162\/100\/79738b7eb874c151cde04ec6367a444bd5999db1.srt", + "stl_url": null, + "ttml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0162\/100\/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml", + "updated_at": "2023-11-21T01:11:42+01:00", + "vtt_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0162\/100\/4b1c81a007271ee90224a9555494148e3116a00e.vtt", + "xml_url": "https:\/\/api-tvthek.orf.at\/assets\/subtitles\/0162\/100\/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868782" + }, + "xml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16199129" + }, + "srt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16199130" + }, + "vtt_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16199131" + }, + "sami_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16199133" + }, + "ttml_file": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16199132" + } + } +} \ No newline at end of file diff --git a/src/test/resources/orfOn/videoItems_1.json b/src/test/resources/orfOn/videoItems_1.json new file mode 100644 index 000000000..ae728f531 --- /dev/null +++ b/src/test/resources/orfOn/videoItems_1.json @@ -0,0 +1,1582 @@ +{ + "page": "1", + "limit": "20", + "page_count": 1, + "total": 9, + "next": null, + "_items": [ + { + "order": 0, + "age_classification": "", + "audio_description_service_available": false, + "date": "2020-10-26T09:06:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Oberstleutnant Jasmine Krutzler berichtet von ihren Erfahrungen im Auslandseinsatz. Sie war unter anderem in Bosnien, im Kosovo, in Afghanistan und auf den Golanh\u00f6hen stationiert und schildert ihre Sicht der Dinge \u00fcber die Rolle, die das Heer im Ausland erbringt. \r\n\r\nSendung: Der Nationalfeiertag - Kranzniederlegung, Angelobung, Ministerrat\r\nGestaltung: Stefan Ruzowitzky\r\nInterview mit: Jasmine Krutzler", + "duration_seconds": 228, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "60 Jahre Auslandseins\u00e4tze des Bundesheeres", + "id": 14070240, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "vormittag", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Oberstleutnant Jasmine Krutzler berichtet von ihren Erfahrungen im Auslandseinsatz. Sie war unter anderem in Bosnien, im Kosovo, in Afghanistan und auf den Golanh\u00f6hen stationiert und schildert ihre Sicht der Dinge \u00fcber die Rolle, die das Heer im Ausland erbringt. \r\n\r\nSendung: Der Nationalfeiertag - Kranzniederlegung, Angelobung, Ministerrat\r\nGestaltung: Stefan Ruzowitzky\r\nInterview mit: Jasmine Krutzler", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2020-10-26_0906_in_02_60-Jahre-Auslan_____14070240__o__1297789589__s14788281_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "title": "60 Jahre Auslandseins\u00e4tze des Bundesheeres", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14070240" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11105301" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/11105301" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/51f3053576805e1ea44176e46c21e265b57f4c86.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/thumb_11105301_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0112\/06\/51f3053576805e1ea44176e46c21e265b57f4c86.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 1, + "age_classification": "", + "audio_description_service_available": false, + "date": "2018-10-27T19:25:00+02:00", + "delete_date": null, + "vod_ressort": null, + "description": "Im Dezember 1960 kam es zum ersten Einsatz von Soldaten au\u00dferhalb \u00d6sterreichs. Seither hat sich das Heer an vielen weiteren Missionen beteiligt. Regisseur Walter Seledec begab sich auf die Spuren der \u00f6sterreichischen Eins\u00e4tze und begann seine Erkundung in der Zeit der Monarchie, als sich bereits die k. u. k-Truppen an internationalen Eins\u00e4tzen beteiligten.\r\n\r\nSendung: zeit.geschichte\r\nGestaltung: Walter Seledec", + "duration_seconds": 2911, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "\u00d6sterreichs Soldaten weltweit im Einsatz", + "id": 14003539, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 3026625, + "sub_headline": null, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Im Dezember 1960 kam es zum ersten Einsatz von Soldaten au\u00dferhalb \u00d6sterreichs. Seither hat sich das Heer an vielen weiteren Missionen beteiligt. Regisseur Walter Seledec begab sich auf die Spuren der \u00f6sterreichischen Eins\u00e4tze und begann seine Erkundung in der Zeit der Monarchie, als sich bereits die k. u. k-Truppen an internationalen Eins\u00e4tzen beteiligten.\r\n\r\nSendung: zeit.geschichte\r\nGestaltung: Walter Seledec", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2018-10-27_1925_in_06_Oesterreichs-So_____14003539__o__2019240494__s14441053_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2018-10-27_1925_in_06_Oesterreichs-So_____14003539__o__2019240494__s14441053_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2018-10-27_1925_in_06_Oesterreichs-So_____14003539__o__2019240494__s14441053_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2018-10-27_1925_in_06_Oesterreichs-So_____14003539__o__2019240494__s14441053_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "\u00d6sterreichs Soldaten weltweit im Einsatz", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14003539" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/7180616" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/7180616" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/9bd8e3ad62d3455c484dcc282e6fa19341d89aa9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/thumb_7180616_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0072\/81\/9bd8e3ad62d3455c484dcc282e6fa19341d89aa9.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 2, + "age_classification": "", + "audio_description_service_available": false, + "date": "2010-06-16T20:15:00+02:00", + "delete_date": null, + "vod_ressort": null, + "description": "Im Jahre 1960 entschloss sich die \u00f6sterreichische Bundesregierung erstmals seit Bestehen des Heeres in der Zweiten Republik, rot-wei\u00df-rote Soldaten zu Hilfeleistungen ins Ausland zu entsenden. Dieser erste Einsatz von Soldaten au\u00dferhalb \u00d6sterreichs begann im Dezember 1960. \u00d6sterreich unterst\u00fctzte damit eine Operation der UNO zur Beendigung der kriegs\u00e4hnlichen Zust\u00e4nde im ehemaligen Belgisch-Kongo. Seit diesem ersten Einsatz 1960 bis 2010 beteiligte sich das Bundesheer an insgesamt 75 Missionen. Diese zahlreichen und h\u00f6chst unterschiedlichen Eins\u00e4tze des Bundesheeres im Ausland hatten auch dazu gef\u00fchrt, dass das Ansehen \u00d6sterreichs in Europa und der Welt eine bedeutende Steigerung und Anerkennung erfuhr. Eine Doku aus dem Jahr 2010.\r\n\r\nSendung: Vom Kongo bis in den Tschad \r\nGestaltung: Walter Seledec", + "duration_seconds": 2696, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "50 Jahre Auslandseins\u00e4tze", + "id": 5074881, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "hauptabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Im Jahre 1960 entschloss sich die \u00f6sterreichische Bundesregierung erstmals seit Bestehen des Heeres in der Zweiten Republik, rot-wei\u00df-rote Soldaten zu Hilfeleistungen ins Ausland zu entsenden. Dieser erste Einsatz von Soldaten au\u00dferhalb \u00d6sterreichs begann im Dezember 1960. \u00d6sterreich unterst\u00fctzte damit eine Operation der UNO zur Beendigung der kriegs\u00e4hnlichen Zust\u00e4nde im ehemaligen Belgisch-Kongo. Seit diesem ersten Einsatz 1960 bis 2010 beteiligte sich das Bundesheer an insgesamt 75 Missionen. Diese zahlreichen und h\u00f6chst unterschiedlichen Eins\u00e4tze des Bundesheeres im Ausland hatten auch dazu gef\u00fchrt, dass das Ansehen \u00d6sterreichs in Europa und der Welt eine bedeutende Steigerung und Anerkennung erfuhr. Eine Doku aus dem Jahr 2010.\r\n\r\nSendung: Vom Kongo bis in den Tschad \r\nGestaltung: Walter Seledec", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2010-06-16_2015_in_02_50-Jahre-Auslan_____5074881__o__7725732865__s14377840_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2010-06-16_2015_in_02_50-Jahre-Auslan_____5074881__o__7725732865__s14377840_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2010-06-16_2015_in_02_50-Jahre-Auslan_____5074881__o__7725732865__s14377840_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2010-06-16_2015_in_02_50-Jahre-Auslan_____5074881__o__7725732865__s14377840_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "50 Jahre Auslandseins\u00e4tze", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/5074881" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/5074458" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/5074458" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/affa8246223808475bc253a937beb7d6a98e5e2c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/thumb_5074458_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/75\/affa8246223808475bc253a937beb7d6a98e5e2c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 3, + "age_classification": "", + "audio_description_service_available": false, + "date": "2003-07-06T19:00:00+02:00", + "delete_date": null, + "vod_ressort": null, + "description": "Die Sendung aus dem Jahr 2003 beleuchtete die Arbeit von Soldaten des \u00f6sterreichischen Bundesheeres beim Assistenzeinsatz an der burgenl\u00e4ndischen Grenze, der EU-Au\u00dfengrenze zur Slowakei und Ungarn. Die Soldaten wurden bei ihren n\u00e4chtlichen Eins\u00e4tzen begleitet und Einsatzmethoden wurden erl\u00e4utert. Dar\u00fcber hinaus besch\u00e4ftigte sich die Sendung mit den diversen psychischen Belastungen der Soldaten, die sich aus dem Assistenzeinsatz ergaben.\r\n\r\nSendung: \u00d6sterreich-Bild \r\nGestaltung: Walter Reiss\r\nInterview mit: Johann Luif (Milit\u00e4rkommandant Burgenland), Maria Stutzenberger (Hausfrau), Emanuel Weiss (Assistenzsoldat Bundesheer), Wolfgang Kautzki (Hauptmann Bundesheer), Wolfgang Sandner (Wachtmeister Bundesheer), Werner Omischl (Major Bundesgendarmerie), Philip Haller (Grenzsoldat Bundesheer), Marion Haller (Ehefrau), G\u00fcnther Voitic (Oberleutnant Bundesheer ), Erich Hitz (Milit\u00e4rdekan), Erhard Aminger (Sicherheitsdirektor Burgenland), Peter Pilz (Major Bundesheer), Fabian Mmagu (Pfarrer Gro\u00dfpetersdorf).", + "duration_seconds": 1412, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Einsatzort Grenze", + "id": 5068699, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Die Sendung aus dem Jahr 2003 beleuchtete die Arbeit von Soldaten des \u00f6sterreichischen Bundesheeres beim Assistenzeinsatz an der burgenl\u00e4ndischen Grenze, der EU-Au\u00dfengrenze zur Slowakei und Ungarn. Die Soldaten wurden bei ihren n\u00e4chtlichen Eins\u00e4tzen begleitet und Einsatzmethoden wurden erl\u00e4utert. Dar\u00fcber hinaus besch\u00e4ftigte sich die Sendung mit den diversen psychischen Belastungen der Soldaten, die sich aus dem Assistenzeinsatz ergaben.\r\n\r\nSendung: \u00d6sterreich-Bild \r\nGestaltung: Walter Reiss\r\nInterview mit: Johann Luif (Milit\u00e4rkommandant Burgenland), Maria Stutzenberger (Hausfrau), Emanuel Weiss (Assistenzsoldat Bundesheer), Wolfgang Kautzki (Hauptmann Bundesheer), Wolfgang Sandner (Wachtmeister Bundesheer), Werner Omischl (Major Bundesgendarmerie), Philip Haller (Grenzsoldat Bundesheer), Marion Haller (Ehefrau), G\u00fcnther Voitic (Oberleutnant Bundesheer ), Erich Hitz (Milit\u00e4rdekan), Erhard Aminger (Sicherheitsdirektor Burgenland), Peter Pilz (Major Bundesheer), Fabian Mmagu (Pfarrer Gro\u00dfpetersdorf).", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2003-07-06_1900_in_00_Einsatzort-Gren_____5068699__o__6929605855__s14377895_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2003-07-06_1900_in_00_Einsatzort-Gren_____5068699__o__6929605855__s14377895_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2003-07-06_1900_in_00_Einsatzort-Gren_____5068699__o__6929605855__s14377895_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2003-07-06_1900_in_00_Einsatzort-Gren_____5068699__o__6929605855__s14377895_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "Einsatzort Grenze", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/5068699" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/5075463" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/5075463" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/285174b87b2524afc3cb82cd28d47f947406381c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/thumb_5075463_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0051\/76\/285174b87b2524afc3cb82cd28d47f947406381c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 4, + "age_classification": "", + "audio_description_service_available": false, + "date": "2014-01-06T19:30:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Nachdem im Sommer 380 Soldaten eilig vom Golan abgezogen worden sind, erf\u00fcllte \u00d6sterreich 2014 sein Kontingent an Auslandssoldaten nicht mehr, das im rot-schwarzen Regierungsprogramm vorgesehen war. Der damalige Verteidigungsminister Gerald Klug (SP\u00d6) wollte eine m\u00f6gliche Aufstockung pr\u00fcfen.\r\n\r\nSendung: ZiB 1\r\nGestaltung: Matthias Westhoff\r\nInterview mit: Gerald Klug (damals Verteidigungsminister, SP\u00d6)", + "duration_seconds": 68, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Mehr Soldaten im Ausland", + "id": 13984128, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Nachdem im Sommer 380 Soldaten eilig vom Golan abgezogen worden sind, erf\u00fcllte \u00d6sterreich 2014 sein Kontingent an Auslandssoldaten nicht mehr, das im rot-schwarzen Regierungsprogramm vorgesehen war. Der damalige Verteidigungsminister Gerald Klug (SP\u00d6) wollte eine m\u00f6gliche Aufstockung pr\u00fcfen.\r\n\r\nSendung: ZiB 1\r\nGestaltung: Matthias Westhoff\r\nInterview mit: Gerald Klug (damals Verteidigungsminister, SP\u00d6)", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2014-01-06_1930_in_02_Mehr-Soldaten-i_____13984128__o__2017418235__s14339664_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2014-01-06_1930_in_02_Mehr-Soldaten-i_____13984128__o__2017418235__s14339664_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2014-01-06_1930_in_02_Mehr-Soldaten-i_____13984128__o__2017418235__s14339664_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2014-01-06_1930_in_02_Mehr-Soldaten-i_____13984128__o__2017418235__s14339664_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "Mehr Soldaten im Ausland", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/13984128" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4099152" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4099152" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/34777240054e55fc3dede93ad2a14912ddb086d0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099152_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/34777240054e55fc3dede93ad2a14912ddb086d0.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 5, + "age_classification": "", + "audio_description_service_available": false, + "date": "2016-07-20T19:30:00+02:00", + "delete_date": null, + "vod_ressort": null, + "description": "Im Juli 2016 wurde der erste R\u00fcckf\u00fchrungsflug mit der \"Hercules C 130\" des Bundesheeres geflogen. Elf m\u00e4nnliche Personen wurden nach Bulgarien gebracht. Die Abschiebung mit dem Milit\u00e4rflugzeug galt als umstritten.\r\n\r\nGestaltung: Kathrin Pollak\r\nInterview mit: Michael Bauer (damals Sprecher des Verteidigungsministeriums)", + "duration_seconds": 59, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Erste Dublin-Abschiebung", + "id": 13984230, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Im Juli 2016 wurde der erste R\u00fcckf\u00fchrungsflug mit der \"Hercules C 130\" des Bundesheeres geflogen. Elf m\u00e4nnliche Personen wurden nach Bulgarien gebracht. Die Abschiebung mit dem Milit\u00e4rflugzeug galt als umstritten.\r\n\r\nGestaltung: Kathrin Pollak\r\nInterview mit: Michael Bauer (damals Sprecher des Verteidigungsministeriums)", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2016-07-20_1930_in_02_Erste-Dublin-Ab_____13984230__o__8656508415__s14339702_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2016-07-20_1930_in_02_Erste-Dublin-Ab_____13984230__o__8656508415__s14339702_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2016-07-20_1930_in_02_Erste-Dublin-Ab_____13984230__o__8656508415__s14339702_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2016-07-20_1930_in_02_Erste-Dublin-Ab_____13984230__o__8656508415__s14339702_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "Erste Dublin-Abschiebung", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/13984230" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4100163" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4100163" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/7aee2a7b756594b94ca240fa5535de793ca1c4ac.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/thumb_4100163_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0042\/01\/7aee2a7b756594b94ca240fa5535de793ca1c4ac.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 6, + "age_classification": "", + "audio_description_service_available": false, + "date": "2014-11-14T19:00:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Im Jahr 2014 wurde viel \u00fcber die Unterbringung von Fl\u00fcchtlingen und M\u00f6glichkeiten, das Erstaufnahmezentrum Traiskirchen entlasten zu k\u00f6nnen, diskutiert. In Klosterneuburg wurde die Magdeburgkaserne vor\u00fcbergehend zum Fl\u00fcchtlingsquartier. Mehr als 100 Menschen kamen dort unter.\r\n\r\nSendung: Nieder\u00f6sterreich heute\r\nGestaltung: Thomas Birgfellner, Gernot Rohrhofer\r\nInterview mit: Stefan Schmuckenschlager (damals B\u00fcrgermeister von Klosterneuburg, \u00d6VP), Walter Kastanek (aus Klosterneuburg), Margriet Vankooij (aus Klosterneuburg)", + "duration_seconds": 101, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Magdeburgkaserne als Fl\u00fcchtlingsquartier", + "id": 13984127, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Im Jahr 2014 wurde viel \u00fcber die Unterbringung von Fl\u00fcchtlingen und M\u00f6glichkeiten, das Erstaufnahmezentrum Traiskirchen entlasten zu k\u00f6nnen, diskutiert. In Klosterneuburg wurde die Magdeburgkaserne vor\u00fcbergehend zum Fl\u00fcchtlingsquartier. Mehr als 100 Menschen kamen dort unter.\r\n\r\nSendung: Nieder\u00f6sterreich heute\r\nGestaltung: Thomas Birgfellner, Gernot Rohrhofer\r\nInterview mit: Stefan Schmuckenschlager (damals B\u00fcrgermeister von Klosterneuburg, \u00d6VP), Walter Kastanek (aus Klosterneuburg), Margriet Vankooij (aus Klosterneuburg)", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2014-11-14_1900_in_02_Magdeburgkasern_____13984127__o__9204542725__s14339663_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2014-11-14_1900_in_02_Magdeburgkasern_____13984127__o__9204542725__s14339663_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2014-11-14_1900_in_02_Magdeburgkasern_____13984127__o__9204542725__s14339663_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2014-11-14_1900_in_02_Magdeburgkasern_____13984127__o__9204542725__s14339663_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "Magdeburgkaserne als Fl\u00fcchtlingsquartier", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/13984127" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4099150" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4099150" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/2e24679b50054b8c9a1a41fbe47cdbe479b37c91.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/thumb_4099150_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0041\/100\/2e24679b50054b8c9a1a41fbe47cdbe479b37c91.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 7, + "age_classification": "", + "audio_description_service_available": false, + "date": "2015-12-21T19:30:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "2015 war das Bundesheer bereit, seinen Assistenzeinsatz in der Fl\u00fcchtlingskrise fortzuf\u00fchren. \"Ohne das Bundesheer w\u00e4ren die Herausforderungen der letzten Wochen und Monate nicht zu stemmen gewesen\", so die Bilanz des damaligen Verteidigungsministers Gerald Klug (SP\u00d6) nach den ersten 100 Tagen Einsatz. Der Minister forderte zudem mehr Mitsprache bei der inneren Sicherheit.\r\n\r\nSendung: ZiB 1\r\nGestaltung: Andreas Mayer-Bohusch", + "duration_seconds": 68, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "Bilanz nach 100 Tagen Assistenzeinsatz", + "id": 13984132, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "vorabend", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "2015 war das Bundesheer bereit, seinen Assistenzeinsatz in der Fl\u00fcchtlingskrise fortzuf\u00fchren. \"Ohne das Bundesheer w\u00e4ren die Herausforderungen der letzten Wochen und Monate nicht zu stemmen gewesen\", so die Bilanz des damaligen Verteidigungsministers Gerald Klug (SP\u00d6) nach den ersten 100 Tagen Einsatz. Der Minister forderte zudem mehr Mitsprache bei der inneren Sicherheit.\r\n\r\nSendung: ZiB 1\r\nGestaltung: Andreas Mayer-Bohusch", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2015-12-21_1930_in_02_Forderung-nach-_____13984132__o__1299626289__s14352633_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2015-12-21_1930_in_02_Forderung-nach-_____13984132__o__1299626289__s14352633_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2015-12-21_1930_in_02_Forderung-nach-_____13984132__o__1299626289__s14352633_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2015-12-21_1930_in_02_Forderung-nach-_____13984132__o__1299626289__s14352633_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "Bilanz nach 100 Tagen Assistenzeinsatz", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/13984132" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4382022" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4382022" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/3761ac042044ea0b193f0f2aba6968c39be6c67f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/thumb_4382022_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/83\/3761ac042044ea0b193f0f2aba6968c39be6c67f.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "order": 8, + "age_classification": "", + "audio_description_service_available": false, + "date": "2015-12-22T23:40:00+01:00", + "delete_date": null, + "vod_ressort": null, + "description": "Die damalige Innenministerin Johanna Mikl-Leitner (\u00d6VP) wollte 2015 vom \"Durchgriffsrecht\" Gebrauch machen und acht Kasernen zu Fl\u00fcchtlingsunterk\u00fcnften umfunktionieren. Dieser Plan sorgte bei den betroffenen Gemeinden und den Landeshauptleuten f\u00fcr Unmut.\r\n\r\nSendung: ZiB 24\r\nGestaltung: Claudia Zohner\r\nInterview mit: Peter Kaiser (damals Landeshauptmann von K\u00e4rnten, SP\u00d6), Peter Hacker (damals Fl\u00fcchtlingskoordinator in Wien), Johanna Mikl-Leitner (damals Innenministerin, \u00d6VP)", + "duration_seconds": 122, + "field_descriptor": "", + "genre_id": null, + "genre_title": "", + "right": "worldwide", + "growing": true, + "has_active_youth_protection": false, + "focus": false, + "show_countdown": false, + "has_subtitle": false, + "has_youth_protection": false, + "headline": "\"Durchgriffsrecht\": Kasernen als Asylquartiere", + "id": 13984130, + "is_archive": true, + "is_oegs": false, + "two_channel_audio": false, + "uhd": false, + "main_channel_id": 1181, + "sub_headline": null, + "orf_label": null, + "time_section": "nacht", + "production_country": null, + "production_year": null, + "related_audiodescription_episode_image_url": null, + "related_audiodescription_episode_title": null, + "related_oegs_episode_image_url": null, + "related_oegs_episode_title": null, + "segments_complete": true, + "episodes_reference": "", + "teaser_text": "Die damalige Innenministerin Johanna Mikl-Leitner (\u00d6VP) wollte 2015 vom \"Durchgriffsrecht\" Gebrauch machen und acht Kasernen zu Fl\u00fcchtlingsunterk\u00fcnften umfunktionieren. Dieser Plan sorgte bei den betroffenen Gemeinden und den Landeshauptleuten f\u00fcr Unmut.\r\n\r\nSendung: ZiB 24\r\nGestaltung: Claudia Zohner\r\nInterview mit: Peter Kaiser (damals Landeshauptmann von K\u00e4rnten, SP\u00d6), Peter Hacker (damals Fl\u00fcchtlingskoordinator in Wien), Johanna Mikl-Leitner (damals Innenministerin, \u00d6VP)", + "thumbnail_sources": { + "hls": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2015-12-22_2340_in_02_-Durchgriffsrec_____13984130__o__1092505185__s14352632_clip_Q6A.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2015-12-22_2340_in_02_-Durchgriffsrec_____13984130__o__1092505185__s14352632_clip_Q6A.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2015-12-22_2340_in_02_-Durchgriffsrec_____13984130__o__1092505185__s14352632_clip_Q6A.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2015-12-22_2340_in_02_-Durchgriffsrec_____13984130__o__1092505185__s14352632_clip_Q6A.mp4\/manifest.mpd" + } + ] + }, + "title": "\"Durchgriffsrecht\": Kasernen als Asylquartiere", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/13984130" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4381861" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/4381861" + }, + "image2x3_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + }, + "image2x3": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16596204" + } + }, + "_embedded": { + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/e573644a800c28d56e2a57faef88c8fe3ab2a2fe.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/thumb_4381861_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0044\/82\/e573644a800c28d56e2a57faef88c8fe3ab2a2fe.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image2x3": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ] +} \ No newline at end of file