From 41003af49151c81fd9c54320796c8876434afa81 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sat, 17 Feb 2024 16:13:37 +0100 Subject: [PATCH 01/21] init --- MServer-Config.yaml | 25 +- .../base/utils/FilmlistDebugHelper.java | 111 + .../mserver/base/utils/JsonUtils.java | 15 +- .../mserver/crawler/CrawlerManager.java | 5 +- .../ArdMediaArrayToDownloadUrlsConverter.java | 3 +- .../tasks/NexxCloudSessionInitiationTask.java | 4 +- .../crawler/orfon/OrfOnBreadCrumsUrlDTO.java | 59 + .../mserver/crawler/orfon/OrfOnConstants.java | 20 + .../mserver/crawler/orfon/OrfOnCrawler.java | 146 + .../crawler/orfon/OrfOnVideoInfoDTO.java | 103 + .../orfon/json/OrfOnAZDeserializer.java | 47 + .../orfon/json/OrfOnEpisodeDeserializer.java | 238 + .../orfon/json/OrfOnEpisodesDeserializer.java | 40 + .../json/OrfOnHistoryChainDeserializer.java | 52 + .../OrfOnHistoryChildrenDeserializer.java | 63 + .../orfon/json/OrfOnHistoryDeserializer.java | 64 + .../OrfOnHistoryVideoItemDeserializer.java | 49 + .../orfon/json/OrfOnScheduleDeserializer.java | 38 + .../crawler/orfon/task/OrfOnAZTask.java | 76 + .../crawler/orfon/task/OrfOnEpisodeTask.java | 83 + .../crawler/orfon/task/OrfOnEpisodesTask.java | 77 + .../orfon/task/OrfOnHistoryChildrenTask.java | 89 + .../crawler/orfon/task/OrfOnHistoryTask.java | 41 + .../orfon/task/OrfOnHistoryVideoItemTask.java | 82 + .../crawler/orfon/task/OrfOnPagedTask.java | 66 + .../crawler/orfon/task/OrfOnScheduleTask.java | 62 + .../orfon/task/OrfOnVideoInfo2FilmTask.java | 75 + .../zdf/json/ZdfFilmDetailDeserializer.java | 2 +- .../crawler/zdf/tasks/ZdfFilmDetailTask.java | 4 +- .../mserver/crawler/CompareFilmlistsTest.java | 148 + src/test/resources/orfOn/episode_1.json | 1939 ++ src/test/resources/orfOn/episode_2.json | 1901 ++ src/test/resources/orfOn/episodes_1.json | 18567 ++++++++++++++++ src/test/resources/orfOn/letter_1.json | 1490 ++ 34 files changed, 25765 insertions(+), 19 deletions(-) create mode 100644 src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java create mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java create mode 100644 src/test/resources/orfOn/episode_1.json create mode 100644 src/test/resources/orfOn/episode_2.json create mode 100644 src/test/resources/orfOn/episodes_1.json create mode 100644 src/test/resources/orfOn/letter_1.json 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/FilmlistDebugHelper.java b/src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java new file mode 100644 index 000000000..92bbae310 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java @@ -0,0 +1,111 @@ +package de.mediathekview.mserver.base.utils; + +import java.util.ArrayList; +import java.util.Set; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import de.mediathekview.mlib.daten.Film; +import de.mediathekview.mlib.daten.Filmlist; +import de.mediathekview.mlib.daten.Resolution; +import de.mediathekview.mserver.crawler.kika.KikaApiCrawler; + +public class FilmlistDebugHelper { + private static final Logger LOG = LogManager.getLogger(FilmlistDebugHelper.class); + + + + public static Film getFilmFromSet(Set base, Film searchFilm) { + for (Film e : base) { + if (e.equals(searchFilm)) { + return e; + } + } + return null; + } + + public static void printFilmlistForSender(Filmlist list, String sender, boolean printFullDetails) { + list.getFilms().values().stream().forEach( e -> { + if (e.getSenderName().equalsIgnoreCase(sender)) { + if (printFullDetails) { + LOG.debug("{} {} {}", e.getTitel(), e.getThema(), e); + } else { + LOG.debug("{} {}", e.getTitel(), e.getThema()); + } + } + }); + } + + public static void printFilmlistForThema(Filmlist list, String thema, boolean printFullDetails) { + list.getFilms().values().stream().forEach( e -> { + if (e.getThema().equalsIgnoreCase(thema)) { + if (printFullDetails) { + LOG.debug("{} {} {} {}", e.getSenderName(), e.getTitel(), e.getThema(), e); + } else { + LOG.debug("{} {} {}", e.getSenderName(), e.getTitel(), e.getThema()); + } + } + }); + } + + + + + public static void compareFilmlist(Filmlist aFilmlist, Filmlist bFilmlist) { + ArrayList bFilms = new ArrayList<>(bFilmlist.getFilms().values()); + aFilmlist.getFilms().values().forEach( f -> { + if (bFilms.indexOf(f) == -1) { + LOG.info("Missing Film in source list"); + LOG.info(f.toString()); + } else { + Film expectedFilm = bFilms.get(bFilms.indexOf(f)); + compare(f, expectedFilm); + } + }); + ArrayList aFilms = new ArrayList<>(aFilmlist.getFilms().values()); + bFilms.forEach( f -> { + if (aFilms.indexOf(f) == -1) { + LOG.info("Missing Film in target list"); + LOG.info(f.toString()); + } + }); + } + + private static void compare(Film aFilm, Film bFilm) { + String error = ""; + if (!aFilm.getSenderName().equalsIgnoreCase(bFilm.getSenderName())) { + error = "Incorrect Sender"; + } else if (!aFilm.getTitel().equalsIgnoreCase(bFilm.getTitel())){ + error = "Incorrect Title"; + } else if (!aFilm.getThema().equalsIgnoreCase(bFilm.getThema())){ + error = "Incorrect Topic"; + } else if (!aFilm.getDuration().equals(bFilm.getDuration())){ + error = "Incorrect Duration"; + } else if (!aFilm.getBeschreibung().equalsIgnoreCase(bFilm.getBeschreibung())){ + error = "Incorrect Description"; + } else if (!aFilm.getWebsite().toString().equalsIgnoreCase(bFilm.getWebsite().toString())){ + error = "Incorrect website"; + } else if (!aFilm.getTime().equals(bFilm.getTime())){ + error = "Incorrect Time"; + } else if (!aFilm.getSubtitles().equals(bFilm.getSubtitles())){ + error = "Incorrect subtitle"; + } else if (bFilm.getUrl(Resolution.SMALL) != null && + !aFilm.getUrl(Resolution.SMALL).toString().equalsIgnoreCase(bFilm.getUrl(Resolution.SMALL).toString())) { + error = "URL SMALL"; + } else if (bFilm.getUrl(Resolution.NORMAL) != null && + !aFilm.getUrl(Resolution.NORMAL).toString().equalsIgnoreCase(bFilm.getUrl(Resolution.NORMAL).toString())) { + error = "URL NORMAL"; + } else if (bFilm.getUrl(Resolution.HD) != null && + !aFilm.getUrl(Resolution.HD).toString().equalsIgnoreCase(bFilm.getUrl(Resolution.HD).toString())) { + error = "URL HD"; + } + // + if (error != "") { + LOG.info(error); + LOG.info(aFilm.toString()); + LOG.info(bFilm.toString()); + } + } + +} 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/crawler/CrawlerManager.java b/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java index 6ab02771c..be935a3ac 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java +++ b/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java @@ -25,6 +25,7 @@ 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 +520,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/ard/json/ArdMediaArrayToDownloadUrlsConverter.java b/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java index d7bd39ad1..70710a283 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java +++ b/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java @@ -145,7 +145,8 @@ private static Resolution getQualityForNumber(final int qualityIndicator) { case 1 -> Resolution.SMALL; case 3, 4 -> Resolution.HD; case 5 -> Resolution.UHD; - case 2, default -> Resolution.NORMAL; + case 2 -> Resolution.NORMAL; + default -> Resolution.NORMAL; }; } diff --git a/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java b/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java index 95fb98511..04e60f201 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java @@ -36,7 +36,7 @@ public NexxCloudSessionInitiationTask(final AbstractCrawler aCrawler) { @Override public Long call() { final Gson gson = createGson(); - +/* try(final Client client = createClient()) { final WebTarget target = client.target(FunkUrls.NEXX_CLOUD_SESSION_INIT.getAsString(crawler.getRuntimeConfig())); @@ -55,7 +55,7 @@ public Long call() { response.getStatus()); } } - } + }*/ return null; } 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..a864b123a --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java @@ -0,0 +1,59 @@ +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) { + breadCrums.addAll(getBreadCrums()); + setBreadCrums(breadCrums); + } + + 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..d34e17721 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java @@ -0,0 +1,20 @@ +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 bearer = "Basic b3JmX29uX3Y0MzpqRlJzYk5QRmlQU3h1d25MYllEZkNMVU41WU5aMjhtdA=="; + // + private OrfOnConstants() {} + // +} 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..a7bcc4090 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -0,0 +1,146 @@ +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.basic.CrawlerUrlDTO; +import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +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.crawler.orfon.task.OrfOnVideoInfo2FilmTask; +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.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() { + + try { + // Sendungen Verpasst + + + final ForkJoinTask> dayTask = forkJoinPool.submit(new OrfOnScheduleTask(this, createDayUrlsToCrawl())); + final Set dayTaskFilms = dayTask.get(); + final ForkJoinTask> episodesFromDaysTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(dayTaskFilms))); + final Set epsiodesFromDay = episodesFromDaysTask.get(); + + // + // + + final ForkJoinTask> letterTask = forkJoinPool.submit(new OrfOnAZTask(this, createAZUrlsToCrawl())); + final Set LetterTaskTopics = letterTask.get(); + final ForkJoinTask> videosFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(LetterTaskTopics))); + final Set videosFromTopics = videosFromTopicsTask.get(); + + // + // + + final ForkJoinTask> histroyTask = forkJoinPool.submit(new OrfOnHistoryTask(this, createHistoryUrlToCrawl())); + final Set historyChidrenUrls = histroyTask.get(); + // + final ForkJoinTask> historyChildrenTask = forkJoinPool.submit(new OrfOnHistoryChildrenTask(this, new ConcurrentLinkedQueue<>(historyChidrenUrls))); + final Set historyItemUrls = historyChildrenTask.get(); + // + final ForkJoinTask> historyItemTask = forkJoinPool.submit(new OrfOnHistoryVideoItemTask(this, new ConcurrentLinkedQueue<>(historyItemUrls))); + final Set historyEpisodesUrls = historyItemTask.get(); + // + final ForkJoinTask> historyEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(historyEpisodesUrls))); + final Set historyVideos = historyEpisodeTask.get(); + + /*LOG.debug("#######"); + for (OrfOnVideoInfoDTO e : historyVideos) { + LOG.debug("{} {} {} {}" , e.getId(), e.getTopic(), e.getTitle(), e.getVideoUrls()); + }*/ + + // + //printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), LetterTaskTopics.size()); + //getAndSetMaxCount(LetterTaskTopics.size()); + // + /* + final ForkJoinTask> videos = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(null))); + final Set xx = videos.get(); + for (OrfOnVideoInfoDTO e : xx) { + LOG.debug("{} {} {} {}" , e.getId(), e.getTopic(), e.getTitle(), e.getTitleWithDate()); + } + */ + // + Set allVideos = new HashSet<>(); + allVideos.addAll(epsiodesFromDay); + allVideos.addAll(videosFromTopics); + allVideos.addAll(historyVideos); + // + return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos)); + } catch (final Exception ex) { + LOG.fatal("Exception in ORFON crawler.", ex); + } + + return null; + } + + 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 TopicUrlDTO(day,url)); + } + return dayUrlsToCrawl; + } + + 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 TopicUrlDTO(String.valueOf(letter),url)); + } + // 0 + final String url = OrfOnConstants.AZ + "/0" + "?limit="+OrfOnConstants.PAGE_SIZE; + letterUrlsToCrawl.offer(new TopicUrlDTO("0",url)); + return letterUrlsToCrawl; + } + + 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..fc876d5e4 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java @@ -0,0 +1,103 @@ +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 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 aired; + private Optional duration; + private Optional description; + private Optional website; + private Optional> georestriction; + private Optional subtitleSource; + private Optional> videoUrls; + + public OrfOnVideoInfoDTO( + Optional id, + Optional channel, + Optional title, + Optional titleWithDate, + Optional topic, + Optional aired, + Optional duration, + Optional description, + Optional website, + Optional> georestriction, + Optional subtitleSource, + Optional> videoUrls) { + super(); + this.id = id; + this.channel = channel; + this.title = title; + this.titleWithDate = titleWithDate; + this.topic = topic; + this.aired = aired; + this.duration = duration; + this.description = description; + this.website = website; + this.georestriction = georestriction; + this.subtitleSource = subtitleSource; + this.videoUrls = videoUrls; + } + + 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 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; + } + + @Override + public int hashCode() { + if (getId().isPresent()) { + return Integer.valueOf(getId().get()); + } + return super.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..a74635541 --- /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.basic.TopicUrlDTO; + +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)); + // + if (jsonPage.has(TAG_ITEMS[0]) && jsonPage.get(TAG_ITEMS[0]).isJsonObject() && + jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().has(TAG_ITEMS[1]) && + jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).isJsonArray()) { + for (JsonElement topic : jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).getAsJsonArray()) { + Optional id = JsonUtils.getElementValueAsString(topic, TAG_ITEM_ID); + Optional url = JsonUtils.getElementValueAsString(topic, TAG_ITEM_EPISODES); + if (id.isPresent() && url.isPresent()) { + page.addElement(new TopicUrlDTO(id.get(), 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..e523a0945 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -0,0 +1,238 @@ +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.orfon.OrfOnVideoInfoDTO; + +import java.lang.reflect.Type; +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.HashMap; +import java.util.Map; +import java.util.Optional; + +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_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_SEGMENTS = {"_links", "segments", "href"}; + private static final String[] TAG_SUBTITLE = {"_links", "subtitle", "href"}; + private static final String TAG_VIDEO = "sources"; + private static final String TAG_VIDEO_QUALITY = "quality_key"; + private static final String TAG_VIDEO_URL = "src"; + + + @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), + 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)), + parseSubtitle(JsonUtils.getElementValueAsString(jsonElement, TAG_SUBTITLE)), + parseUrl(jsonElement) + ); + //LOG.debug("{}",jsonElement ); + + if (aFilm.getGeorestriction().isEmpty() || + aFilm.getVideoUrls().isEmpty()){ + LOG.debug("{} (id)", aFilm.getId().get()); + LOG.debug("{} (genre_title)", JsonUtils.getElementValueAsString(jsonElement, "genre_title").get()); + LOG.debug("{} (headline)", JsonUtils.getElementValueAsString(jsonElement, "headline").get()); + LOG.debug("{} (profile_title*)", JsonUtils.getElementValueAsString(jsonElement, "profile_title").get()); + LOG.debug("{} (title*)", JsonUtils.getElementValueAsString(jsonElement, "title").get()); + LOG.debug("{} (sub_headline)", JsonUtils.getElementValueAsString(jsonElement, "sub_headline").get()); + LOG.debug("{} (share_subject)", JsonUtils.getElementValueAsString(jsonElement, "share_subject").get()); + LOG.debug("{} (TAG_RIGHT)", parseGeoLocations(JsonUtils.getElementValueAsString(jsonElement, TAG_RIGHT))); + LOG.debug("{} (url)", parseUrl(jsonElement)); + LOG.debug("{} (segments)", JsonUtils.getElementValueAsString(jsonElement, TAG_SEGMENTS)); + LOG.debug("{}",jsonElement ); + LOG.debug("############"); + } + // "genre_title": "Wetter", + // "headline": "Wetter Tirol vom 05.01.2024", + // "profile_title": "Wetter Tirol", + // "title": "Wetter Tirol vom 05.01.2024", + // "share_subject": "Wetter Tirol vom 05.01.2024 vom 05.01.2024 um 19:20 Uhr", + // "sub_headline": "Wetter Tirol", + + // + return aFilm; + } + + private Optional parseSubtitle(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> parseUrl(JsonElement jsonElement) { + + for (Map.Entry entry : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).entrySet()) { + + if (!"hlshdssmoothdashprogressive_download".contains(entry.getKey())) { + LOG.debug(" {} ", jsonElement); + } + } + + + Optional> urls = Optional.empty(); + Optional codec = Optional.empty(); // + if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && + jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("progressive_download")) { + codec = Optional.of("progressive_download"); + } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && + jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("hls")) { + codec = Optional.of("hls"); + } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && + jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("hds")) { + codec = Optional.of("hds"); + } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && + jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("smooth")) { + codec = Optional.of("smooth"); + } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && + jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("dash")) { + codec = Optional.of("dash"); + } + if (codec.isPresent()) { + urls = Optional.of(new HashMap()); + for (JsonElement codecUrls : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).getAsJsonArray(codec.get())) { + try { + String qualityString = codecUrls.getAsJsonObject().get(TAG_VIDEO_QUALITY).getAsString(); + String url = codecUrls.getAsJsonObject().get(TAG_VIDEO_URL).getAsString(); + urls.get().put( + OrfOnEpisodeDeserializer.getQuality(qualityString).get(), + new FilmUrl(url, 0L) + ); + } catch (Exception e) { + LOG.error( + "parseUrl failed for quality {} and url {} exception {}", + codecUrls.getAsJsonObject().get("quality_key").getAsString(), + codecUrls.getAsJsonObject().get("src").getAsString(), + e + ); + } + } + if (urls.get().size() == 0) { + return Optional.empty(); + } + } + return 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.of(Resolution.NORMAL); + 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..999827e4c --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -0,0 +1,40 @@ +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.OrfOnVideoInfoDTO; + +import java.lang.reflect.Type; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnEpisodesDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnEpisodesDeserializer.class); + private static final String[] TAG_NEXT_PAGE = {"_links", "next", "href"}; + private static final String[] TAG_ITEMS = {"_embedded", "items"}; + + @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)); + // + OrfOnEpisodeDeserializer itemDeserializer = new OrfOnEpisodeDeserializer(); + if (jsonPage.has(TAG_ITEMS[0]) && jsonPage.get(TAG_ITEMS[0]).isJsonObject() && + jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().has(TAG_ITEMS[1]) && + jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).isJsonArray()) { + for (JsonElement item : jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).getAsJsonArray()) { + page.addElement(itemDeserializer.deserialize(item, null, null)); + } + } + return page; + } + +} diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java new file mode 100644 index 000000000..19bf5fe79 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java @@ -0,0 +1,52 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; +import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; + +import java.lang.reflect.Type; +import java.util.Optional; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnHistoryChainDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChainDeserializer.class); + private final String[] TAG_NEXT_PAGE; + private final String[] TAG_ITEM_ARRAY; + private final String[] TAG_TARGET_URL; + + + + public OrfOnHistoryChainDeserializer(String[] TAG_NEXT_PAGE,String[] TAG_ITEM_ARRAY, String[] TAG_TARGET_URL ) { + this.TAG_NEXT_PAGE = TAG_NEXT_PAGE; + this.TAG_ITEM_ARRAY = TAG_ITEM_ARRAY; + this.TAG_TARGET_URL = TAG_TARGET_URL; + } + + @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()) { + Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + if (url.isPresent()) { + page.addElement(new CrawlerUrlDTO(JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get())); + } + } + } + // + 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..123ef755e --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -0,0 +1,63 @@ +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.basic.TopicUrlDTO; + +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 String[] TAG_NEXT_PAGE = { "next" }; + private String[] TAG_ITEM_ARRAY = { "_items" }; + private String[] TAG_ITEM_TITLE = {"title"}; + private String[] TAG_TARGET_URL = {"_links", "video_items", "href"}; + private 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 itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); + if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { + for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { + Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + Optional url2 = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2); + if (url.isPresent()) { + page.addElement(new TopicUrlDTO( + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), + url.get() + )); + } else if (url2.isPresent()) { + page.addElement(new TopicUrlDTO( + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), + url2.get() + )); + } else { + LOG.info("No video_items or children tag found {}",JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE) ); + } + LOG.debug("{} - {} - {}", + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), + JsonUtils.getElementValueAsString(item, TAG_TARGET_URL), + JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2)); + + } + } + // + 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..4deefe125 --- /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 String[] TAG_NEXT_PAGE = {}; + private String[] TAG_ITEM_ARRAY_TOP = {"history_highlights"}; + private String[] TAG_ITEM_TITLE = {"title"}; + private String[] TAG_ITEM_ARRAY_BUTTOM = {"history_items"}; + private 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)); + // + Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_TOP); + if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { + for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { + Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + if (url.isPresent()) { + page.addElement(new OrfOnBreadCrumsUrlDTO( + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), + JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get() + )); + } + LOG.debug("{} {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL)); + } + } + Optional itemArrayButtom = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_BUTTOM); + if (itemArrayButtom.isPresent() &&itemArrayButtom.get().isJsonArray()) { + for (JsonElement item : itemArrayButtom.get().getAsJsonArray()) { + Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + if (url.isPresent()) { + page.addElement(new OrfOnBreadCrumsUrlDTO( + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), + JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get() + )); + } + LOG.debug("{} {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL)); + } + } + // + return page; + } + + + +} 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..77275f3a7 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -0,0 +1,49 @@ +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.basic.TopicUrlDTO; + +import java.lang.reflect.Type; +import java.util.Optional; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnHistoryVideoItemDeserializer.class); + private String[] TAG_NEXT_PAGE = { "next" }; + private String[] TAG_ITEM_ARRAY = { "_items" }; + private String[] TAG_ITEM_TITLE = {"title"}; + private String[] TAG_TARGET_URL = {"_links", "self", "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()) { + Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + if (url.isPresent()) { + page.addElement(new TopicUrlDTO( + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), + JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).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..e0831bf58 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java @@ -0,0 +1,38 @@ +package de.mediathekview.mserver.crawler.orfon.json; + +import com.google.gson.*; + +import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; + +import java.lang.reflect.Type; +import java.util.HashSet; +import java.util.Set; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + + +public class OrfOnScheduleDeserializer implements JsonDeserializer> { + private static final Logger LOG = LogManager.getLogger(OrfOnScheduleDeserializer.class); + private static final String TAG_FILM_NAME = "title"; + private static final String TAG_FILM_ID = "id"; + // + + @Override + public Set deserialize( + final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) + throws JsonParseException { + Set collectIds = new HashSet(); + final JsonArray elements = jsonElement.getAsJsonArray(); + for (JsonElement element : elements) { + String name = element.getAsJsonObject().get(TAG_FILM_NAME).getAsString(); + String id = element.getAsJsonObject().get(TAG_FILM_ID).getAsString(); + String url = OrfOnConstants.EPISODE + "/" + id; + LOG.debug("found {} {} {}", id, name, url); + TopicUrlDTO entry = new TopicUrlDTO(id,url); + collectIds.add(entry); + } + 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..6283a41ce --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java @@ -0,0 +1,76 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.util.Optional; +import java.util.Queue; +import java.util.concurrent.ConcurrentLinkedQueue; + +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.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.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnAZDeserializer; +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 OrfOnAZTask extends AbstractJsonRestTask, TopicUrlDTO> { + private static final long serialVersionUID = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnAZTask.class); + + public OrfOnAZTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + @Override + protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + return new OrfOnAZDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { + final Optional> subpageCrawler; + if (aResponseObj.getNextPage().isPresent()) { + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(new TopicUrlDTO("", aResponseObj.getNextPage().get())); + subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); + subpageCrawler.get().fork(); + LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); + } else { + subpageCrawler = Optional.empty(); + } + + taskResults.addAll(aResponseObj.getElements()); + subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnAZTask(crawler, aElementsToProcess); + } + + + @Override + protected void handleHttpError(TopicUrlDTO 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/OrfOnEpisodeTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java new file mode 100644 index 000000000..1197630f2 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -0,0 +1,83 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.util.Queue; +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.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractJsonRestTask; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +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 = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnEpisodeTask.class); + + public OrfOnEpisodeTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + @Override + protected JsonDeserializer getParser(TopicUrlDTO aDTO) { + return new OrfOnEpisodeDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken() {}.getType(); + } + + @Override + protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, TopicUrlDTO aDTO) { + if (!aResponseObj.getTitle().isPresent()) { + LOG.debug("Missing title for {}", aDTO); + return; + } + if (aResponseObj.getTopic().isPresent()) { + LOG.debug("Missing topic for {}", aDTO); + return; + } + if (aResponseObj.getVideoUrls().isPresent()) { + LOG.debug("Missing videoUrls for {}", aDTO); + return; + } + LOG.debug(" bread crums {}", aDTO.getTopic() + " # " + aResponseObj.getTitle().get()); + taskResults.add(aResponseObj); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { + return new OrfOnEpisodeTask(crawler, aElementsToProcess); + } + + @Override + protected void handleHttpError(TopicUrlDTO 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/OrfOnEpisodesTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java new file mode 100644 index 000000000..df870ca91 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -0,0 +1,77 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.util.Optional; +import java.util.Queue; +import java.util.concurrent.ConcurrentLinkedQueue; + +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.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.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnEpisodesDeserializer; +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 OrfOnEpisodesTask extends AbstractJsonRestTask, TopicUrlDTO> { + private static final long serialVersionUID = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnEpisodesTask.class); + + public OrfOnEpisodesTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + @Override + protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + return new OrfOnEpisodesDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { + final Optional> subpageCrawler; + if (aResponseObj.getNextPage().isPresent()) { + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(new TopicUrlDTO("", aResponseObj.getNextPage().get())); + subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); + subpageCrawler.get().fork(); + LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); + } else { + subpageCrawler = Optional.empty(); + } + + taskResults.addAll(aResponseObj.getElements()); + subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnEpisodesTask(crawler, aElementsToProcess); + } + + + @Override + protected void handleHttpError(TopicUrlDTO 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/OrfOnHistoryChildrenTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java new file mode 100644 index 000000000..d2c316bfb --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java @@ -0,0 +1,89 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.util.Optional; +import java.util.Queue; +import java.util.concurrent.ConcurrentLinkedQueue; + +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.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.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryChildrenDeserializer; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryDeserializer; +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 OrfOnHistoryChildrenTask extends AbstractJsonRestTask, TopicUrlDTO> { + private static final long serialVersionUID = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChildrenTask.class); + + public OrfOnHistoryChildrenTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + @Override + protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + return new OrfOnHistoryChildrenDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { + for (TopicUrlDTO childOrVideo : aResponseObj.getElements()) { + if (childOrVideo.getUrl().endsWith("children")) { + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(childOrVideo); + AbstractRecursiveConverterTask resolveChildren = createNewOwnInstance(nextPageLinks); + resolveChildren.fork(); + taskResults.addAll(resolveChildren.join()); + } else { + taskResults.add(new TopicUrlDTO(aDTO.getTopic() + " # " + childOrVideo.getTopic(), childOrVideo.getUrl() + "?limit=99")); + //taskResults.add(childOrVideo); + } + } + //taskResults.addAll(aResponseObj.getElements()); + // + final Optional> subpageCrawler; + if (aResponseObj.getNextPage().isPresent()) { + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(new TopicUrlDTO(aDTO.getTopic(), aResponseObj.getNextPage().get())); + subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); + subpageCrawler.get().fork(); + LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); + } else { + subpageCrawler = Optional.empty(); + } + subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnHistoryChildrenTask(crawler, aElementsToProcess); + } + + + @Override + protected void handleHttpError(TopicUrlDTO 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/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..7289f7338 --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java @@ -0,0 +1,82 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.util.Optional; +import java.util.Queue; +import java.util.concurrent.ConcurrentLinkedQueue; + +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.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.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryChildrenDeserializer; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryDeserializer; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryVideoItemDeserializer; +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 OrfOnHistoryVideoItemTask extends AbstractJsonRestTask, TopicUrlDTO> { + private static final long serialVersionUID = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnHistoryVideoItemTask.class); + + public OrfOnHistoryVideoItemTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + @Override + protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + return new OrfOnHistoryVideoItemDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { + for (TopicUrlDTO t : aResponseObj.getElements()) { + taskResults.add(new TopicUrlDTO(aDTO.getTopic() + " # " + t.getTopic(), t.getUrl())); + } + + //taskResults.addAll(aResponseObj.getElements()); + + final Optional> subpageCrawler; + if (aResponseObj.getNextPage().isPresent()) { + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(new TopicUrlDTO(aDTO.getTopic(), aResponseObj.getNextPage().get())); + subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); + subpageCrawler.get().fork(); + LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); + } else { + subpageCrawler = Optional.empty(); + } + subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + return new OrfOnHistoryVideoItemTask(crawler, aElementsToProcess); + } + + + @Override + protected void handleHttpError(TopicUrlDTO 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/OrfOnPagedTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java new file mode 100644 index 000000000..2f60c8f8f --- /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; + private final Logger LOG = LogManager.getLogger(this.getClass()); + private Optional> nextPageTask = Optional.empty(); + + public OrfOnPagedTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + 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..a77126d0f --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java @@ -0,0 +1,62 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.lang.reflect.Type; +import java.net.URI; +import java.util.Queue; +import java.util.Set; + +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.mserver.crawler.basic.AbstractCrawler; +import de.mediathekview.mserver.crawler.basic.AbstractJsonRestTask; +import de.mediathekview.mserver.crawler.basic.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.json.OrfOnScheduleDeserializer; +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 OrfOnScheduleTask extends AbstractJsonRestTask, TopicUrlDTO> { + private static final long serialVersionUID = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnScheduleTask.class); + + public OrfOnScheduleTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + } + + @Override + protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + return new OrfOnScheduleDeserializer(); + } + + @Override + protected Type getType() { + return new TypeToken>() {}.getType(); + } + + @Override + protected void postProcessing(Set aResponseObj, TopicUrlDTO aDTO) { + taskResults.addAll(aResponseObj); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { + return new OrfOnScheduleTask(crawler, aElementsToProcess); + } + + @Override + protected void handleHttpError(TopicUrlDTO 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/OrfOnVideoInfo2FilmTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java new file mode 100644 index 000000000..1c14c785b --- /dev/null +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java @@ -0,0 +1,75 @@ +package de.mediathekview.mserver.crawler.orfon.task; + +import java.util.Queue; +import java.util.UUID; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +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.AbstractRecursiveConverterTask; +import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; + +public class OrfOnVideoInfo2FilmTask extends AbstractRecursiveConverterTask { + private static final long serialVersionUID = 1L; + private static final Logger LOG = LogManager.getLogger(OrfOnVideoInfo2FilmTask.class); + + public OrfOnVideoInfo2FilmTask(AbstractCrawler aCrawler, Queue aUrlToCrawlDTOs) { + super(aCrawler, aUrlToCrawlDTOs); + } + + @Override + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { + return new OrfOnVideoInfo2FilmTask(this.crawler, aElementsToProcess); + } + @Override + protected Integer getMaxElementsToProcess() { + return crawler.getCrawlerConfig().getMaximumUrlsPerTask(); + } + @Override + protected void processElement(OrfOnVideoInfoDTO aElement) { + Film aFilm = new Film( + UUID.randomUUID(), + Sender.ORF, + buildTitle(aElement.getTitle().get(), aElement.getTopic().get()), + buildTopic(aElement.getTitle().get(), aElement.getTopic().get()), + aElement.getAired().get(), + aElement.getDuration().get() + ); + aElement.getGeorestriction().ifPresent(aFilm::addAllGeoLocations); + aElement.getDescription().ifPresent(aFilm::setBeschreibung); + aElement.getVideoUrls().ifPresent(aFilm::setUrls); + aElement.getWebsite().ifPresent(aFilm::setWebsite); + + taskResults.add(aFilm); + + } + + private String buildTopic(String title, String topic) { + if (topic.startsWith("AD | ")) { + return topic.replace("AD | ", ""); + } + return topic; + } + + private String buildTitle(String title, String topic) { + if (title.startsWith("AD | ")) { + return title.replace("AD | ", "").concat(" (Audiodeskription)"); + } + return title; + } + + + + + + + + + + + +} 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/CompareFilmlistsTest.java b/src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java new file mode 100644 index 000000000..0fd55c3bb --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java @@ -0,0 +1,148 @@ +package de.mediathekview.mserver.crawler; + +import de.mediathekview.mlib.daten.Film; +import de.mediathekview.mlib.daten.Filmlist; +import de.mediathekview.mlib.daten.Resolution; +import de.mediathekview.mlib.filmlisten.reader.FilmlistOldFormatReader; +import de.mediathekview.mlib.filmlisten.writer.FilmlistOldFormatWriter; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.junit.jupiter.api.Test; + +import com.google.common.base.Objects; + +import static org.junit.jupiter.api.Assertions.assertTrue; + + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.Optional; + + + +public class CompareFilmlistsTest { + private static final Logger LOG = LogManager.getLogger(CompareFilmlistsTest.class); + private int fullmatch = 0; + private int missingLeft = 0; + private int missingRight = 0; + private int diff = 0; + + + @Test + void readFilmlistOldFormatIncludingBrokenRecords() + throws IOException { + // + + if (false) { + return; + } + + String aList = "C:/Users/steph/git/MServer/target/filmlists/filmliste_old.json"; + String bList = "C:/Users/steph/git2/MServer/dist/filmlisten/filme.json"; + ClassLoader classLoader = getClass().getClassLoader(); + final Path aListPath = new File(aList).toPath(); + Optional aFilmlist = new FilmlistOldFormatReader().read(new FileInputStream(aListPath.toString())); + assertTrue(aFilmlist.isPresent()); + final Path bListPath = new File(bList).toPath(); + Optional bFilmlist = new FilmlistOldFormatReader().read(new FileInputStream(bListPath.toString())); + assertTrue(bFilmlist.isPresent()); + // + ArrayList bFilms = new ArrayList<>(bFilmlist.get().getFilms().values()); + aFilmlist.get().getFilms().values().forEach( f -> { + Film target = index(bFilms, f); + if (target != null) { + compare(f, target); + } + }); + aFilmlist.get().getFilms().values().forEach( f -> { + if (index(bFilms, f) == null) { + LOG.info("Missing Film in source list"); + LOG.info(f.toString()); + missingLeft++; + } + }); + ArrayList aFilms = new ArrayList<>(aFilmlist.get().getFilms().values()); + bFilms.forEach( f -> { + Film target = index(aFilms, f); + if (target == null) { + LOG.info("Missing Film in target list"); + LOG.info(f.toString()); + missingRight++; + } + }); + new FilmlistOldFormatWriter().write(aFilmlist.get(), Path.of("c:/tmp/aFilmlist.json")); + new FilmlistOldFormatWriter().write(bFilmlist.get(), Path.of("c:/tmp/bFilmlist.json")); + // + LOG.info("Matching: {} MissingLeft: {} MissingRight: {} Diff: {}", fullmatch, missingLeft, missingRight, diff); + } + + private void compare(Film aFilm, Film bFilm) { + String error = ""; + if (!aFilm.getSenderName().equalsIgnoreCase(bFilm.getSenderName())) { + error += "Incorrect Sender"; + } + if (!aFilm.getTitel().equalsIgnoreCase(bFilm.getTitel())){ + error += "Incorrect Title"; + } + if (!aFilm.getThema().equalsIgnoreCase(bFilm.getThema())){ + error += "Incorrect Topic"; + } + if (!aFilm.getDuration().equals(bFilm.getDuration())){ + error += "Incorrect Duration"; + } + if (!aFilm.getBeschreibung().equalsIgnoreCase(bFilm.getBeschreibung())) { + // new parser cuts out last char + if (aFilm.getBeschreibung().length() > 70 && bFilm.getBeschreibung().length() > 70 && + !aFilm.getBeschreibung().substring(1,aFilm.getBeschreibung().length()-19).equalsIgnoreCase(bFilm.getBeschreibung().substring(1,bFilm.getBeschreibung().length()-18))){ + error += "Incorrect Description"; + } else if (aFilm.getBeschreibung().length() > 20 && bFilm.getBeschreibung().length() > 20 && + !aFilm.getBeschreibung().substring(1,20).equalsIgnoreCase(bFilm.getBeschreibung().substring(1,20))){ + error += "Incorrect Description"; + } + } + if (!aFilm.getWebsite().toString().equalsIgnoreCase(bFilm.getWebsite().toString())){ + error += "Incorrect website"; + } + if (!aFilm.getTime().equals(bFilm.getTime())){ + error += "Incorrect Time"; + } + if (!aFilm.getSubtitles().equals(bFilm.getSubtitles())){ + error += "Incorrect subtitle"; + } + if (!Objects.equal(bFilm.getUrl(Resolution.SMALL), bFilm.getUrl(Resolution.SMALL))) { + error += "URL SMALL"; + } + if (!Objects.equal(bFilm.getUrl(Resolution.NORMAL), bFilm.getUrl(Resolution.NORMAL))) { + error += "URL NORMAL"; + } + if (!Objects.equal(bFilm.getUrl(Resolution.HD), bFilm.getUrl(Resolution.HD))) { + error += "URL HD"; + } + // + if (error != "") { + LOG.info(error); + LOG.info(aFilm.toString()); + LOG.info(bFilm.toString()); + diff++; + } else { + fullmatch++; + } + } + + private static Film index(ArrayList list, Film aFilm) { + for (Film e : list) { + if (e.getSenderName().equalsIgnoreCase(aFilm.getSenderName()) && + e.getTitel().equalsIgnoreCase(aFilm.getTitel()) && + e.getThema().equalsIgnoreCase(aFilm.getThema()) && + e.getTime().equals(aFilm.getTime())) { + return e; + } + } + return null; +} + +} 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/episodes_1.json b/src/test/resources/orfOn/episodes_1.json new file mode 100644 index 000000000..304a73e9b --- /dev/null +++ b/src/test/resources/orfOn/episodes_1.json @@ -0,0 +1,18567 @@ +{ + "page": 1, + "limit": 20, + "pages": 1, + "total": 18, + "_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, 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_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": "https:\/\/api-tvthek.orf.at\/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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868783" + }, + "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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868780" + }, + "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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868781" + }, + "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 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_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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/866559" + }, + "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" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14201132,duration:1485160,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=14201132&duration=1485160&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-11-14T00:07:34+01:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Am Muttertag wird \"Dreck.Weg.Sendracek\" besonders dringend ins virtuelle Puff gerufen. Dort werden speziell f\u00fcr Frauen deren erotische W\u00fcnsche in Virtual Reality umgewandelt - und gerade am Muttertag ist der Andrang an Kundinnen besonders gro\u00df, alles muss also gl\u00e4nzen. Michelle ger\u00e4t aber wieder mal mit der gerissenen Firmenchefin Xenia aneinander, w\u00e4hrend Valentin einer Kundin ins Auge f\u00e4llt und Mira vergebens versucht, ihre Mutter in der Ukraine zu erreichen. Dann taucht auch noch Michelles Mutter Gerda auf und entpuppt sich als treue Kundin des Etablissements.\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), Andrea H\u00e4ndler (Gerda) u. a.", + "drm_token": null, + "duration_seconds": 1485, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAxMTMy", + "exact_duration": 1485160, + "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": "Wischen ist Macht: Muttertag", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14201132, + "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-14T00:07:34+02:00", + "killdate": "2024-05-21T00:27:00+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-14T06:52:01+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Muttertag\/14201132", + "share_subject": "Wischen ist Macht: Muttertag vom 14.11.2023 um 00: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-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Am Muttertag wird \"Dreck.Weg.Sendracek\" besonders dringend ins virtuelle Puff gerufen. Dort werden speziell f\u00fcr Frauen deren erotische W\u00fcnsche in Virtual Reality umgewandelt - und gerade am Muttertag ist der Andrang an Kundinnen besonders gro\u00df, alles muss also gl\u00e4nzen. Michelle ger\u00e4t aber wieder mal mit der gerissenen Firmenchefin Xenia aneinander, w\u00e4hrend Valentin einer Kundin ins Auge f\u00e4llt und Mira vergebens versucht, ihre Mutter in der Ukraine zu erreichen. Dann taucht auch noch Michelles Mutter Gerda auf und entpuppt sich als treue Kundin des Etablissements.\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), Andrea H\u00e4ndler (Gerda) u. a. \r\nBildquelle: ORF\/Anjeza Cikopano", + "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-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Muttertag", + "type": "default", + "updated_at": "2023-12-30T16:08:44+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132" + }, + "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\/14201132\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" + }, + "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\/16325286" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/866557" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/362431" + } + }, + "_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:14201132,duration:1485160,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=14201132&duration=1485160&advertisingtags=", + "blackfades": [], + "episode_date": "2023-11-14T00:07:34+01:00", + "date_as_string": "Di, 14.11.2023", + "vod_ressort": null, + "description": "Am Muttertag wird \"Dreck.Weg.Sendracek\" besonders dringend ins virtuelle Puff gerufen. Dort werden speziell f\u00fcr Frauen deren erotische W\u00fcnsche in Virtual Reality umgewandelt - und gerade am Muttertag ist der Andrang an Kundinnen besonders gro\u00df, alles muss also gl\u00e4nzen. Michelle ger\u00e4t aber wieder mal mit der gerissenen Firmenchefin Xenia aneinander, w\u00e4hrend Valentin einer Kundin ins Auge f\u00e4llt und Mira vergebens versucht, ihre Mutter in der Ukraine zu erreichen. Dann taucht auch noch Michelles Mutter Gerda auf und entpuppt sich als treue Kundin des Etablissements.\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), Andrea H\u00e4ndler (Gerda) u. a.", + "drm_token": null, + "duration_as_string": "24:45 Min.", + "duration_seconds": 1485, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzA5OA==", + "episode_id": 14201132, + "exact_duration": 1485160, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Muttertag", + "id": 15523098, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-14T00:07:34+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15523098, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Muttertag", + "videoduration": 1485, + "episodeduration": 1485, + "episodeid": 14201132, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-11-14T06:52: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-Muttertag\/14201132\/Wischen-ist-Macht-Muttertag\/15523098", + "share_subject": "Wischen ist Macht: Muttertag - Wischen ist Macht: Muttertag vom 14.11.2023 um 00: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-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Muttertag", + "updated_at": "2023-12-30T16:08:44+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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098", + "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\/15523098" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" + }, + "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\/16325286" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523098\/links" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523098\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523098\/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_16325285_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.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_16325286_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/cda8c715970a06bca1fcc9bab983bf6ff8659916.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.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_16325286_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/cda8c715970a06bca1fcc9bab983bf6ff8659916.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14200206,duration:1451240,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=14200206&duration=1451240&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-11-06T23:25:24+01:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken erneut im Museum von Direktorin Frida Gro\u00df-Klein an. Dort m\u00fcssen schnell die \u00dcberreste der gestrigen Finissage beseitigt werden, weil heute noch eine Auktion stattfindet. Michelle m\u00f6chte das Ganze mit ihrer \"Dreck-Weg-Power\" rocken, doch wieder mal laufen die Dinge etwas aus dem Ruder. W\u00e4hrend Fernando und Zoe in eine Kunsttherapiegruppe geraten, beginnt Michelle ihrer Ehe mit Ex-Mann Hugo kreativ zu verarbeiten. Als dieser dann tats\u00e4chlich im Museum auftaucht, beschlie\u00dft sie ihn endlich mal mit seinen eigenen Waffen zu schlagen.\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), Adele Neuhauser (Frida Gro\u00df-Klein), Pippa Galli (Aurora) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1451, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAwMjA2", + "exact_duration": 1451240, + "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": "Kunst ma ned helfen?", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14200206, + "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-06T23:25:24+02:00", + "killdate": "2024-05-21T00:27:00+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-06T23:50:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Kunst-ma-ned-helfen\/14200206", + "share_subject": "Wischen ist Macht: Kunst ma ned helfen? vom 06.11.2023 um 23:25 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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Michelle und ihr Team r\u00fccken erneut im Museum von Direktorin Frida Gro\u00df-Klein an. Dort m\u00fcssen schnell die \u00dcberreste der gestrigen Finissage beseitigt werden, weil heute noch eine Auktion stattfindet. Michelle m\u00f6chte das Ganze mit ihrer \"Dreck-Weg-Power\" rocken, doch wieder mal laufen die Dinge etwas aus dem Ruder. W\u00e4hrend Fernando und Zoe in eine Kunsttherapiegruppe geraten, beginnt Michelle ihrer Ehe mit Ex-Mann Hugo kreativ zu verarbeiten. Als dieser dann tats\u00e4chlich im Museum auftaucht, beschlie\u00dft sie ihn endlich mal mit seinen eigenen Waffen zu schlagen.\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), Adele Neuhauser (Frida Gro\u00df-Klein), Pippa Galli (Aurora) u.a.\r\nBildquelle: ORF\/ORF", + "teaser_title": "Kunst ma ned helfen?", + "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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Kunst ma ned helfen?", + "type": "default", + "updated_at": "2023-12-30T16:08:49+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206" + }, + "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\/14200206\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" + }, + "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\/16138378" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864540" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/361283" + } + }, + "_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:14200206,duration:1451240,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=14200206&duration=1451240&advertisingtags=", + "blackfades": [], + "episode_date": "2023-11-06T23:25:24+01:00", + "date_as_string": "Mo, 6.11.2023", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken erneut im Museum von Direktorin Frida Gro\u00df-Klein an. Dort m\u00fcssen schnell die \u00dcberreste der gestrigen Finissage beseitigt werden, weil heute noch eine Auktion stattfindet. Michelle m\u00f6chte das Ganze mit ihrer \"Dreck-Weg-Power\" rocken, doch wieder mal laufen die Dinge etwas aus dem Ruder. W\u00e4hrend Fernando und Zoe in eine Kunsttherapiegruppe geraten, beginnt Michelle ihrer Ehe mit Ex-Mann Hugo kreativ zu verarbeiten. Als dieser dann tats\u00e4chlich im Museum auftaucht, beschlie\u00dft sie ihn endlich mal mit seinen eigenen Waffen zu schlagen.\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), Adele Neuhauser (Frida Gro\u00df-Klein), Pippa Galli (Aurora) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "24:11 Min.", + "duration_seconds": 1451, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUwMTcyOQ==", + "episode_id": 14200206, + "exact_duration": 1451240, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Kunst ma ned helfen?", + "id": 15501729, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-06T23:25:24+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-04T09:00:00+01:00", + "livedate_extern": "2023-12-04T09:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15501729, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Kunst-ma-ned-helfen", + "videoduration": 1451, + "episodeduration": 1451, + "episodeid": 14200206, + "airdate": "2023-12-04T09:00:00+01:00", + "clipreleasetime": "2023-11-06T23:50: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-Kunst-ma-ned-helfen\/14200206\/Wischen-ist-Macht-Kunst-ma-ned-helfen\/15501729", + "share_subject": "Wischen ist Macht: Kunst ma ned helfen? - Wischen ist Macht: Kunst ma ned helfen? vom 06.11.2023 um 23:25 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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Serie", + "teaser_text": null, + "teaser_title": "Kunst ma ned helfen?", + "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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Kunst ma ned helfen?", + "updated_at": "2023-12-30T16:08:49+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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729", + "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\/15501729" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" + }, + "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\/16138378" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501729\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864541" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501729\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501729\/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\/42\/thumb_16141579_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.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\/39\/thumb_16138378_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/60a0f8ebcc6e7bb5aa057a77036459c8fe6b2229.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.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\/39\/thumb_16138378_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/60a0f8ebcc6e7bb5aa057a77036459c8fe6b2229.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14200205,duration:1363040,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=14200205&duration=1363040&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-11-06T22:57:37+01:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "M\u00fctterlicher Notfall: Michelle bekommt einen aufgeregte Anruf von ihrer exaltierten Mama Gerda. Diese vermietet ihre Innenstadtwohnung via FreeBnB und hatte soeben Streit mit einem Gast. Dieser sitzt nun von Gerda gefesselt und geknebelt in der Wohnung und Michelle soll mit seiner Beseitigung aushelfen. Oder zumindest alle Spuren einer Auseinandersetzung verschwinden lassen. Michelle weigert sich nat\u00fcrlich, doch dann stellt sich heraus, dass der mysteri\u00f6se Gast der Banker Christian Bacher ist, der eigentlich gerade mit einem Batzen Geld auf der Flucht ist.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1363, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAwMjA1", + "exact_duration": 1363040, + "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": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14200205, + "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-06T22:57:37+02:00", + "killdate": "2024-05-21T00:27:00+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-06T23:26:01+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Gefesselt-gewaschen-gefoehnt\/14200205", + "share_subject": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt vom 06.11.2023 um 22:57 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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "M\u00fctterlicher Notfall: Michelle bekommt einen aufgeregte Anruf von ihrer exaltierten Mama Gerda. Diese vermietet ihre Innenstadtwohnung via FreeBnB und hatte soeben Streit mit einem Gast. Dieser sitzt nun von Gerda gefesselt und geknebelt in der Wohnung und Michelle soll mit seiner Beseitigung aushelfen. Oder zumindest alle Spuren einer Auseinandersetzung verschwinden lassen. Michelle weigert sich nat\u00fcrlich, doch dann stellt sich heraus, dass der mysteri\u00f6se Gast der Banker Christian Bacher ist, der eigentlich gerade mit einem Batzen Geld auf der Flucht ist.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig) u.a.\r\nBildquelle: ORF\/ORF", + "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-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt", + "type": "default", + "updated_at": "2023-12-30T16:08:54+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205" + }, + "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\/14200205\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" + }, + "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\/16138752" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864536" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/361282" + } + }, + "_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:14200205,duration:1363040,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=14200205&duration=1363040&advertisingtags=", + "blackfades": [], + "episode_date": "2023-11-06T22:57:37+01:00", + "date_as_string": "Mo, 6.11.2023", + "vod_ressort": null, + "description": "M\u00fctterlicher Notfall: Michelle bekommt einen aufgeregte Anruf von ihrer exaltierten Mama Gerda. Diese vermietet ihre Innenstadtwohnung via FreeBnB und hatte soeben Streit mit einem Gast. Dieser sitzt nun von Gerda gefesselt und geknebelt in der Wohnung und Michelle soll mit seiner Beseitigung aushelfen. Oder zumindest alle Spuren einer Auseinandersetzung verschwinden lassen. Michelle weigert sich nat\u00fcrlich, doch dann stellt sich heraus, dass der mysteri\u00f6se Gast der Banker Christian Bacher ist, der eigentlich gerade mit einem Batzen Geld auf der Flucht ist.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "22:43 Min.", + "duration_seconds": 1363, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUwMTcyNw==", + "episode_id": 14200205, + "exact_duration": 1363040, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Gefesselt, gewaschen, gef\u00f6hnt", + "id": 15501727, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-06T22:57:37+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-04T09:00:00+01:00", + "livedate_extern": "2023-12-04T09:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15501727, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Gefesselt-gewaschen-gefoehnt", + "videoduration": 1363, + "episodeduration": 1363, + "episodeid": 14200205, + "airdate": "2023-12-04T09:00:00+01:00", + "clipreleasetime": "2023-11-06T23:26: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-Gefesselt-gewaschen-gefoehnt\/14200205\/Wischen-ist-Macht-Gefesselt-gewaschen-gefoehnt\/15501727", + "share_subject": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt - Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt vom 06.11.2023 um 22:57 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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Serie", + "teaser_text": null, + "teaser_title": "Gefesselt, gewaschen, gef\u00f6hnt", + "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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt", + "updated_at": "2023-12-30T16:08:54+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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727", + "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\/15501727" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" + }, + "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\/16138752" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501727\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864537" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501727\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501727\/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\/42\/thumb_16141800_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.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\/39\/thumb_16138752_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/7869bb411babc715b407ee8c81b53043915b0752.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.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\/39\/thumb_16138752_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/7869bb411babc715b407ee8c81b53043915b0752.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14199375,duration:1300040,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=14199375&duration=1300040&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-30T23:26:10+01:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Michelle und ihr Team werden zu einem luxuri\u00f6sen Notfall in der russischen Botschaft gerufen: Der Neffe der Botschafterin hat hinter ihrem R\u00fccken eine Party gefeiert, die etwas ausgeartet ist. Allerdings dr\u00e4ngt die Zeit schon sehr, da seine Tante bald eintreffen wird. Michelle \u00fcbernimmt den Keller und trifft dort auf einen \u00fcbriggebliebenen Fetischisten, w\u00e4hrend Fernando und Zoe von einer Partyleiche verfolgt werden. Mit 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) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1300, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk5Mzc1", + "exact_duration": 1300040, + "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": "Wischen ist Macht: Party vorbei", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14199375, + "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-04-30T23:26:10+02:00", + "killdate": "2024-05-21T00:27:00+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-10-30T23: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-Party-vorbei\/14199375", + "share_subject": "Wischen ist Macht: Party vorbei vom 30.10.2023 um 23:26 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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Michelle und ihr Team werden zu einem luxuri\u00f6sen Notfall in der russischen Botschaft gerufen: Der Neffe der Botschafterin hat hinter ihrem R\u00fccken eine Party gefeiert, die etwas ausgeartet ist. Allerdings dr\u00e4ngt die Zeit schon sehr, da seine Tante bald eintreffen wird. Michelle \u00fcbernimmt den Keller und trifft dort auf einen \u00fcbriggebliebenen Fetischisten, w\u00e4hrend Fernando und Zoe von einer Partyleiche verfolgt werden. Mit 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) u.a.\r\nBildquelle: ORF\/ORF", + "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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Party vorbei", + "type": "default", + "updated_at": "2024-01-04T11:06:16+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375" + }, + "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\/14199375\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" + }, + "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\/16324738" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862623" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/360033" + } + }, + "_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:14199375,duration:1300040,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=14199375&duration=1300040&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-30T23:26:10+01:00", + "date_as_string": "Mo, 30.10.2023", + "vod_ressort": null, + "description": "Michelle und ihr Team werden zu einem luxuri\u00f6sen Notfall in der russischen Botschaft gerufen: Der Neffe der Botschafterin hat hinter ihrem R\u00fccken eine Party gefeiert, die etwas ausgeartet ist. Allerdings dr\u00e4ngt die Zeit schon sehr, da seine Tante bald eintreffen wird. Michelle \u00fcbernimmt den Keller und trifft dort auf einen \u00fcbriggebliebenen Fetischisten, w\u00e4hrend Fernando und Zoe von einer Partyleiche verfolgt werden. Mit 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) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "21:40 Min.", + "duration_seconds": 1300, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5Nzc4Nw==", + "episode_id": 14199375, + "exact_duration": 1300040, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Party vorbei", + "id": 15497787, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-04-30T23:26:10+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15497787, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Party-vorbei", + "videoduration": 1300, + "episodeduration": 1300, + "episodeid": 14199375, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-30T23: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-Party-vorbei\/14199375\/Wischen-ist-Macht-Party-vorbei\/15497787", + "share_subject": "Wischen ist Macht: Party vorbei - Wischen ist Macht: Party vorbei vom 30.10.2023 um 23:26 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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Party vorbei", + "updated_at": "2024-01-04T11:06:16+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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787", + "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\/15497787" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" + }, + "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\/16324738" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497787\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862624" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497787\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497787\/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\/25\/thumb_16324737_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.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\/25\/thumb_16324738_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/b327f9284a5b8872f96ed752cdefd8e85fee61e9.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.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\/25\/thumb_16324738_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/b327f9284a5b8872f96ed752cdefd8e85fee61e9.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14199372,duration:1608840,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=14199372&duration=1608840&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-30T22:53:49+01:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "\"Dreck.Weg.Sendracek\" r\u00fcckt diesmal bei der Versicherung an. Dort angekommen erkl\u00e4rt ihnen aber Benno Neuner, dass sie diesmal nicht die B\u00fcror\u00e4ume reinigen sollen, sondern seine im Keller gelegene Bar. Und das nur, weil f\u00fcr die B\u00fcros \"Die Wischm\u00f6pse\" engagiert wurden - ein Putztrupp, der zwar wenig putzt, daf\u00fcr aber umso mehr K\u00f6rpereinsatz zeigt. Mit 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) u.a.", + "drm_token": null, + "duration_seconds": 1608, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk5Mzcy", + "exact_duration": 1608840, + "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": "Wischen ist Macht: Ab in den Keller", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14199372, + "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-04-30T22:53:49+02:00", + "killdate": "2024-05-21T00:27:00+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-10-30T23:26:02+01:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Ab-in-den-Keller\/14199372", + "share_subject": "Wischen ist Macht: Ab in den Keller vom 30.10.2023 um 22:53 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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "\"Dreck.Weg.Sendracek\" r\u00fcckt diesmal bei der Versicherung an. Dort angekommen erkl\u00e4rt ihnen aber Benno Neuner, dass sie diesmal nicht die B\u00fcror\u00e4ume reinigen sollen, sondern seine im Keller gelegene Bar. Und das nur, weil f\u00fcr die B\u00fcros \"Die Wischm\u00f6pse\" engagiert wurden - ein Putztrupp, der zwar wenig putzt, daf\u00fcr aber umso mehr K\u00f6rpereinsatz zeigt. Mit 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) u.a.", + "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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Ab in den Keller", + "type": "default", + "updated_at": "2024-01-04T11:05:50+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372" + }, + "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\/14199372\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" + }, + "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\/16596204" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862621" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/360032" + } + }, + "_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:14199372,duration:1608840,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=14199372&duration=1608840&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-30T22:53:49+01:00", + "date_as_string": "Mo, 30.10.2023", + "vod_ressort": null, + "description": "\"Dreck.Weg.Sendracek\" r\u00fcckt diesmal bei der Versicherung an. Dort angekommen erkl\u00e4rt ihnen aber Benno Neuner, dass sie diesmal nicht die B\u00fcror\u00e4ume reinigen sollen, sondern seine im Keller gelegene Bar. Und das nur, weil f\u00fcr die B\u00fcros \"Die Wischm\u00f6pse\" engagiert wurden - ein Putztrupp, der zwar wenig putzt, daf\u00fcr aber umso mehr K\u00f6rpereinsatz zeigt. Mit 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) u.a.", + "drm_token": null, + "duration_as_string": "26:48 Min.", + "duration_seconds": 1608, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5NzkxNQ==", + "episode_id": 14199372, + "exact_duration": 1608840, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Ab in den Keller", + "id": 15497915, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-04-30T22:53:49+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15497915, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Ab-in-den-Keller", + "videoduration": 1608, + "episodeduration": 1608, + "episodeid": 14199372, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-30T23:26: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-Ab-in-den-Keller\/14199372\/Wischen-ist-Macht-Ab-in-den-Keller\/15497915", + "share_subject": "Wischen ist Macht: Ab in den Keller - Wischen ist Macht: Ab in den Keller vom 30.10.2023 um 22:53 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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Ab in den Keller", + "updated_at": "2024-01-04T11:05:50+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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915", + "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\/15497915" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" + }, + "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\/16596204" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497915\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862622" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497915\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497915\/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\/14\/thumb_16113651_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.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\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.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\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" + }, + "legacy": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14198481,duration:1509200,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=14198481&duration=1509200&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-23T23:28:21+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "\"Dreck.Weg.Sendracek\" goes Virtual Reality. Michelle und ihr Team werden zu einer Start-Up-Firma gerufen, die die erotischen W\u00fcnsche von Frauen in virtuelle Realit\u00e4t umwandelt. Gleich zu Beginn aber kracht Michelle mit Firmenchefin Xenia zusammen, die der Putzfirma unsauberes Arbeiten unterstellt. Noch dazu muss gerade diesmal alles tiptop sauber sein, es hat sich n\u00e4mlich ein Investor angek\u00fcndigt. Fernando m\u00f6chte der Firma gleich ein PR-Konzept aufdr\u00e4ngen, w\u00e4hrend Mira sich wiederum einem der h\u00fcbschen Mitarbeiter aufdr\u00e4ngt. Dann taucht der mysteri\u00f6se Investor auf und Michelle f\u00e4llt die Kinnlade runter.\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) u.a.", + "drm_token": null, + "duration_seconds": 1509, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk4NDgx", + "exact_duration": 1509200, + "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": "Wischen ist Macht: Fantasie ist Fantasie", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14198481, + "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:00+02:00", + "killdate": "2024-05-21T00:27:00+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-10-23T23:52:02+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Fantasie-ist-Fantasie\/14198481", + "share_subject": "Wischen ist Macht: Fantasie ist Fantasie vom 23.10.2023 um 23:28 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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "\"Dreck.Weg.Sendracek\" goes Virtual Reality. Michelle und ihr Team werden zu einer Start-Up-Firma gerufen, die die erotischen W\u00fcnsche von Frauen in virtuelle Realit\u00e4t umwandelt. Gleich zu Beginn aber kracht Michelle mit Firmenchefin Xenia zusammen, die der Putzfirma unsauberes Arbeiten unterstellt. Noch dazu muss gerade diesmal alles tiptop sauber sein, es hat sich n\u00e4mlich ein Investor angek\u00fcndigt. Fernando m\u00f6chte der Firma gleich ein PR-Konzept aufdr\u00e4ngen, w\u00e4hrend Mira sich wiederum einem der h\u00fcbschen Mitarbeiter aufdr\u00e4ngt. Dann taucht der mysteri\u00f6se Investor auf und Michelle f\u00e4llt die Kinnlade runter.\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) u.a.", + "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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Fantasie ist Fantasie", + "type": "default", + "updated_at": "2024-01-04T10:55:34+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481" + }, + "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\/14198481\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" + }, + "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\/16086180" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860502" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/359032" + } + }, + "_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:14198481,duration:1509200,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=14198481&duration=1509200&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-23T23:28:21+02:00", + "date_as_string": "Mo, 23.10.2023", + "vod_ressort": null, + "description": "\"Dreck.Weg.Sendracek\" goes Virtual Reality. Michelle und ihr Team werden zu einer Start-Up-Firma gerufen, die die erotischen W\u00fcnsche von Frauen in virtuelle Realit\u00e4t umwandelt. Gleich zu Beginn aber kracht Michelle mit Firmenchefin Xenia zusammen, die der Putzfirma unsauberes Arbeiten unterstellt. Noch dazu muss gerade diesmal alles tiptop sauber sein, es hat sich n\u00e4mlich ein Investor angek\u00fcndigt. Fernando m\u00f6chte der Firma gleich ein PR-Konzept aufdr\u00e4ngen, w\u00e4hrend Mira sich wiederum einem der h\u00fcbschen Mitarbeiter aufdr\u00e4ngt. Dann taucht der mysteri\u00f6se Investor auf und Michelle f\u00e4llt die Kinnlade runter.\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) u.a.", + "drm_token": null, + "duration_as_string": "25:09 Min.", + "duration_seconds": 1509, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5Mjk1Mw==", + "episode_id": 14198481, + "exact_duration": 1509200, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Fantasie ist Fantasie", + "id": 15492953, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:00+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15492953, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Fantasie-ist-Fantasie", + "videoduration": 1509, + "episodeduration": 1509, + "episodeid": 14198481, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-23T23:52:02+02: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-Fantasie-ist-Fantasie\/14198481\/Wischen-ist-Macht-Fantasie-ist-Fantasie\/15492953", + "share_subject": "Wischen ist Macht: Fantasie ist Fantasie - Wischen ist Macht: Fantasie ist Fantasie vom 23.10.2023 um 23:28 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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Fantasie ist Fantasie", + "updated_at": "2024-01-04T10:55:34+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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953", + "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\/15492953" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" + }, + "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\/16086180" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492953\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860503" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492953\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492953\/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\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.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\/0161\/87\/thumb_16086180_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/f156b456d3a8e79796e32a21616eb05881419986.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.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\/0161\/87\/thumb_16086180_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/f156b456d3a8e79796e32a21616eb05881419986.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14198480,duration:1521040,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=14198480&duration=1521040&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-23T22:57:50+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Um eine Jungunternehmer-F\u00f6rderung zu bekommen, muss Michelle am Vortrag des \"Win-Coach\" teilnehmen. W\u00e4hrend Michelle vorerst noch uninteressiert im Kurs sitzt, putzen ihre Mitarbeiter drau\u00dfen mehr oder weniger flei\u00dfig die Schulr\u00e4ume. Valentin wird w\u00e4hrend der Toilettenreinigung von einer Schulm\u00e4dchen-Gang terrorisiert, und Mira ist wie immer unmotiviert. Fernando hingegen ist dabei das Fortbewegungsmittel der Zukunft zu erfinden, einzig Zoe putzt flei\u00dfig vor sich hin. Um ihr Team doch zu motivieren, versucht Michelle es doch noch mit dem gerade Gelernten, l\u00f6st dabei aber nur noch mehr Chaos aus.\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) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1521, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk4NDgw", + "exact_duration": 1521040, + "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": "Wischen ist Macht: Die Win-Methode", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14198480, + "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:00+02:00", + "killdate": "2024-05-21T00:27:00+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-10-23T23:22:01+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Die-Win-Methode\/14198480", + "share_subject": "Wischen ist Macht: Die Win-Methode vom 23.10.2023 um 22:57 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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Um eine Jungunternehmer-F\u00f6rderung zu bekommen, muss Michelle am Vortrag des \"Win-Coach\" teilnehmen. W\u00e4hrend Michelle vorerst noch uninteressiert im Kurs sitzt, putzen ihre Mitarbeiter drau\u00dfen mehr oder weniger flei\u00dfig die Schulr\u00e4ume. Valentin wird w\u00e4hrend der Toilettenreinigung von einer Schulm\u00e4dchen-Gang terrorisiert, und Mira ist wie immer unmotiviert. Fernando hingegen ist dabei das Fortbewegungsmittel der Zukunft zu erfinden, einzig Zoe putzt flei\u00dfig vor sich hin. Um ihr Team doch zu motivieren, versucht Michelle es doch noch mit dem gerade Gelernten, l\u00f6st dabei aber nur noch mehr Chaos aus.\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) u.a.\r\nBildquelle: ORF\/ORF", + "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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Die Win-Methode", + "type": "default", + "updated_at": "2024-01-04T10:53:46+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480" + }, + "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\/14198480\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" + }, + "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\/16086178" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860500" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/359031" + } + }, + "_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:14198480,duration:1521040,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=14198480&duration=1521040&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-23T22:57:50+02:00", + "date_as_string": "Mo, 23.10.2023", + "vod_ressort": null, + "description": "Um eine Jungunternehmer-F\u00f6rderung zu bekommen, muss Michelle am Vortrag des \"Win-Coach\" teilnehmen. W\u00e4hrend Michelle vorerst noch uninteressiert im Kurs sitzt, putzen ihre Mitarbeiter drau\u00dfen mehr oder weniger flei\u00dfig die Schulr\u00e4ume. Valentin wird w\u00e4hrend der Toilettenreinigung von einer Schulm\u00e4dchen-Gang terrorisiert, und Mira ist wie immer unmotiviert. Fernando hingegen ist dabei das Fortbewegungsmittel der Zukunft zu erfinden, einzig Zoe putzt flei\u00dfig vor sich hin. Um ihr Team doch zu motivieren, versucht Michelle es doch noch mit dem gerade Gelernten, l\u00f6st dabei aber nur noch mehr Chaos aus.\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) u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "25:21 Min.", + "duration_seconds": 1521, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5Mjk1Mg==", + "episode_id": 14198480, + "exact_duration": 1521040, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Die Win-Methode", + "id": 15492952, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:00+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15492952, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Die-Win-Methode", + "videoduration": 1521, + "episodeduration": 1521, + "episodeid": 14198480, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-23T23:22:01+02: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-Die-Win-Methode\/14198480\/Wischen-ist-Macht-Die-Win-Methode\/15492952", + "share_subject": "Wischen ist Macht: Die Win-Methode - Wischen ist Macht: Die Win-Methode vom 23.10.2023 um 22:57 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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Die Win-Methode", + "updated_at": "2024-01-04T10:53:46+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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952", + "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\/15492952" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" + }, + "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\/16086178" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492952\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860501" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492952\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492952\/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\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.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\/0161\/87\/thumb_16086178_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/d1b8f1321a6956d99b4a82504431d9c95daec222.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.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\/0161\/87\/thumb_16086178_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/d1b8f1321a6956d99b4a82504431d9c95daec222.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14197574,duration:1459200,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=14197574&duration=1459200&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-16T23:25:13+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Michelle (Ursula Strauss) und ihr Team schieben Dienst in der Bestattung. Diesmal aber herrscht besonders unheimliche Stimmung dort, nachdem Mira (Zeynep Buyrac) einen mysteri\u00f6sen Mann im Trenchcoat herumschleichen sieht. Dieser entpuppt sich dann auch gleich als doppelte Gefahr f\u00fcr Michelle \u2013 er ist n\u00e4mlich nicht nur einer ihrer ehemaligen Verehrer, sondern auch noch Kontrolleur des Magistrats. Michelles Team strengt sich besonders an, alles richtig zu machen, doch Valentin (Manuel Sefciuc) schl\u00e4gt etwas \u00fcbers Ziel hinaus, w\u00e4hrend Mira ihr Talent als Kupplerin entdeckt.\r\nBesetzung: 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), David Oberkogler (Inspektor Herbert Muchitsch)", + "drm_token": null, + "duration_seconds": 1459, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk3NTc0", + "exact_duration": 1459200, + "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": "Wischen ist Macht: Hast du Hobbies?", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14197574, + "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-04-16T23:25:13+02:00", + "killdate": "2024-05-21T00:27:00+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-10-17T00:16:01+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Hast-du-Hobbies\/14197574", + "share_subject": "Wischen ist Macht: Hast du Hobbies? vom 16.10.2023 um 23:25 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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Michelle (Ursula Strauss) und ihr Team schieben Dienst in der Bestattung. Diesmal aber herrscht besonders unheimliche Stimmung dort, nachdem Mira (Zeynep Buyrac) einen mysteri\u00f6sen Mann im Trenchcoat herumschleichen sieht. Dieser entpuppt sich dann auch gleich als doppelte Gefahr f\u00fcr Michelle \u2013 er ist n\u00e4mlich nicht nur einer ihrer ehemaligen Verehrer, sondern auch noch Kontrolleur des Magistrats. Michelles Team strengt sich besonders an, alles richtig zu machen, doch Valentin (Manuel Sefciuc) schl\u00e4gt etwas \u00fcbers Ziel hinaus, w\u00e4hrend Mira ihr Talent als Kupplerin entdeckt.\r\nBesetzung: 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), David Oberkogler (Inspektor Herbert Muchitsch)", + "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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Hast du Hobbies?", + "type": "default", + "updated_at": "2024-01-04T10:00:22+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574" + }, + "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\/14197574\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" + }, + "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\/16325284" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/857206" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357767" + } + }, + "_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:14197574,duration:1459200,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=14197574&duration=1459200&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-16T23:25:13+02:00", + "date_as_string": "Mo, 16.10.2023", + "vod_ressort": null, + "description": "Michelle (Ursula Strauss) und ihr Team schieben Dienst in der Bestattung. Diesmal aber herrscht besonders unheimliche Stimmung dort, nachdem Mira (Zeynep Buyrac) einen mysteri\u00f6sen Mann im Trenchcoat herumschleichen sieht. Dieser entpuppt sich dann auch gleich als doppelte Gefahr f\u00fcr Michelle \u2013 er ist n\u00e4mlich nicht nur einer ihrer ehemaligen Verehrer, sondern auch noch Kontrolleur des Magistrats. Michelles Team strengt sich besonders an, alles richtig zu machen, doch Valentin (Manuel Sefciuc) schl\u00e4gt etwas \u00fcbers Ziel hinaus, w\u00e4hrend Mira ihr Talent als Kupplerin entdeckt.\r\nBesetzung: 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), David Oberkogler (Inspektor Herbert Muchitsch)", + "drm_token": null, + "duration_as_string": "24:19 Min.", + "duration_seconds": 1459, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzEwNQ==", + "episode_id": 14197574, + "exact_duration": 1459200, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Hast du Hobbies?", + "id": 15523105, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-04-16T23:25:13+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15523105, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Hast-du-Hobbies", + "videoduration": 1459, + "episodeduration": 1459, + "episodeid": 14197574, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-17T00:16:01+02: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-Hast-du-Hobbies\/14197574\/Wischen-ist-Macht-Hast-du-Hobbies\/15523105", + "share_subject": "Wischen ist Macht: Hast du Hobbies? - Wischen ist Macht: Hast du Hobbies? vom 16.10.2023 um 23:25 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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Hast du Hobbies?", + "updated_at": "2024-01-04T10:00:22+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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105", + "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\/15523105" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" + }, + "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\/16325284" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523105\/links" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523105\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523105\/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_16325283_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.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_16325284_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/a4c2b8eee29c51fe616f89be3500bc01ce34b8c4.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.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_16325284_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/a4c2b8eee29c51fe616f89be3500bc01ce34b8c4.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14197573,duration:1419320,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=14197573&duration=1419320&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-16T22:56:14+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "\u201eDreck.Weg.Sendracek\u201c putzt wieder mal bei den abgehalfterten Rockstars rund um \u201eShit happens\u201c-S\u00e4nger Johnny Woody (Wolfram Berger). Michelle (Ursula Strauss) kann sich allerdings \u00fcberhaupt nicht auf die Arbeit konzentrieren. Ihr Ex-Mann Hugo (Thomas Mraz) hat ihr n\u00e4mlich mitgeteilt, dass seine Freundin schwanger ist und Michelle ihm nicht nur weiterhin Unterhalt zahlen soll, sondern zus\u00e4tzlich auch noch Kindergeld. Und bei den Ex-Rockern geht es \u00e4hnlich zu. Pamela (Doris Hindinger) glaubt schwanger zu sein, die Frage ist nur, ob es Johnnys oder Gingers (Helmut Bohatsch) Kind ist. Johnnys Frau Janis (Eva Maria Marold) ist komplett unbeeindruckt vom Chaos und interessiert sich mehr f\u00fcr Fernando.\r\nBesetzung: 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)", + "drm_token": null, + "duration_seconds": 1419, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk3NTcz", + "exact_duration": 1419320, + "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": "Wischen ist Macht: Bombe", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14197573, + "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-04-16T22:56:14+02:00", + "killdate": "2024-05-21T00:27:00+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-10-16T23:46:01+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Bombe\/14197573", + "share_subject": "Wischen ist Macht: Bombe vom 16.10.2023 um 22:56 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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "\u201eDreck.Weg.Sendracek\u201c putzt wieder mal bei den abgehalfterten Rockstars rund um \u201eShit happens\u201c-S\u00e4nger Johnny Woody (Wolfram Berger). Michelle (Ursula Strauss) kann sich allerdings \u00fcberhaupt nicht auf die Arbeit konzentrieren. Ihr Ex-Mann Hugo (Thomas Mraz) hat ihr n\u00e4mlich mitgeteilt, dass seine Freundin schwanger ist und Michelle ihm nicht nur weiterhin Unterhalt zahlen soll, sondern zus\u00e4tzlich auch noch Kindergeld. Und bei den Ex-Rockern geht es \u00e4hnlich zu. Pamela (Doris Hindinger) glaubt schwanger zu sein, die Frage ist nur, ob es Johnnys oder Gingers (Helmut Bohatsch) Kind ist. Johnnys Frau Janis (Eva Maria Marold) ist komplett unbeeindruckt vom Chaos und interessiert sich mehr f\u00fcr Fernando.\r\nBesetzung: 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)", + "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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Bombe", + "type": "default", + "updated_at": "2024-01-04T10:00:00+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573" + }, + "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\/14197573\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" + }, + "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\/16325282" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/857194" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357766" + } + }, + "_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:14197573,duration:1419320,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=14197573&duration=1419320&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-16T22:56:14+02:00", + "date_as_string": "Mo, 16.10.2023", + "vod_ressort": null, + "description": "\u201eDreck.Weg.Sendracek\u201c putzt wieder mal bei den abgehalfterten Rockstars rund um \u201eShit happens\u201c-S\u00e4nger Johnny Woody (Wolfram Berger). Michelle (Ursula Strauss) kann sich allerdings \u00fcberhaupt nicht auf die Arbeit konzentrieren. Ihr Ex-Mann Hugo (Thomas Mraz) hat ihr n\u00e4mlich mitgeteilt, dass seine Freundin schwanger ist und Michelle ihm nicht nur weiterhin Unterhalt zahlen soll, sondern zus\u00e4tzlich auch noch Kindergeld. Und bei den Ex-Rockern geht es \u00e4hnlich zu. Pamela (Doris Hindinger) glaubt schwanger zu sein, die Frage ist nur, ob es Johnnys oder Gingers (Helmut Bohatsch) Kind ist. Johnnys Frau Janis (Eva Maria Marold) ist komplett unbeeindruckt vom Chaos und interessiert sich mehr f\u00fcr Fernando.\r\nBesetzung: 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)", + "drm_token": null, + "duration_as_string": "23:39 Min.", + "duration_seconds": 1419, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzEwNA==", + "episode_id": 14197573, + "exact_duration": 1419320, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Bombe", + "id": 15523104, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-04-16T22:56:14+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2100-01-01T00:00:00+01:00", + "livedate_extern": "2100-01-01T00:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15523104, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Bombe", + "videoduration": 1419, + "episodeduration": 1419, + "episodeid": 14197573, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-16T23:46:01+02: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-Bombe\/14197573\/Wischen-ist-Macht-Bombe\/15523104", + "share_subject": "Wischen ist Macht: Bombe - Wischen ist Macht: Bombe vom 16.10.2023 um 22:56 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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Bombe", + "updated_at": "2024-01-04T10:00:00+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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104", + "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\/15523104" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" + }, + "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\/16325282" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523104\/links" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523104\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523104\/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_16325281_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.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_16325282_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/0570ece059dbba72aa3fdacfd23bd83650e7cb64.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.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_16325282_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/0570ece059dbba72aa3fdacfd23bd83650e7cb64.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14196635,duration:1349040,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=14196635&duration=1349040&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-09T23:24:15+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Der f\u00fcr Michelle (Ursula Strauss) wahrscheinlich h\u00e4rteste Auftrag steht an: Bei ihrer Mutter Gerda (Andrea H\u00e4ndler) putzen. Diese hat Michelle und ihr Team mit einem Vorwand in ihre Wohnung gelockt. Eigentlich m\u00f6chte sie ihre Tochter endlich verkuppeln und hat daf\u00fcr Herrenbesuch eingeladen. Gerdas Auswahl reicht von sch\u00f6n, aber dumm, bis zu schr\u00e4g, daf\u00fcr gut best\u00fcckt. Eigentlich will Michelle nur mehr weg, doch dann passiert ein Malheur nach dem anderen, und bald steht sogar Fernandos (Stefano Bernardin) Leben auf dem Spiel.\r\nBesetzung:\r\nUrsula Strauss (Michelle Sendracek)\r\nStefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz)\r\nZeynep Buyrac (Mira Petrenko)\r\nManuel Sefciuc (Valentin Gradischnig)\r\nLilian Jane Gartner (Zoe) u.v.m.\r\n\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1349, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk2NjM1", + "exact_duration": 1349040, + "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": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14196635, + "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:00+02:00", + "killdate": "2024-05-21T00:27:00+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-10-09T23:50:02+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Schmusen-ist-auch-nicht-betruegen\/14196635", + "share_subject": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen vom 09.10.2023 um 23:24 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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Comedy-Serie", + "teaser_text": "Der f\u00fcr Michelle (Ursula Strauss) wahrscheinlich h\u00e4rteste Auftrag steht an: Bei ihrer Mutter Gerda (Andrea H\u00e4ndler) putzen. Diese hat Michelle und ihr Team mit einem Vorwand in ihre Wohnung gelockt. Eigentlich m\u00f6chte sie ihre Tochter endlich verkuppeln und hat daf\u00fcr Herrenbesuch eingeladen. Gerdas Auswahl reicht von sch\u00f6n, aber dumm, bis zu schr\u00e4g, daf\u00fcr gut best\u00fcckt. Eigentlich will Michelle nur mehr weg, doch dann passiert ein Malheur nach dem anderen, und bald steht sogar Fernandos (Stefano Bernardin) Leben auf dem Spiel.\r\nBesetzung:\r\nUrsula Strauss (Michelle Sendracek)\r\nStefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz)\r\nZeynep Buyrac (Mira Petrenko)\r\nManuel Sefciuc (Valentin Gradischnig)\r\nLilian Jane Gartner (Zoe) u.v.m.\r\n\r\nBildquelle: ORF\/ORF", + "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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", + "type": "default", + "updated_at": "2024-01-04T09:49:19+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635" + }, + "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\/14196635\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" + }, + "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\/16005387" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855090" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357519" + } + }, + "_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:14196635,duration:1349040,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=14196635&duration=1349040&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-09T23:24:15+02:00", + "date_as_string": "Mo, 9.10.2023", + "vod_ressort": null, + "description": "Der f\u00fcr Michelle (Ursula Strauss) wahrscheinlich h\u00e4rteste Auftrag steht an: Bei ihrer Mutter Gerda (Andrea H\u00e4ndler) putzen. Diese hat Michelle und ihr Team mit einem Vorwand in ihre Wohnung gelockt. Eigentlich m\u00f6chte sie ihre Tochter endlich verkuppeln und hat daf\u00fcr Herrenbesuch eingeladen. Gerdas Auswahl reicht von sch\u00f6n, aber dumm, bis zu schr\u00e4g, daf\u00fcr gut best\u00fcckt. Eigentlich will Michelle nur mehr weg, doch dann passiert ein Malheur nach dem anderen, und bald steht sogar Fernandos (Stefano Bernardin) Leben auf dem Spiel.\r\nBesetzung:\r\nUrsula Strauss (Michelle Sendracek)\r\nStefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz)\r\nZeynep Buyrac (Mira Petrenko)\r\nManuel Sefciuc (Valentin Gradischnig)\r\nLilian Jane Gartner (Zoe) u.v.m.\r\n\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "22:29 Min.", + "duration_seconds": 1349, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ4MzM2Mw==", + "episode_id": 14196635, + "exact_duration": 1349040, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", + "id": 15483363, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:00+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15483363, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Schmusen-ist-auch-nicht-betruegen", + "videoduration": 1349, + "episodeduration": 1349, + "episodeid": 14196635, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-09T23:50:02+02: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-Schmusen-ist-auch-nicht-betruegen\/14196635\/Wischen-ist-Macht-Schmusen-ist-auch-nicht-betruegen\/15483363", + "share_subject": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen - Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen vom 09.10.2023 um 23:24 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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Comedy-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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", + "updated_at": "2024-01-04T09:49:19+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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363", + "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\/15483363" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" + }, + "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\/16005387" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483363\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855091" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483363\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483363\/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\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.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\/0161\/06\/thumb_16005387_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/44332a83a48c05768ad895b42b5bf97e19a9e5e7.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.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\/0161\/06\/thumb_16005387_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/44332a83a48c05768ad895b42b5bf97e19a9e5e7.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14196634,duration:1465360,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=14196634&duration=1465360&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-09T22:55:03+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken diesmal im Lokal von Barbesitzer und Achtsamkeitstrainer Benno Neuner an. Die Bar hat eindeutig eine wilde Nacht hinter sich und \"Dreck.Weg.Sendracek\" eigentlich alle H\u00e4nde voll zu tun - doch Benno Neuner schickt das Reinigungsteam wieder nachhause. Michelle l\u00e4sst sich diesen respektlosen Umgang mit ihrer Arbeitszeit nat\u00fcrlich nicht gefallen und beginnt eine Diskussion mit Neuner. Da taucht pl\u00f6tzlich Michelles Ex-Mann Hugo auf und bringt ihr seine Psychiaterrechnung vorbei. Sie sei ja immerhin auch schuld an seinem labilen psychischen Zustand. W\u00e4hrend Michelle noch mit den Herren diskutieren muss, findet ihr Team einen bewusstlosen Mann in der Bar.\r\nBesetzung: 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), Anton Noori (Benno Neuner), Patrick Seletzky (Gruppeninspektor).\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1465, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk2NjM0", + "exact_duration": 1465360, + "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": "Wischen ist Macht: Veni vidi wischi", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14196634, + "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:00+02:00", + "killdate": "2024-05-21T00:27:00+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-10-09T23:22:01+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Veni-vidi-wischi\/14196634", + "share_subject": "Wischen ist Macht: Veni vidi wischi vom 09.10.2023 um 22:55 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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Comedy-Serie", + "teaser_text": "Michelle und ihr Team r\u00fccken diesmal im Lokal von Barbesitzer und Achtsamkeitstrainer Benno Neuner an. Die Bar hat eindeutig eine wilde Nacht hinter sich und \"Dreck.Weg.Sendracek\" eigentlich alle H\u00e4nde voll zu tun - doch Benno Neuner schickt das Reinigungsteam wieder nachhause. Michelle l\u00e4sst sich diesen respektlosen Umgang mit ihrer Arbeitszeit nat\u00fcrlich nicht gefallen und beginnt eine Diskussion mit Neuner. Da taucht pl\u00f6tzlich Michelles Ex-Mann Hugo auf und bringt ihr seine Psychiaterrechnung vorbei. Sie sei ja immerhin auch schuld an seinem labilen psychischen Zustand. W\u00e4hrend Michelle noch mit den Herren diskutieren muss, findet ihr Team einen bewusstlosen Mann in der Bar.\r\nBesetzung: 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), Anton Noori (Benno Neuner), Patrick Seletzky (Gruppeninspektor).\r\nBildquelle: ORF\/ORF", + "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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Veni vidi wischi", + "type": "default", + "updated_at": "2024-01-04T09:44:03+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634" + }, + "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\/14196634\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" + }, + "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\/16005402" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855078" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357518" + } + }, + "_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:14196634,duration:1465360,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=14196634&duration=1465360&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-09T22:55:03+02:00", + "date_as_string": "Mo, 9.10.2023", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken diesmal im Lokal von Barbesitzer und Achtsamkeitstrainer Benno Neuner an. Die Bar hat eindeutig eine wilde Nacht hinter sich und \"Dreck.Weg.Sendracek\" eigentlich alle H\u00e4nde voll zu tun - doch Benno Neuner schickt das Reinigungsteam wieder nachhause. Michelle l\u00e4sst sich diesen respektlosen Umgang mit ihrer Arbeitszeit nat\u00fcrlich nicht gefallen und beginnt eine Diskussion mit Neuner. Da taucht pl\u00f6tzlich Michelles Ex-Mann Hugo auf und bringt ihr seine Psychiaterrechnung vorbei. Sie sei ja immerhin auch schuld an seinem labilen psychischen Zustand. W\u00e4hrend Michelle noch mit den Herren diskutieren muss, findet ihr Team einen bewusstlosen Mann in der Bar.\r\nBesetzung: 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), Anton Noori (Benno Neuner), Patrick Seletzky (Gruppeninspektor).\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "24:25 Min.", + "duration_seconds": 1465, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ4MzM2Mg==", + "episode_id": 14196634, + "exact_duration": 1465360, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Veni vidi wischi", + "id": 15483362, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:00+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15483362, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Veni-vidi-wischi", + "videoduration": 1465, + "episodeduration": 1465, + "episodeid": 14196634, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-09T23:22:01+02: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-Veni-vidi-wischi\/14196634\/Wischen-ist-Macht-Veni-vidi-wischi\/15483362", + "share_subject": "Wischen ist Macht: Veni vidi wischi - Wischen ist Macht: Veni vidi wischi vom 09.10.2023 um 22:55 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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "state": "distributed", + "sub_headline": "Comedy-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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Veni vidi wischi", + "updated_at": "2024-01-04T09:44:03+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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362", + "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\/15483362" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" + }, + "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\/16005402" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483362\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855079" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483362\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483362\/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\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.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\/0161\/06\/thumb_16005402_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/29327a0ad6810c3df80efb0fad4dcbc1b6d09d37.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.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\/0161\/06\/thumb_16005402_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/29327a0ad6810c3df80efb0fad4dcbc1b6d09d37.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14195740,duration:1536800,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=14195740&duration=1536800&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-02T23:19:59+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Reinigungsfirma trifft Kunst. Michelle und ihre Truppe werden von der exzentrischen Museumsdirektorin Frida Gro\u00df-Klein zu einem besonders heiklen Auftrag gerufen. Staatssekret\u00e4r Peter Hruska hat sich n\u00e4mlich angek\u00fcndigt, um \u00fcber die F\u00f6rderung des Museums zu bestimmen. Somit muss alles tiptop sein und \"Dreck.Weg.Sendracek\" macht sich an die Arbeit. Dann aber entdeckt Fernando sein kreatives Alter Ego, Zoe st\u00f6\u00dft sich an einem Kunstwerk und die pr\u00e4potente Art des Staatssekret\u00e4rs erregt die Gem\u00fcter, vor allem das von Michelle.\r\nBesetzung: 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), Adele Neuhauser (Direktorin Frida Gro\u00df-Klein), Lukas Spisser (Staatssekret\u00e4r Hruska), Wolfgang Oliver (Georg), u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1536, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk1NzQw", + "exact_duration": 1536800, + "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": "Wischen ist Macht: Ready Made", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14195740, + "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:00+02:00", + "killdate": "2024-05-21T00:27:00+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-10-02T23:50:02+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Ready-Made\/14195740", + "share_subject": "Wischen ist Macht: Ready Made vom 02.10.2023 um 23:19 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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Reinigungsfirma trifft Kunst. Michelle und ihre Truppe werden von der exzentrischen Museumsdirektorin Frida Gro\u00df-Klein zu einem besonders heiklen Auftrag gerufen. Staatssekret\u00e4r Peter Hruska hat sich n\u00e4mlich angek\u00fcndigt, um \u00fcber die F\u00f6rderung des Museums zu bestimmen. Somit muss alles tiptop sein und \"Dreck.Weg.Sendracek\" macht sich an die Arbeit. Dann aber entdeckt Fernando sein kreatives Alter Ego, Zoe st\u00f6\u00dft sich an einem Kunstwerk und die pr\u00e4potente Art des Staatssekret\u00e4rs erregt die Gem\u00fcter, vor allem das von Michelle.\r\nBesetzung: 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), Adele Neuhauser (Direktorin Frida Gro\u00df-Klein), Lukas Spisser (Staatssekret\u00e4r Hruska), Wolfgang Oliver (Georg), u.a.\r\nBildquelle: ORF\/ORF", + "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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Ready Made", + "type": "default", + "updated_at": "2024-01-04T09:32:09+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740" + }, + "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\/14195740\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" + }, + "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\/15977051" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852887" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357514" + } + }, + "_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:14195740,duration:1536800,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=14195740&duration=1536800&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-02T23:19:59+02:00", + "date_as_string": "Mo, 2.10.2023", + "vod_ressort": null, + "description": "Reinigungsfirma trifft Kunst. Michelle und ihre Truppe werden von der exzentrischen Museumsdirektorin Frida Gro\u00df-Klein zu einem besonders heiklen Auftrag gerufen. Staatssekret\u00e4r Peter Hruska hat sich n\u00e4mlich angek\u00fcndigt, um \u00fcber die F\u00f6rderung des Museums zu bestimmen. Somit muss alles tiptop sein und \"Dreck.Weg.Sendracek\" macht sich an die Arbeit. Dann aber entdeckt Fernando sein kreatives Alter Ego, Zoe st\u00f6\u00dft sich an einem Kunstwerk und die pr\u00e4potente Art des Staatssekret\u00e4rs erregt die Gem\u00fcter, vor allem das von Michelle.\r\nBesetzung: 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), Adele Neuhauser (Direktorin Frida Gro\u00df-Klein), Lukas Spisser (Staatssekret\u00e4r Hruska), Wolfgang Oliver (Georg), u.a.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "25:36 Min.", + "duration_seconds": 1536, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ3ODc3NQ==", + "episode_id": 14195740, + "exact_duration": 1536800, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Ready Made", + "id": 15478775, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:00+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15478775, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Ready-Made", + "videoduration": 1536, + "episodeduration": 1536, + "episodeid": 14195740, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-02T23:50:02+02: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-Ready-Made\/14195740\/Wischen-ist-Macht-Ready-Made\/15478775", + "share_subject": "Wischen ist Macht: Ready Made - Wischen ist Macht: Ready Made vom 02.10.2023 um 23:19 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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Ready Made", + "updated_at": "2024-01-04T09:32:09+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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775", + "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\/15478775" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" + }, + "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\/15977051" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478775\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852888" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478775\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478775\/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\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.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\/0160\/78\/thumb_15977051_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/5b3b6ad41d1548ef3a260a87c85bf5c3eac5c96e.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.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\/0160\/78\/thumb_15977051_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/5b3b6ad41d1548ef3a260a87c85bf5c3eac5c96e.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14195739,duration:1468920,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=14195739&duration=1468920&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-10-02T22:51:06+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken zu ihrer Schicht im Fu\u00dfballstadion an. Dort werden sie vom Verbandspr\u00e4sidenten Leopold H\u00fcbner auff\u00e4llig \u00fcberschw\u00e4nglich begr\u00fc\u00dft. Wie sich herausstellt, verdient dieser sich zu seinem mickrigen Funktion\u00e4rsgehalt noch etwas als Unternehmer dazu und m\u00f6chte in Michelles Firma investieren. Michelle ist nat\u00fcrlich begeistert, daber dann taucht ihre Erzfeindin und Putzfirmen-Konkurrentin Jennifer Plank auf. Zwischen den beiden entbrennt ein erbitterter Kampf um H\u00fcbners Geld und nebenbei haben die Firmenchefinnen auch noch eine private Rechnung miteinander offen.\r\nBesetzung: 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), Katharina Stra\u00dfer (Jennifer Plank), Peter Faerber (Leopold H\u00fcbner), Wolfgang Rauh (Luka), u.a.", + "drm_token": null, + "duration_seconds": 1468, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk1NzM5", + "exact_duration": 1468920, + "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": "Wischen ist Macht: Jausengegner", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14195739, + "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:00+02:00", + "killdate": "2024-05-21T00:27:00+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-10-02T23:20:01+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Jausengegner\/14195739", + "share_subject": "Wischen ist Macht: Jausengegner vom 02.10.2023 um 22:51 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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Michelle und ihr Team r\u00fccken zu ihrer Schicht im Fu\u00dfballstadion an. Dort werden sie vom Verbandspr\u00e4sidenten Leopold H\u00fcbner auff\u00e4llig \u00fcberschw\u00e4nglich begr\u00fc\u00dft. Wie sich herausstellt, verdient dieser sich zu seinem mickrigen Funktion\u00e4rsgehalt noch etwas als Unternehmer dazu und m\u00f6chte in Michelles Firma investieren. Michelle ist nat\u00fcrlich begeistert, daber dann taucht ihre Erzfeindin und Putzfirmen-Konkurrentin Jennifer Plank auf. Zwischen den beiden entbrennt ein erbitterter Kampf um H\u00fcbners Geld und nebenbei haben die Firmenchefinnen auch noch eine private Rechnung miteinander offen.\r\nBesetzung: 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), Katharina Stra\u00dfer (Jennifer Plank), Peter Faerber (Leopold H\u00fcbner), Wolfgang Rauh (Luka), u.a.", + "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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Jausengegner", + "type": "default", + "updated_at": "2024-01-04T09:31:43+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739" + }, + "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\/14195739\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" + }, + "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\/15977070" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852885" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357513" + } + }, + "_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:14195739,duration:1468920,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=14195739&duration=1468920&advertisingtags=", + "blackfades": [], + "episode_date": "2023-10-02T22:51:06+02:00", + "date_as_string": "Mo, 2.10.2023", + "vod_ressort": null, + "description": "Michelle und ihr Team r\u00fccken zu ihrer Schicht im Fu\u00dfballstadion an. Dort werden sie vom Verbandspr\u00e4sidenten Leopold H\u00fcbner auff\u00e4llig \u00fcberschw\u00e4nglich begr\u00fc\u00dft. Wie sich herausstellt, verdient dieser sich zu seinem mickrigen Funktion\u00e4rsgehalt noch etwas als Unternehmer dazu und m\u00f6chte in Michelles Firma investieren. Michelle ist nat\u00fcrlich begeistert, daber dann taucht ihre Erzfeindin und Putzfirmen-Konkurrentin Jennifer Plank auf. Zwischen den beiden entbrennt ein erbitterter Kampf um H\u00fcbners Geld und nebenbei haben die Firmenchefinnen auch noch eine private Rechnung miteinander offen.\r\nBesetzung: 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), Katharina Stra\u00dfer (Jennifer Plank), Peter Faerber (Leopold H\u00fcbner), Wolfgang Rauh (Luka), u.a.", + "drm_token": null, + "duration_as_string": "24:28 Min.", + "duration_seconds": 1468, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ3ODc3Mw==", + "episode_id": 14195739, + "exact_duration": 1468920, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Jausengegner", + "id": 15478773, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-05-21T00:27:00+02:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2023-12-27T10:00:00+01:00", + "livedate_extern": "2023-12-27T10:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15478773, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Jausengegner", + "videoduration": 1468, + "episodeduration": 1468, + "episodeid": 14195739, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-10-02T23:20:01+02: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-Jausengegner\/14195739\/Wischen-ist-Macht-Jausengegner\/15478773", + "share_subject": "Wischen ist Macht: Jausengegner - Wischen ist Macht: Jausengegner vom 02.10.2023 um 22:51 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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Jausengegner", + "updated_at": "2024-01-04T09:31:43+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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773", + "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\/15478773" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" + }, + "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\/15977070" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478773\/links" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852886" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478773\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478773\/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\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.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\/0160\/78\/thumb_15977070_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/cbef0bab4c92c6f28ea683d56c654bb0dc112b71.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.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\/0160\/78\/thumb_15977070_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/cbef0bab4c92c6f28ea683d56c654bb0dc112b71.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14194932,duration:1360520,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=14194932&duration=1360520&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-09-25T23:25:20+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Ein ukrainischer Gesch\u00e4ftsmann ist tot, und Michelle (Ursula Strauss) und ihr Team m\u00fcssen eine Extraschicht in der Bestattung schieben. Dort weist sie die exzentrische Leichenschminkerin Almut (Karin Lischka) in ihre Aufgaben ein, bevor sie f\u00fcrs Erste wieder verschwindet. Valentin (Manuel Sefciuc) ist \u00e4u\u00dferst unmotiviert, findet am Abend doch der ber\u00fcchtigte J\u00e4gerball statt, den er unbedingt noch besuchen m\u00f6chte. Fernando (Stefano Bernardin) hingegen l\u00e4uft trotz der morbiden Umgebung zu H\u00f6chstform auf, denn er ist gerade verliebt und m\u00f6chte Dichter werden. Mira (Zeynep Buyrac) trifft unterdessen beim Sargputzen auf ihren Cousin Oleg (Daniel Wagner), der Verbindungen zum toten Ukrainer hatte. Und bald schon wird Michelles ganzes Team unfreiwillig in Olegs kriminelle Machenschaft hineingezogen.", + "drm_token": null, + "duration_seconds": 1360, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk0OTMy", + "exact_duration": 1360520, + "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": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14194932, + "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-03-25T23:25:20+01:00", + "killdate": "2024-05-21T00:27:00+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-09-26T00:36:02+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Eine-Hand-waescht-die-andere\/14194932", + "share_subject": "Wischen ist Macht: Eine Hand w\u00e4scht die andere vom 25.09.2023 um 23:25 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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Ein ukrainischer Gesch\u00e4ftsmann ist tot, und Michelle (Ursula Strauss) und ihr Team m\u00fcssen eine Extraschicht in der Bestattung schieben. Dort weist sie die exzentrische Leichenschminkerin Almut (Karin Lischka) in ihre Aufgaben ein, bevor sie f\u00fcrs Erste wieder verschwindet. Valentin (Manuel Sefciuc) ist \u00e4u\u00dferst unmotiviert, findet am Abend doch der ber\u00fcchtigte J\u00e4gerball statt, den er unbedingt noch besuchen m\u00f6chte. Fernando (Stefano Bernardin) hingegen l\u00e4uft trotz der morbiden Umgebung zu H\u00f6chstform auf, denn er ist gerade verliebt und m\u00f6chte Dichter werden. Mira (Zeynep Buyrac) trifft unterdessen beim Sargputzen auf ihren Cousin Oleg (Daniel Wagner), der Verbindungen zum toten Ukrainer hatte. Und bald schon wird Michelles ganzes Team unfreiwillig in Olegs kriminelle Machenschaft hineingezogen.", + "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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", + "type": "default", + "updated_at": "2023-12-30T16:09:47+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932" + }, + "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\/14194932\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" + }, + "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\/16325278" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/850830" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357511" + } + }, + "_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:14194932,duration:1360520,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=14194932&duration=1360520&advertisingtags=", + "blackfades": [], + "episode_date": "2023-09-25T23:25:20+02:00", + "date_as_string": "Mo, 25.9.2023", + "vod_ressort": null, + "description": "Ein ukrainischer Gesch\u00e4ftsmann ist tot, und Michelle (Ursula Strauss) und ihr Team m\u00fcssen eine Extraschicht in der Bestattung schieben. Dort weist sie die exzentrische Leichenschminkerin Almut (Karin Lischka) in ihre Aufgaben ein, bevor sie f\u00fcrs Erste wieder verschwindet. Valentin (Manuel Sefciuc) ist \u00e4u\u00dferst unmotiviert, findet am Abend doch der ber\u00fcchtigte J\u00e4gerball statt, den er unbedingt noch besuchen m\u00f6chte. Fernando (Stefano Bernardin) hingegen l\u00e4uft trotz der morbiden Umgebung zu H\u00f6chstform auf, denn er ist gerade verliebt und m\u00f6chte Dichter werden. Mira (Zeynep Buyrac) trifft unterdessen beim Sargputzen auf ihren Cousin Oleg (Daniel Wagner), der Verbindungen zum toten Ukrainer hatte. Und bald schon wird Michelles ganzes Team unfreiwillig in Olegs kriminelle Machenschaft hineingezogen.", + "drm_token": null, + "duration_as_string": "22:40 Min.", + "duration_seconds": 1360, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzA5OQ==", + "episode_id": 14194932, + "exact_duration": 1360520, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", + "id": 15523099, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-03-25T23:25:20+01:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2100-01-01T00:00:00+01:00", + "livedate_extern": "2100-01-01T00:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15523099, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Eine-Hand-waescht-die-andere", + "videoduration": 1360, + "episodeduration": 1360, + "episodeid": 14194932, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-09-26T00:36:02+02: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-Eine-Hand-waescht-die-andere\/14194932\/Wischen-ist-Macht-Eine-Hand-waescht-die-andere\/15523099", + "share_subject": "Wischen ist Macht: Eine Hand w\u00e4scht die andere - Wischen ist Macht: Eine Hand w\u00e4scht die andere vom 25.09.2023 um 23:25 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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", + "updated_at": "2023-12-30T16:09:47+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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099", + "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\/15523099" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" + }, + "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\/16325278" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523099\/links" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523099\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523099\/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_16325277_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.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_16325278_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/ccb9f4dba1cc0d4a8e5d1fa24bdb7891514ecc90.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.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_16325278_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/ccb9f4dba1cc0d4a8e5d1fa24bdb7891514ecc90.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + }, + { + "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14194930,duration:1513040,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=14194930&duration=1513040&advertisingtags=", + "age_classification": "", + "audio_description_service_available": false, + "countdown": "136 Tage", + "date": "2023-09-25T22:55:42+02:00", + "delete_date": "2024-05-28 00:27:00", + "vod_ressort": null, + "description": "Gemeinsam mit ihrem verhaltensoriginellen Team bringt Ursula Strauss die schmutzigsten Geheimnisse und das reinste Durcheinander wieder zum Gl\u00e4nzen. \"Wischen ist Macht\" hei\u00dft es im Dacapo der Comedyserie, in der Ursula Strauss und ihr illustrer Putztrupp in 18 Folgen im Doppelpack f\u00fcr ihre ganz eigene Ordnung sorgen \u2013 und dabei feststellen, dass Schmutz ihr geringstes Problem ist. Gibt Michelle heute dem Finanzamt nicht mehr ihre Steuerunterlagen ab, kann sie ihre Firma zusperren. Bl\u00f6derweise muss aber auch noch in der Schule geputzt werden. Michelle zieht sich also zur\u00fcck, um an den Unterlagen zu arbeiten und macht Mira zu ihrer Stellvertreterin. Diese ist nur wenig an ihrer neuen Position interessiert und die Situation ger\u00e4t bald au\u00dfer Kontrolle. W\u00e4hrend Fernando versucht Sch\u00fclerinnen seinen neuen Vitality-Shake anzudrehen, ger\u00e4t Valentin mit seinem Erzfeind aneinander: Dem streitlustigen Schulwart Erich.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_seconds": 1513, + "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk0OTMw", + "exact_duration": 1513040, + "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": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", + "hide_in_new_section": false, + "hide_in_schedule_section": false, + "hide_latest_episodes": false, + "id": 14194930, + "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-03-25T22:55:42+01:00", + "killdate": "2024-05-21T00:27:00+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-09-26T00:32:01+02:00", + "secondary_genres": [], + "segments_complete": true, + "episodes_reference": "", + "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Dann-geh-ich-halt-in-Haefen\/14194930", + "share_subject": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen! vom 25.09.2023 um 22:55 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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_QXB.mp4\/manifest.mpd", + "is_adaptive_stream": true, + "is_drm_protected": false + } + ] + }, + "sub_headline": "Serie", + "teaser_text": "Gemeinsam mit ihrem verhaltensoriginellen Team bringt Ursula Strauss die schmutzigsten Geheimnisse und das reinste Durcheinander wieder zum Gl\u00e4nzen. \"Wischen ist Macht\" hei\u00dft es im Dacapo der Comedyserie, in der Ursula Strauss und ihr illustrer Putztrupp in 18 Folgen im Doppelpack f\u00fcr ihre ganz eigene Ordnung sorgen \u2013 und dabei feststellen, dass Schmutz ihr geringstes Problem ist. Gibt Michelle heute dem Finanzamt nicht mehr ihre Steuerunterlagen ab, kann sie ihre Firma zusperren. Bl\u00f6derweise muss aber auch noch in der Schule geputzt werden. Michelle zieht sich also zur\u00fcck, um an den Unterlagen zu arbeiten und macht Mira zu ihrer Stellvertreterin. Diese ist nur wenig an ihrer neuen Position interessiert und die Situation ger\u00e4t bald au\u00dfer Kontrolle. W\u00e4hrend Fernando versucht Sch\u00fclerinnen seinen neuen Vitality-Shake anzudrehen, ger\u00e4t Valentin mit seinem Erzfeind aneinander: Dem streitlustigen Schulwart Erich.\r\nBildquelle: ORF\/ORF", + "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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", + "type": "default", + "updated_at": "2023-12-30T16:09:52+01:00", + "video_type": "episode", + "youth_protection_type": "limited-20-06", + "_links": { + "self": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930" + }, + "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\/14194930\/segments" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/tags" + }, + "advertising_tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/advertising\/tags" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/links" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" + }, + "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\/16309574" + }, + "subtitle": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/850819" + }, + "related_episodes": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/related" + }, + "dds_item": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357510" + } + }, + "_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:14194930,duration:1513040,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=14194930&duration=1513040&advertisingtags=", + "blackfades": [], + "episode_date": "2023-09-25T22:55:42+02:00", + "date_as_string": "Mo, 25.9.2023", + "vod_ressort": null, + "description": "Gemeinsam mit ihrem verhaltensoriginellen Team bringt Ursula Strauss die schmutzigsten Geheimnisse und das reinste Durcheinander wieder zum Gl\u00e4nzen. \"Wischen ist Macht\" hei\u00dft es im Dacapo der Comedyserie, in der Ursula Strauss und ihr illustrer Putztrupp in 18 Folgen im Doppelpack f\u00fcr ihre ganz eigene Ordnung sorgen \u2013 und dabei feststellen, dass Schmutz ihr geringstes Problem ist. Gibt Michelle heute dem Finanzamt nicht mehr ihre Steuerunterlagen ab, kann sie ihre Firma zusperren. Bl\u00f6derweise muss aber auch noch in der Schule geputzt werden. Michelle zieht sich also zur\u00fcck, um an den Unterlagen zu arbeiten und macht Mira zu ihrer Stellvertreterin. Diese ist nur wenig an ihrer neuen Position interessiert und die Situation ger\u00e4t bald au\u00dfer Kontrolle. W\u00e4hrend Fernando versucht Sch\u00fclerinnen seinen neuen Vitality-Shake anzudrehen, ger\u00e4t Valentin mit seinem Erzfeind aneinander: Dem streitlustigen Schulwart Erich.\r\nBildquelle: ORF\/ORF", + "drm_token": null, + "duration_as_string": "25:13 Min.", + "duration_seconds": 1513, + "enabled": true, + "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMDI5NA==", + "episode_id": 14194930, + "exact_duration": 1513040, + "genre_id": 2703833, + "genre_title": "Film & Serie", + "right": "austria", + "focus": false, + "show_countdown": true, + "has_thumbnail": true, + "headline": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", + "id": 15520294, + "is_archive": false, + "is_drm_protected": false, + "jump_mark": false, + "jump_marks": [], + "killdate_extern": "2024-03-25T22:55:42+01:00", + "killdate": "2024-05-21T00:27:00+02:00", + "livedate": "2100-01-01T00:00:00+01:00", + "livedate_extern": "2100-01-01T00:00:00+01:00", + "SSA": { + "cliptype": "Sendung", + "videoid": 15520294, + "videopartid": "1_1", + "videocategory": "Film-Serie", + "videotitle": "Wischen-ist-Macht-Dann-geh-ich-halt-in-Haefen", + "videoduration": 1513, + "episodeduration": 1513, + "episodeid": 14194930, + "airdate": "2023-12-27T10:00:00+01:00", + "clipreleasetime": "2023-09-26T00:32:01+02: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-Dann-geh-ich-halt-in-Haefen\/14194930\/Wischen-ist-Macht-Dann-geh-ich-halt-in-Haefen\/15520294", + "share_subject": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen! - Wischen ist Macht: Dann geh ich halt in H\u00e4fen! vom 25.09.2023 um 22:55 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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/playlist.m3u8" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/playlist.m3u8" + } + ], + "hds": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.f4m" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.f4m" + } + ], + "smooth": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/Manifest" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/Manifest" + } + ], + "dash": [ + { + "quality_key": "Q6A", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.mpd" + }, + { + "quality_key": "Q8C", + "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.mpd" + } + ] + }, + "sprite_sources": [], + "title": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", + "updated_at": "2023-12-30T16:09:52+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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294", + "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\/15520294" + }, + "episode": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930" + }, + "image": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" + }, + "image16x9_with_logo": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" + }, + "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\/16309574" + }, + "links": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15520294\/links" + }, + "playlist": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15520294\/playlist" + }, + "tags": { + "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15520294\/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\/10\/thumb_16309573_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.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\/10\/thumb_16309574_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/497b5994fa3bb9e9a49d3665912ac7697c8c9fc0.jpeg" + } + }, + "dynamic_color": "#691f11" + } + } + } + ], + "image": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.jpeg" + } + }, + "dynamic_color": "#691f11" + }, + "image16x9_with_logo": { + "public_urls": { + "highlight_teaser": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.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\/10\/thumb_16309574_segment_2x3_highlight_teaser.jpeg" + }, + "player": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_player.jpeg" + }, + "list": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_list.jpeg" + }, + "small": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_small.jpeg" + }, + "reference": { + "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/497b5994fa3bb9e9a49d3665912ac7697c8c9fc0.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 From 0a316ace9358f62ccebc408c849e7f8ab2a2f357 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sat, 17 Feb 2024 19:17:59 +0100 Subject: [PATCH 02/21] moved to abstractPagedTask --- .../crawler/orfon/OrfOnBreadCrumsUrlDTO.java | 8 +- .../mserver/crawler/orfon/OrfOnCrawler.java | 110 +- .../orfon/json/OrfOnAZDeserializer.java | 10 +- .../orfon/json/OrfOnEpisodeDeserializer.java | 6 +- .../orfon/json/OrfOnEpisodesDeserializer.java | 3 +- .../OrfOnHistoryChildrenDeserializer.java | 12 +- .../orfon/json/OrfOnHistoryDeserializer.java | 8 +- .../OrfOnHistoryVideoItemDeserializer.java | 10 +- .../orfon/json/OrfOnScheduleDeserializer.java | 27 +- .../crawler/orfon/task/OrfOnAZTask.java | 53 +- .../crawler/orfon/task/OrfOnEpisodeTask.java | 24 +- .../crawler/orfon/task/OrfOnEpisodesTask.java | 20 +- .../orfon/task/OrfOnHistoryChildrenTask.java | 66 +- .../orfon/task/OrfOnHistoryVideoItemTask.java | 59 +- .../crawler/orfon/task/OrfOnPagedTask.java | 4 +- .../crawler/orfon/task/OrfOnScheduleTask.java | 38 +- src/test/resources/orfOn/children_1.json | 190 + src/test/resources/orfOn/schedule.json | 21475 ++++++++++++++++ 18 files changed, 21824 insertions(+), 299 deletions(-) create mode 100644 src/test/resources/orfOn/children_1.json create mode 100644 src/test/resources/orfOn/schedule.json diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java index a864b123a..90a8bd82e 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnBreadCrumsUrlDTO.java @@ -27,8 +27,10 @@ public void setBreadCrums(List breadCrums) { } public void setBreadCrumsPath(List breadCrums) { - breadCrums.addAll(getBreadCrums()); - setBreadCrums(breadCrums); + List fullPath = new ArrayList<>(); + fullPath.addAll(breadCrums); + fullPath.addAll(getBreadCrums()); + setBreadCrums(fullPath); } public boolean addBreadCrum(String value) { @@ -38,7 +40,7 @@ public boolean addBreadCrum(String value) { } return false; } - + @Override public boolean equals(final Object obj) { if (obj == null || getClass() != obj.getClass()) { diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index a7bcc4090..071ab4c64 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -4,10 +4,7 @@ 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.orfon.task.OrfOnAZTask; import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodeTask; import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodesTask; @@ -27,6 +24,7 @@ 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; @@ -50,59 +48,20 @@ public Sender getSender() { @Override protected RecursiveTask> createCrawlerTask() { - + Set allVideos = new HashSet<>(); try { - // Sendungen Verpasst - - - final ForkJoinTask> dayTask = forkJoinPool.submit(new OrfOnScheduleTask(this, createDayUrlsToCrawl())); - final Set dayTaskFilms = dayTask.get(); - final ForkJoinTask> episodesFromDaysTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(dayTaskFilms))); - final Set epsiodesFromDay = episodesFromDaysTask.get(); - - // - // - - final ForkJoinTask> letterTask = forkJoinPool.submit(new OrfOnAZTask(this, createAZUrlsToCrawl())); - final Set LetterTaskTopics = letterTask.get(); - final ForkJoinTask> videosFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(LetterTaskTopics))); - final Set videosFromTopics = videosFromTopicsTask.get(); - - // - // - - final ForkJoinTask> histroyTask = forkJoinPool.submit(new OrfOnHistoryTask(this, createHistoryUrlToCrawl())); - final Set historyChidrenUrls = histroyTask.get(); - // - final ForkJoinTask> historyChildrenTask = forkJoinPool.submit(new OrfOnHistoryChildrenTask(this, new ConcurrentLinkedQueue<>(historyChidrenUrls))); - final Set historyItemUrls = historyChildrenTask.get(); - // - final ForkJoinTask> historyItemTask = forkJoinPool.submit(new OrfOnHistoryVideoItemTask(this, new ConcurrentLinkedQueue<>(historyItemUrls))); - final Set historyEpisodesUrls = historyItemTask.get(); - // - final ForkJoinTask> historyEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(historyEpisodesUrls))); - final Set historyVideos = historyEpisodeTask.get(); - - /*LOG.debug("#######"); - for (OrfOnVideoInfoDTO e : historyVideos) { - LOG.debug("{} {} {} {}" , e.getId(), e.getTopic(), e.getTitle(), e.getVideoUrls()); - }*/ - + // Sendungen Verpasst (letzten 14 Tage) + // TAG > Episode > Episode2Film + //final Set epsiodesFromDay = processDayUrlsToCrawl(); + //allVideos.addAll(epsiodesFromDay); // - //printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), LetterTaskTopics.size()); - //getAndSetMaxCount(LetterTaskTopics.size()); + // Sendungen a-z + // Buchstabe > Episoden > Episode2Film + //final Set videosFromTopics = processAZUrlsToCrawl(); + //allVideos.addAll(videosFromTopics); // - /* - final ForkJoinTask> videos = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(null))); - final Set xx = videos.get(); - for (OrfOnVideoInfoDTO e : xx) { - LOG.debug("{} {} {} {}" , e.getId(), e.getTopic(), e.getTitle(), e.getTitleWithDate()); - } - */ - // - Set allVideos = new HashSet<>(); - allVideos.addAll(epsiodesFromDay); - allVideos.addAll(videosFromTopics); + // History (top categories) > children > + final Set historyVideos = processHistoryUrlToCrawl(); allVideos.addAll(historyVideos); // return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos)); @@ -113,29 +72,58 @@ protected RecursiveTask> createCrawlerTask() { return null; } - private Queue createDayUrlsToCrawl() { - final Queue dayUrlsToCrawl = new ConcurrentLinkedQueue<>(); + private Set processDayUrlsToCrawl() throws InterruptedException, ExecutionException { + final ForkJoinTask> dayTask = forkJoinPool.submit(new OrfOnScheduleTask(this, createDayUrlsToCrawl())); + final Set dayTaskFilms = dayTask.get(); + final ForkJoinTask> episodesFromDaysTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(dayTaskFilms))); + return episodesFromDaysTask.get(); + } + + 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 TopicUrlDTO(day,url)); + dayUrlsToCrawl.offer(new OrfOnBreadCrumsUrlDTO(day,url)); } return dayUrlsToCrawl; } - private Queue createAZUrlsToCrawl() { - final Queue letterUrlsToCrawl = new ConcurrentLinkedQueue<>(); + private Set processAZUrlsToCrawl() throws InterruptedException, ExecutionException { + final ForkJoinTask> letterTask = forkJoinPool.submit(new OrfOnAZTask(this, createAZUrlsToCrawl())); + final Set LetterTaskTopics = letterTask.get(); + final ForkJoinTask> videosFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(LetterTaskTopics))); + return videosFromTopicsTask.get(); + } + + + 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 TopicUrlDTO(String.valueOf(letter),url)); + letterUrlsToCrawl.offer(new OrfOnBreadCrumsUrlDTO(String.valueOf(letter),url)); } - // 0 + // 0 gibt es auch final String url = OrfOnConstants.AZ + "/0" + "?limit="+OrfOnConstants.PAGE_SIZE; - letterUrlsToCrawl.offer(new TopicUrlDTO("0",url)); + 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(); + // + final ForkJoinTask> historyChildrenTask = forkJoinPool.submit(new OrfOnHistoryChildrenTask(this, new ConcurrentLinkedQueue<>(historyChidrenUrls))); + final Set historyItemUrls = historyChildrenTask.get(); + // + final ForkJoinTask> historyItemTask = forkJoinPool.submit(new OrfOnHistoryVideoItemTask(this, new ConcurrentLinkedQueue<>(historyItemUrls))); + final Set historyEpisodesUrls = historyItemTask.get(); + // + final ForkJoinTask> historyEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(historyEpisodesUrls))); + return historyEpisodeTask.get(); + } + private Queue createHistoryUrlToCrawl() { final Queue history = new ConcurrentLinkedQueue<>(); history.offer(new OrfOnBreadCrumsUrlDTO("Base",OrfOnConstants.HISTORY)); 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 index a74635541..1250bb79f 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java @@ -4,7 +4,7 @@ import de.mediathekview.mserver.base.utils.JsonUtils; import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import java.lang.reflect.Type; import java.util.Optional; @@ -13,7 +13,7 @@ import org.apache.logging.log4j.Logger; -public class OrfOnAZDeserializer implements JsonDeserializer> { +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"}; @@ -21,12 +21,12 @@ public class OrfOnAZDeserializer implements JsonDeserializer deserialize( + public PagedElementListDTO deserialize( final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException { JsonObject jsonPage = jsonElement.getAsJsonObject(); // - PagedElementListDTO page = new PagedElementListDTO(); + PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // if (jsonPage.has(TAG_ITEMS[0]) && jsonPage.get(TAG_ITEMS[0]).isJsonObject() && @@ -36,7 +36,7 @@ public PagedElementListDTO deserialize( Optional id = JsonUtils.getElementValueAsString(topic, TAG_ITEM_ID); Optional url = JsonUtils.getElementValueAsString(topic, TAG_ITEM_EPISODES); if (id.isPresent() && url.isPresent()) { - page.addElement(new TopicUrlDTO(id.get(), url.get())); + page.addElement(new OrfOnBreadCrumsUrlDTO(id.get(), url.get())); } else { LOG.debug("No episodes found in item {}", id); } 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 index e523a0945..10b8f4568 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -64,8 +64,8 @@ public OrfOnVideoInfoDTO deserialize( ); //LOG.debug("{}",jsonElement ); - if (aFilm.getGeorestriction().isEmpty() || - aFilm.getVideoUrls().isEmpty()){ + if (aFilm.getVideoUrls().isEmpty()){ + LOG.debug("#####videoUrlEmpty#######"); LOG.debug("{} (id)", aFilm.getId().get()); LOG.debug("{} (genre_title)", JsonUtils.getElementValueAsString(jsonElement, "genre_title").get()); LOG.debug("{} (headline)", JsonUtils.getElementValueAsString(jsonElement, "headline").get()); @@ -108,7 +108,7 @@ private Optional> parseUrl(JsonElement jsonElement) { for (Map.Entry entry : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).entrySet()) { if (!"hlshdssmoothdashprogressive_download".contains(entry.getKey())) { - LOG.debug(" {} ", jsonElement); + LOG.debug("unkown video type {} ", jsonElement); } } 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 index 999827e4c..6bb69bb10 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -16,6 +16,7 @@ public class OrfOnEpisodesDeserializer implements JsonDeserializer deserialize( @@ -26,7 +27,7 @@ public PagedElementListDTO deserialize( PagedElementListDTO page = new PagedElementListDTO(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // - OrfOnEpisodeDeserializer itemDeserializer = new OrfOnEpisodeDeserializer(); + //OrfOnEpisodeDeserializer itemDeserializer = new OrfOnEpisodeDeserializer(); if (jsonPage.has(TAG_ITEMS[0]) && jsonPage.get(TAG_ITEMS[0]).isJsonObject() && jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().has(TAG_ITEMS[1]) && jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).isJsonArray()) { 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 index 123ef755e..fdacb0000 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -4,7 +4,7 @@ import de.mediathekview.mserver.base.utils.JsonUtils; import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import java.lang.reflect.Type; import java.util.Optional; @@ -13,7 +13,7 @@ import org.apache.logging.log4j.Logger; -public class OrfOnHistoryChildrenDeserializer implements JsonDeserializer> { +public class OrfOnHistoryChildrenDeserializer implements JsonDeserializer> { private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChildrenDeserializer.class); private String[] TAG_NEXT_PAGE = { "next" }; private String[] TAG_ITEM_ARRAY = { "_items" }; @@ -22,11 +22,11 @@ public class OrfOnHistoryChildrenDeserializer implements JsonDeserializer deserialize( + public PagedElementListDTO deserialize( final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException { // - PagedElementListDTO page = new PagedElementListDTO<>(); + PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); @@ -35,12 +35,12 @@ public PagedElementListDTO deserialize( Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); Optional url2 = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2); if (url.isPresent()) { - page.addElement(new TopicUrlDTO( + page.addElement(new OrfOnBreadCrumsUrlDTO( JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), url.get() )); } else if (url2.isPresent()) { - page.addElement(new TopicUrlDTO( + page.addElement(new OrfOnBreadCrumsUrlDTO( JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), url2.get() )); 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 index 4deefe125..326544e97 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java @@ -35,8 +35,8 @@ public PagedElementListDTO deserialize( Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); if (url.isPresent()) { page.addElement(new OrfOnBreadCrumsUrlDTO( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), - JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get() + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).orElse("EMPTY"), + url.get() )); } LOG.debug("{} {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL)); @@ -48,8 +48,8 @@ public PagedElementListDTO deserialize( Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); if (url.isPresent()) { page.addElement(new OrfOnBreadCrumsUrlDTO( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), - JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get() + JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).orElse("EMPTY"), + url.get() )); } LOG.debug("{} {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL)); 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 index 77275f3a7..e5d7723ff 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -4,7 +4,7 @@ import de.mediathekview.mserver.base.utils.JsonUtils; import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import java.lang.reflect.Type; import java.util.Optional; @@ -13,7 +13,7 @@ import org.apache.logging.log4j.Logger; -public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { +public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { private static final Logger LOG = LogManager.getLogger(OrfOnHistoryVideoItemDeserializer.class); private String[] TAG_NEXT_PAGE = { "next" }; private String[] TAG_ITEM_ARRAY = { "_items" }; @@ -21,11 +21,11 @@ public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer deserialize( + public PagedElementListDTO deserialize( final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException { // - PagedElementListDTO page = new PagedElementListDTO<>(); + PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); @@ -33,7 +33,7 @@ public PagedElementListDTO deserialize( for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); if (url.isPresent()) { - page.addElement(new TopicUrlDTO( + page.addElement(new OrfOnBreadCrumsUrlDTO( JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get() )); 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 index e0831bf58..119d9dbbe 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java @@ -2,36 +2,37 @@ import com.google.gson.*; -import de.mediathekview.mserver.crawler.basic.TopicUrlDTO; +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.HashSet; -import java.util.Set; +import java.util.Optional; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -public class OrfOnScheduleDeserializer implements JsonDeserializer> { +public class OrfOnScheduleDeserializer implements JsonDeserializer> { private static final Logger LOG = LogManager.getLogger(OrfOnScheduleDeserializer.class); private static final String TAG_FILM_NAME = "title"; private static final String TAG_FILM_ID = "id"; - // @Override - public Set deserialize( + public PagedElementListDTO deserialize( final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException { - Set collectIds = new HashSet(); + PagedElementListDTO collectIds = new PagedElementListDTO(); final JsonArray elements = jsonElement.getAsJsonArray(); for (JsonElement element : elements) { - String name = element.getAsJsonObject().get(TAG_FILM_NAME).getAsString(); - String id = element.getAsJsonObject().get(TAG_FILM_ID).getAsString(); - String url = OrfOnConstants.EPISODE + "/" + id; - LOG.debug("found {} {} {}", id, name, url); - TopicUrlDTO entry = new TopicUrlDTO(id,url); - collectIds.add(entry); + Optional name = JsonUtils.getElementValueAsString(element, TAG_FILM_NAME); + Optional id = JsonUtils.getElementValueAsString(element, TAG_FILM_ID); + if (id.isPresent()) { + final String url = OrfOnConstants.EPISODE + "/" + id.get(); + //LOG.debug("found {} {} {}", id, name, url); + 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 index 6283a41ce..8856e1e21 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnAZTask.java @@ -1,76 +1,39 @@ package de.mediathekview.mserver.crawler.orfon.task; import java.lang.reflect.Type; -import java.net.URI; -import java.util.Optional; import java.util.Queue; -import java.util.concurrent.ConcurrentLinkedQueue; - -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.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.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import de.mediathekview.mserver.crawler.orfon.json.OrfOnAZDeserializer; -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 OrfOnAZTask extends AbstractJsonRestTask, TopicUrlDTO> { +public class OrfOnAZTask extends OrfOnPagedTask { private static final long serialVersionUID = 1L; - private static final Logger LOG = LogManager.getLogger(OrfOnAZTask.class); - public OrfOnAZTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); - } + public OrfOnAZTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } @Override - protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { return new OrfOnAZDeserializer(); } @Override protected Type getType() { - return new TypeToken>() {}.getType(); - } - - @Override - protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { - final Optional> subpageCrawler; - if (aResponseObj.getNextPage().isPresent()) { - final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); - nextPageLinks.add(new TopicUrlDTO("", aResponseObj.getNextPage().get())); - subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); - subpageCrawler.get().fork(); - LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); - } else { - subpageCrawler = Optional.empty(); - } - - taskResults.addAll(aResponseObj.getElements()); - subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + return new TypeToken>() {}.getType(); } @Override - protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { return new OrfOnAZTask(crawler, aElementsToProcess); } - - @Override - protected void handleHttpError(TopicUrlDTO 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/OrfOnEpisodeTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java index 1197630f2..626c4a450 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -12,7 +12,7 @@ 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.TopicUrlDTO; +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; @@ -20,16 +20,16 @@ // extends AbstractRestTask // return T Class from this task, desirialisation of class R , D , Reasearch in this url -public class OrfOnEpisodeTask extends AbstractJsonRestTask { +public class OrfOnEpisodeTask extends AbstractJsonRestTask { private static final long serialVersionUID = 1L; private static final Logger LOG = LogManager.getLogger(OrfOnEpisodeTask.class); - public OrfOnEpisodeTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + public OrfOnEpisodeTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); } @Override - protected JsonDeserializer getParser(TopicUrlDTO aDTO) { + protected JsonDeserializer getParser(OrfOnBreadCrumsUrlDTO aDTO) { return new OrfOnEpisodeDeserializer(); } @@ -39,31 +39,31 @@ protected Type getType() { } @Override - protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, TopicUrlDTO aDTO) { - if (!aResponseObj.getTitle().isPresent()) { + protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { + if (aResponseObj.getTitle().isEmpty() && aResponseObj.getTitleWithDate().isEmpty()) { LOG.debug("Missing title for {}", aDTO); return; } - if (aResponseObj.getTopic().isPresent()) { + if (aResponseObj.getTopic().isEmpty()) { LOG.debug("Missing topic for {}", aDTO); return; } - if (aResponseObj.getVideoUrls().isPresent()) { + if (aResponseObj.getVideoUrls().isEmpty()) { LOG.debug("Missing videoUrls for {}", aDTO); return; } - LOG.debug(" bread crums {}", aDTO.getTopic() + " # " + aResponseObj.getTitle().get()); + LOG.debug(" bread crums {}", String.join("|", aDTO.getBreadCrums()) + " # " + aResponseObj.getTitle().get()); taskResults.add(aResponseObj); } @Override - protected AbstractRecursiveConverterTask createNewOwnInstance( - Queue aElementsToProcess) { + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { return new OrfOnEpisodeTask(crawler, aElementsToProcess); } @Override - protected void handleHttpError(TopicUrlDTO dto, URI url, Response response) { + protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response response) { crawler.printErrorMessage(); LOG.fatal( "A HTTP error {} occurred when getting REST information from: \"{}\".", 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 index df870ca91..6bffe5628 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -16,7 +16,7 @@ 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.basic.TopicUrlDTO; +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.OrfOnEpisodesDeserializer; @@ -24,16 +24,16 @@ // extends AbstractRestTask // return T Class from this task, desirialisation of class R , D , Reasearch in this url -public class OrfOnEpisodesTask extends AbstractJsonRestTask, TopicUrlDTO> { +public class OrfOnEpisodesTask extends AbstractJsonRestTask, OrfOnBreadCrumsUrlDTO> { private static final long serialVersionUID = 1L; private static final Logger LOG = LogManager.getLogger(OrfOnEpisodesTask.class); - public OrfOnEpisodesTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + public OrfOnEpisodesTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); } @Override - protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { return new OrfOnEpisodesDeserializer(); } @@ -43,11 +43,11 @@ protected Type getType() { } @Override - protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { - final Optional> subpageCrawler; + protected void postProcessing(PagedElementListDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { + final Optional> subpageCrawler; if (aResponseObj.getNextPage().isPresent()) { - final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); - nextPageLinks.add(new TopicUrlDTO("", aResponseObj.getNextPage().get())); + final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); + nextPageLinks.add(new OrfOnBreadCrumsUrlDTO("", aResponseObj.getNextPage().get())); subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); subpageCrawler.get().fork(); LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); @@ -60,13 +60,13 @@ protected void postProcessing(PagedElementListDTO aResponseOb } @Override - protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { return new OrfOnEpisodesTask(crawler, aElementsToProcess); } @Override - protected void handleHttpError(TopicUrlDTO dto, URI url, Response response) { + protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response response) { crawler.printErrorMessage(); LOG.fatal( "A HTTP error {} occurred when getting REST information from: \"{}\".", 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 index d2c316bfb..2b7dafe54 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java @@ -1,89 +1,57 @@ package de.mediathekview.mserver.crawler.orfon.task; import java.lang.reflect.Type; -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 com.google.gson.JsonDeserializer; import com.google.gson.reflect.TypeToken; 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.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryChildrenDeserializer; -import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryDeserializer; -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 OrfOnHistoryChildrenTask extends AbstractJsonRestTask, TopicUrlDTO> { +public class OrfOnHistoryChildrenTask extends OrfOnPagedTask { private static final long serialVersionUID = 1L; - private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChildrenTask.class); - public OrfOnHistoryChildrenTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + public OrfOnHistoryChildrenTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); } @Override - protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { return new OrfOnHistoryChildrenDeserializer(); } @Override protected Type getType() { - return new TypeToken>() {}.getType(); + return new TypeToken>() {}.getType(); } @Override - protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { - for (TopicUrlDTO childOrVideo : aResponseObj.getElements()) { - if (childOrVideo.getUrl().endsWith("children")) { - final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); - nextPageLinks.add(childOrVideo); - AbstractRecursiveConverterTask resolveChildren = createNewOwnInstance(nextPageLinks); + protected void postProcessingElements(Set elements, OrfOnBreadCrumsUrlDTO originalDTO) { + for (OrfOnBreadCrumsUrlDTO element : elements) { + if (element.getUrl().endsWith("children")) { + final Queue moreContentOnNewPage = new ConcurrentLinkedQueue<>(); + moreContentOnNewPage.add(element); + AbstractRecursiveConverterTask resolveChildren = createNewOwnInstance(moreContentOnNewPage); resolveChildren.fork(); taskResults.addAll(resolveChildren.join()); } else { - taskResults.add(new TopicUrlDTO(aDTO.getTopic() + " # " + childOrVideo.getTopic(), childOrVideo.getUrl() + "?limit=99")); - //taskResults.add(childOrVideo); + element.setBreadCrumsPath(originalDTO.getBreadCrums()); + taskResults.add(element); } } - //taskResults.addAll(aResponseObj.getElements()); - // - final Optional> subpageCrawler; - if (aResponseObj.getNextPage().isPresent()) { - final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); - nextPageLinks.add(new TopicUrlDTO(aDTO.getTopic(), aResponseObj.getNextPage().get())); - subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); - subpageCrawler.get().fork(); - LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); - } else { - subpageCrawler = Optional.empty(); - } - subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); } - + @Override - protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { return new OrfOnHistoryChildrenTask(crawler, aElementsToProcess); } - - @Override - protected void handleHttpError(TopicUrlDTO 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/OrfOnHistoryVideoItemTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java index 7289f7338..684270f3d 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryVideoItemTask.java @@ -1,82 +1,39 @@ package de.mediathekview.mserver.crawler.orfon.task; import java.lang.reflect.Type; -import java.net.URI; -import java.util.Optional; import java.util.Queue; -import java.util.concurrent.ConcurrentLinkedQueue; - -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.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.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; -import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryChildrenDeserializer; -import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryDeserializer; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import de.mediathekview.mserver.crawler.orfon.json.OrfOnHistoryVideoItemDeserializer; -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 OrfOnHistoryVideoItemTask extends AbstractJsonRestTask, TopicUrlDTO> { +public class OrfOnHistoryVideoItemTask extends OrfOnPagedTask { private static final long serialVersionUID = 1L; - private static final Logger LOG = LogManager.getLogger(OrfOnHistoryVideoItemTask.class); - public OrfOnHistoryVideoItemTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); - } + public OrfOnHistoryVideoItemTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); + } @Override - protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { return new OrfOnHistoryVideoItemDeserializer(); } @Override protected Type getType() { - return new TypeToken>() {}.getType(); - } - - @Override - protected void postProcessing(PagedElementListDTO aResponseObj, TopicUrlDTO aDTO) { - for (TopicUrlDTO t : aResponseObj.getElements()) { - taskResults.add(new TopicUrlDTO(aDTO.getTopic() + " # " + t.getTopic(), t.getUrl())); - } - - //taskResults.addAll(aResponseObj.getElements()); - - final Optional> subpageCrawler; - if (aResponseObj.getNextPage().isPresent()) { - final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); - nextPageLinks.add(new TopicUrlDTO(aDTO.getTopic(), aResponseObj.getNextPage().get())); - subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); - subpageCrawler.get().fork(); - LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); - } else { - subpageCrawler = Optional.empty(); - } - subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + return new TypeToken>() {}.getType(); } @Override - protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { return new OrfOnHistoryVideoItemTask(crawler, aElementsToProcess); } - - @Override - protected void handleHttpError(TopicUrlDTO 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/OrfOnPagedTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java index 2f60c8f8f..6e798e88f 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java @@ -22,8 +22,8 @@ // 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; - private final Logger LOG = LogManager.getLogger(this.getClass()); - private Optional> nextPageTask = Optional.empty(); + protected final Logger LOG = LogManager.getLogger(this.getClass()); + protected Optional> nextPageTask = Optional.empty(); public OrfOnPagedTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); 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 index a77126d0f..58ada48cd 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnScheduleTask.java @@ -1,36 +1,30 @@ package de.mediathekview.mserver.crawler.orfon.task; import java.lang.reflect.Type; -import java.net.URI; import java.util.Queue; import java.util.Set; -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.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.basic.TopicUrlDTO; -import de.mediathekview.mserver.crawler.orfon.OrfOnConstants; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import de.mediathekview.mserver.crawler.orfon.json.OrfOnScheduleDeserializer; -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 OrfOnScheduleTask extends AbstractJsonRestTask, TopicUrlDTO> { - private static final long serialVersionUID = 1L; - private static final Logger LOG = LogManager.getLogger(OrfOnScheduleTask.class); +public class OrfOnScheduleTask extends OrfOnPagedTask { + private static final long serialVersionUID = -2556623295745879044L; - public OrfOnScheduleTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + public OrfOnScheduleTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs); } @Override - protected JsonDeserializer> getParser(TopicUrlDTO aDTO) { + protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { return new OrfOnScheduleDeserializer(); } @@ -40,23 +34,9 @@ protected Type getType() { } @Override - protected void postProcessing(Set aResponseObj, TopicUrlDTO aDTO) { - taskResults.addAll(aResponseObj); - } - - @Override - protected AbstractRecursiveConverterTask createNewOwnInstance( - Queue aElementsToProcess) { + protected AbstractRecursiveConverterTask createNewOwnInstance( + Queue aElementsToProcess) { return new OrfOnScheduleTask(crawler, aElementsToProcess); } - @Override - protected void handleHttpError(TopicUrlDTO 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/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/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 From 8273e69d6799a3979dfb34fdd928de72f2294819 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sat, 17 Feb 2024 20:28:42 +0100 Subject: [PATCH 03/21] remove debug src --- .../base/utils/FilmlistDebugHelper.java | 111 ------------- .../ArdMediaArrayToDownloadUrlsConverter.java | 3 +- .../tasks/NexxCloudSessionInitiationTask.java | 4 +- .../mserver/crawler/CompareFilmlistsTest.java | 148 ------------------ 4 files changed, 3 insertions(+), 263 deletions(-) delete mode 100644 src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java diff --git a/src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java b/src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java deleted file mode 100644 index 92bbae310..000000000 --- a/src/main/java/de/mediathekview/mserver/base/utils/FilmlistDebugHelper.java +++ /dev/null @@ -1,111 +0,0 @@ -package de.mediathekview.mserver.base.utils; - -import java.util.ArrayList; -import java.util.Set; - -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mlib.daten.Filmlist; -import de.mediathekview.mlib.daten.Resolution; -import de.mediathekview.mserver.crawler.kika.KikaApiCrawler; - -public class FilmlistDebugHelper { - private static final Logger LOG = LogManager.getLogger(FilmlistDebugHelper.class); - - - - public static Film getFilmFromSet(Set base, Film searchFilm) { - for (Film e : base) { - if (e.equals(searchFilm)) { - return e; - } - } - return null; - } - - public static void printFilmlistForSender(Filmlist list, String sender, boolean printFullDetails) { - list.getFilms().values().stream().forEach( e -> { - if (e.getSenderName().equalsIgnoreCase(sender)) { - if (printFullDetails) { - LOG.debug("{} {} {}", e.getTitel(), e.getThema(), e); - } else { - LOG.debug("{} {}", e.getTitel(), e.getThema()); - } - } - }); - } - - public static void printFilmlistForThema(Filmlist list, String thema, boolean printFullDetails) { - list.getFilms().values().stream().forEach( e -> { - if (e.getThema().equalsIgnoreCase(thema)) { - if (printFullDetails) { - LOG.debug("{} {} {} {}", e.getSenderName(), e.getTitel(), e.getThema(), e); - } else { - LOG.debug("{} {} {}", e.getSenderName(), e.getTitel(), e.getThema()); - } - } - }); - } - - - - - public static void compareFilmlist(Filmlist aFilmlist, Filmlist bFilmlist) { - ArrayList bFilms = new ArrayList<>(bFilmlist.getFilms().values()); - aFilmlist.getFilms().values().forEach( f -> { - if (bFilms.indexOf(f) == -1) { - LOG.info("Missing Film in source list"); - LOG.info(f.toString()); - } else { - Film expectedFilm = bFilms.get(bFilms.indexOf(f)); - compare(f, expectedFilm); - } - }); - ArrayList aFilms = new ArrayList<>(aFilmlist.getFilms().values()); - bFilms.forEach( f -> { - if (aFilms.indexOf(f) == -1) { - LOG.info("Missing Film in target list"); - LOG.info(f.toString()); - } - }); - } - - private static void compare(Film aFilm, Film bFilm) { - String error = ""; - if (!aFilm.getSenderName().equalsIgnoreCase(bFilm.getSenderName())) { - error = "Incorrect Sender"; - } else if (!aFilm.getTitel().equalsIgnoreCase(bFilm.getTitel())){ - error = "Incorrect Title"; - } else if (!aFilm.getThema().equalsIgnoreCase(bFilm.getThema())){ - error = "Incorrect Topic"; - } else if (!aFilm.getDuration().equals(bFilm.getDuration())){ - error = "Incorrect Duration"; - } else if (!aFilm.getBeschreibung().equalsIgnoreCase(bFilm.getBeschreibung())){ - error = "Incorrect Description"; - } else if (!aFilm.getWebsite().toString().equalsIgnoreCase(bFilm.getWebsite().toString())){ - error = "Incorrect website"; - } else if (!aFilm.getTime().equals(bFilm.getTime())){ - error = "Incorrect Time"; - } else if (!aFilm.getSubtitles().equals(bFilm.getSubtitles())){ - error = "Incorrect subtitle"; - } else if (bFilm.getUrl(Resolution.SMALL) != null && - !aFilm.getUrl(Resolution.SMALL).toString().equalsIgnoreCase(bFilm.getUrl(Resolution.SMALL).toString())) { - error = "URL SMALL"; - } else if (bFilm.getUrl(Resolution.NORMAL) != null && - !aFilm.getUrl(Resolution.NORMAL).toString().equalsIgnoreCase(bFilm.getUrl(Resolution.NORMAL).toString())) { - error = "URL NORMAL"; - } else if (bFilm.getUrl(Resolution.HD) != null && - !aFilm.getUrl(Resolution.HD).toString().equalsIgnoreCase(bFilm.getUrl(Resolution.HD).toString())) { - error = "URL HD"; - } - // - if (error != "") { - LOG.info(error); - LOG.info(aFilm.toString()); - LOG.info(bFilm.toString()); - } - } - -} diff --git a/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java b/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java index 70710a283..d7bd39ad1 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java +++ b/src/main/java/de/mediathekview/mserver/crawler/ard/json/ArdMediaArrayToDownloadUrlsConverter.java @@ -145,8 +145,7 @@ private static Resolution getQualityForNumber(final int qualityIndicator) { case 1 -> Resolution.SMALL; case 3, 4 -> Resolution.HD; case 5 -> Resolution.UHD; - case 2 -> Resolution.NORMAL; - default -> Resolution.NORMAL; + case 2, default -> Resolution.NORMAL; }; } diff --git a/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java b/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java index 04e60f201..95fb98511 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/funk/tasks/NexxCloudSessionInitiationTask.java @@ -36,7 +36,7 @@ public NexxCloudSessionInitiationTask(final AbstractCrawler aCrawler) { @Override public Long call() { final Gson gson = createGson(); -/* + try(final Client client = createClient()) { final WebTarget target = client.target(FunkUrls.NEXX_CLOUD_SESSION_INIT.getAsString(crawler.getRuntimeConfig())); @@ -55,7 +55,7 @@ public Long call() { response.getStatus()); } } - }*/ + } return null; } diff --git a/src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java b/src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java deleted file mode 100644 index 0fd55c3bb..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/CompareFilmlistsTest.java +++ /dev/null @@ -1,148 +0,0 @@ -package de.mediathekview.mserver.crawler; - -import de.mediathekview.mlib.daten.Film; -import de.mediathekview.mlib.daten.Filmlist; -import de.mediathekview.mlib.daten.Resolution; -import de.mediathekview.mlib.filmlisten.reader.FilmlistOldFormatReader; -import de.mediathekview.mlib.filmlisten.writer.FilmlistOldFormatWriter; - -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; -import org.junit.jupiter.api.Test; - -import com.google.common.base.Objects; - -import static org.junit.jupiter.api.Assertions.assertTrue; - - -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.Optional; - - - -public class CompareFilmlistsTest { - private static final Logger LOG = LogManager.getLogger(CompareFilmlistsTest.class); - private int fullmatch = 0; - private int missingLeft = 0; - private int missingRight = 0; - private int diff = 0; - - - @Test - void readFilmlistOldFormatIncludingBrokenRecords() - throws IOException { - // - - if (false) { - return; - } - - String aList = "C:/Users/steph/git/MServer/target/filmlists/filmliste_old.json"; - String bList = "C:/Users/steph/git2/MServer/dist/filmlisten/filme.json"; - ClassLoader classLoader = getClass().getClassLoader(); - final Path aListPath = new File(aList).toPath(); - Optional aFilmlist = new FilmlistOldFormatReader().read(new FileInputStream(aListPath.toString())); - assertTrue(aFilmlist.isPresent()); - final Path bListPath = new File(bList).toPath(); - Optional bFilmlist = new FilmlistOldFormatReader().read(new FileInputStream(bListPath.toString())); - assertTrue(bFilmlist.isPresent()); - // - ArrayList bFilms = new ArrayList<>(bFilmlist.get().getFilms().values()); - aFilmlist.get().getFilms().values().forEach( f -> { - Film target = index(bFilms, f); - if (target != null) { - compare(f, target); - } - }); - aFilmlist.get().getFilms().values().forEach( f -> { - if (index(bFilms, f) == null) { - LOG.info("Missing Film in source list"); - LOG.info(f.toString()); - missingLeft++; - } - }); - ArrayList aFilms = new ArrayList<>(aFilmlist.get().getFilms().values()); - bFilms.forEach( f -> { - Film target = index(aFilms, f); - if (target == null) { - LOG.info("Missing Film in target list"); - LOG.info(f.toString()); - missingRight++; - } - }); - new FilmlistOldFormatWriter().write(aFilmlist.get(), Path.of("c:/tmp/aFilmlist.json")); - new FilmlistOldFormatWriter().write(bFilmlist.get(), Path.of("c:/tmp/bFilmlist.json")); - // - LOG.info("Matching: {} MissingLeft: {} MissingRight: {} Diff: {}", fullmatch, missingLeft, missingRight, diff); - } - - private void compare(Film aFilm, Film bFilm) { - String error = ""; - if (!aFilm.getSenderName().equalsIgnoreCase(bFilm.getSenderName())) { - error += "Incorrect Sender"; - } - if (!aFilm.getTitel().equalsIgnoreCase(bFilm.getTitel())){ - error += "Incorrect Title"; - } - if (!aFilm.getThema().equalsIgnoreCase(bFilm.getThema())){ - error += "Incorrect Topic"; - } - if (!aFilm.getDuration().equals(bFilm.getDuration())){ - error += "Incorrect Duration"; - } - if (!aFilm.getBeschreibung().equalsIgnoreCase(bFilm.getBeschreibung())) { - // new parser cuts out last char - if (aFilm.getBeschreibung().length() > 70 && bFilm.getBeschreibung().length() > 70 && - !aFilm.getBeschreibung().substring(1,aFilm.getBeschreibung().length()-19).equalsIgnoreCase(bFilm.getBeschreibung().substring(1,bFilm.getBeschreibung().length()-18))){ - error += "Incorrect Description"; - } else if (aFilm.getBeschreibung().length() > 20 && bFilm.getBeschreibung().length() > 20 && - !aFilm.getBeschreibung().substring(1,20).equalsIgnoreCase(bFilm.getBeschreibung().substring(1,20))){ - error += "Incorrect Description"; - } - } - if (!aFilm.getWebsite().toString().equalsIgnoreCase(bFilm.getWebsite().toString())){ - error += "Incorrect website"; - } - if (!aFilm.getTime().equals(bFilm.getTime())){ - error += "Incorrect Time"; - } - if (!aFilm.getSubtitles().equals(bFilm.getSubtitles())){ - error += "Incorrect subtitle"; - } - if (!Objects.equal(bFilm.getUrl(Resolution.SMALL), bFilm.getUrl(Resolution.SMALL))) { - error += "URL SMALL"; - } - if (!Objects.equal(bFilm.getUrl(Resolution.NORMAL), bFilm.getUrl(Resolution.NORMAL))) { - error += "URL NORMAL"; - } - if (!Objects.equal(bFilm.getUrl(Resolution.HD), bFilm.getUrl(Resolution.HD))) { - error += "URL HD"; - } - // - if (error != "") { - LOG.info(error); - LOG.info(aFilm.toString()); - LOG.info(bFilm.toString()); - diff++; - } else { - fullmatch++; - } - } - - private static Film index(ArrayList list, Film aFilm) { - for (Film e : list) { - if (e.getSenderName().equalsIgnoreCase(aFilm.getSenderName()) && - e.getTitel().equalsIgnoreCase(aFilm.getTitel()) && - e.getThema().equalsIgnoreCase(aFilm.getThema()) && - e.getTime().equals(aFilm.getTime())) { - return e; - } - } - return null; -} - -} From 7e6ef2cc723d07b958340afab855e1c6e1f75f9a Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sat, 17 Feb 2024 21:55:21 +0100 Subject: [PATCH 04/21] proper topic for history episodes --- .../mserver/crawler/orfon/OrfOnConstants.java | 3 + .../mserver/crawler/orfon/OrfOnCrawler.java | 8 +- .../crawler/orfon/OrfOnVideoInfoDTO.java | 3 + .../orfon/json/OrfOnEpisodeDeserializer.java | 24 +- .../OrfOnHistoryChildrenDeserializer.java | 27 +- .../orfon/json/OrfOnHistoryDeserializer.java | 43 +- .../OrfOnHistoryVideoItemDeserializer.java | 24 +- .../crawler/orfon/task/OrfOnEpisodeTask.java | 9 +- .../orfon/task/OrfOnHistoryChildrenTask.java | 7 +- src/test/resources/orfOn/videoItems_1.json | 1582 +++++++++++++++++ 10 files changed, 1670 insertions(+), 60 deletions(-) create mode 100644 src/test/resources/orfOn/videoItems_1.json diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java index d34e17721..d1e9633a9 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java @@ -17,4 +17,7 @@ public final class OrfOnConstants { // 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 index 071ab4c64..78ddeb1fb 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -52,13 +52,13 @@ protected RecursiveTask> createCrawlerTask() { try { // Sendungen Verpasst (letzten 14 Tage) // TAG > Episode > Episode2Film - //final Set epsiodesFromDay = processDayUrlsToCrawl(); - //allVideos.addAll(epsiodesFromDay); + final Set epsiodesFromDay = processDayUrlsToCrawl(); + allVideos.addAll(epsiodesFromDay); // // Sendungen a-z // Buchstabe > Episoden > Episode2Film - //final Set videosFromTopics = processAZUrlsToCrawl(); - //allVideos.addAll(videosFromTopics); + final Set videosFromTopics = processAZUrlsToCrawl(); + allVideos.addAll(videosFromTopics); // // History (top categories) > children > final Set historyVideos = processHistoryUrlToCrawl(); diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java index fc876d5e4..dab5e2d96 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java @@ -69,6 +69,9 @@ public Optional getTitleWithDate() { public Optional getTopic() { return topic; } + public void setTopic(Optional newTopic) { + topic = newTopic; + } public Optional getAired() { return aired; } 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 index 10b8f4568..c3cc60472 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -66,18 +66,18 @@ public OrfOnVideoInfoDTO deserialize( if (aFilm.getVideoUrls().isEmpty()){ LOG.debug("#####videoUrlEmpty#######"); - LOG.debug("{} (id)", aFilm.getId().get()); - LOG.debug("{} (genre_title)", JsonUtils.getElementValueAsString(jsonElement, "genre_title").get()); - LOG.debug("{} (headline)", JsonUtils.getElementValueAsString(jsonElement, "headline").get()); - LOG.debug("{} (profile_title*)", JsonUtils.getElementValueAsString(jsonElement, "profile_title").get()); - LOG.debug("{} (title*)", JsonUtils.getElementValueAsString(jsonElement, "title").get()); - LOG.debug("{} (sub_headline)", JsonUtils.getElementValueAsString(jsonElement, "sub_headline").get()); - LOG.debug("{} (share_subject)", JsonUtils.getElementValueAsString(jsonElement, "share_subject").get()); - LOG.debug("{} (TAG_RIGHT)", parseGeoLocations(JsonUtils.getElementValueAsString(jsonElement, TAG_RIGHT))); - LOG.debug("{} (url)", parseUrl(jsonElement)); - LOG.debug("{} (segments)", JsonUtils.getElementValueAsString(jsonElement, TAG_SEGMENTS)); - LOG.debug("{}",jsonElement ); - LOG.debug("############"); + LOG.debug("{} (id)", aFilm.getId().get()); + LOG.debug("{} (genre_title)", JsonUtils.getElementValueAsString(jsonElement, "genre_title").get()); + LOG.debug("{} (headline)", JsonUtils.getElementValueAsString(jsonElement, "headline").get()); + LOG.debug("{} (profile_title*)", JsonUtils.getElementValueAsString(jsonElement, "profile_title").get()); + LOG.debug("{} (title*)", JsonUtils.getElementValueAsString(jsonElement, "title").get()); + LOG.debug("{} (sub_headline)", JsonUtils.getElementValueAsString(jsonElement, "sub_headline").get()); + LOG.debug("{} (share_subject)", JsonUtils.getElementValueAsString(jsonElement, "share_subject").get()); + LOG.debug("{} (TAG_RIGHT)", parseGeoLocations(JsonUtils.getElementValueAsString(jsonElement, TAG_RIGHT))); + LOG.debug("{} (url)", parseUrl(jsonElement)); + LOG.debug("{} (segments)", JsonUtils.getElementValueAsString(jsonElement, TAG_SEGMENTS)); + LOG.debug("{}",jsonElement ); + LOG.debug("############"); } // "genre_title": "Wetter", // "headline": "Wetter Tirol vom 05.01.2024", 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 index fdacb0000..50ddbc05a 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -5,6 +5,7 @@ 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; @@ -32,32 +33,32 @@ public PagedElementListDTO deserialize( Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { - Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - Optional url2 = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2); - if (url.isPresent()) { + Optional videoItemUrl = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + Optional childrenUrl = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2); + Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + if (videoItemUrl.isPresent()) { page.addElement(new OrfOnBreadCrumsUrlDTO( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), - url.get() + title.orElse("MISSING TITLE"), + OrfOnConstants.createMaxLimmitUrl(videoItemUrl.get()) )); - } else if (url2.isPresent()) { + } else if (childrenUrl.isPresent()) { page.addElement(new OrfOnBreadCrumsUrlDTO( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), - url2.get() + title.orElse("MISSING TITLE"), + OrfOnConstants.createMaxLimmitUrl(childrenUrl.get()) )); } else { LOG.info("No video_items or children tag found {}",JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE) ); } - LOG.debug("{} - {} - {}", + /* + LOG.debug("OrfOnHistoryChildrenDeserializer {} - {} - {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL), - JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2)); + JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2));*/ } } // 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 index 326544e97..b30af0071 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java @@ -31,34 +31,35 @@ public PagedElementListDTO deserialize( // Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_TOP); if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { - for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { - Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - if (url.isPresent()) { - page.addElement(new OrfOnBreadCrumsUrlDTO( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).orElse("EMPTY"), - url.get() - )); - } - LOG.debug("{} {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL)); - } + page.addElements(parseSection(itemArrayTop.get().getAsJsonArray()).getElements()); } + // Optional itemArrayButtom = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_BUTTOM); - if (itemArrayButtom.isPresent() &&itemArrayButtom.get().isJsonArray()) { - for (JsonElement item : itemArrayButtom.get().getAsJsonArray()) { - Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - if (url.isPresent()) { - page.addElement(new OrfOnBreadCrumsUrlDTO( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).orElse("EMPTY"), - url.get() - )); - } - LOG.debug("{} {}", JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), JsonUtils.getElementValueAsString(item, TAG_TARGET_URL)); - } + 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) { + Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + 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); + } + //LOG.debug("History Item {} {}", title, url); + } + 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 index e5d7723ff..9ef5463d4 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -12,13 +12,14 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; - public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { - private static final Logger LOG = LogManager.getLogger(OrfOnHistoryVideoItemDeserializer.class); private String[] TAG_NEXT_PAGE = { "next" }; private String[] TAG_ITEM_ARRAY = { "_items" }; private String[] TAG_ITEM_TITLE = {"title"}; private String[] TAG_TARGET_URL = {"_links", "self", "href"}; + private String[] TAG_TARGET_URL_EPISODE = {"_links", "episode", "href"}; + + protected final Logger LOG = LogManager.getLogger(this.getClass()); @Override public PagedElementListDTO deserialize( @@ -31,19 +32,28 @@ public PagedElementListDTO deserialize( Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { - Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - if (url.isPresent()) { + Optional urlSelf = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + Optional urlEpisode = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL_EPISODE); + 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( - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE).get(), - JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get() + 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/task/OrfOnEpisodeTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java index 626c4a450..e5dc7981c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -2,6 +2,7 @@ import java.lang.reflect.Type; import java.net.URI; +import java.util.Optional; import java.util.Queue; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -52,7 +53,13 @@ protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrl LOG.debug("Missing videoUrls for {}", aDTO); return; } - LOG.debug(" bread crums {}", String.join("|", aDTO.getBreadCrums()) + " # " + aResponseObj.getTitle().get()); + // ARCHIVE + // archive does not have a proper topic + if (aResponseObj.getTopic().get().equalsIgnoreCase("Archiv") && aDTO.getBreadCrums().size() > 1) { + aResponseObj.setTopic(Optional.of(aDTO.getBreadCrums().get(1))); + } + + LOG.debug(" bread crums {} # {} # {}", String.join("|", aDTO.getBreadCrums()), aResponseObj.getTopic().get(), aResponseObj.getTitle().get()); taskResults.add(aResponseObj); } 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 index 2b7dafe54..7a2ef396d 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnHistoryChildrenTask.java @@ -36,12 +36,15 @@ protected Type getType() { @Override protected void postProcessingElements(Set elements, OrfOnBreadCrumsUrlDTO originalDTO) { for (OrfOnBreadCrumsUrlDTO element : elements) { - if (element.getUrl().endsWith("children")) { + if (element.getUrl().contains("/children")) { final Queue moreContentOnNewPage = new ConcurrentLinkedQueue<>(); moreContentOnNewPage.add(element); AbstractRecursiveConverterTask resolveChildren = createNewOwnInstance(moreContentOnNewPage); resolveChildren.fork(); - taskResults.addAll(resolveChildren.join()); + for(OrfOnBreadCrumsUrlDTO moreElements : resolveChildren.join()) { + moreElements.setBreadCrumsPath(originalDTO.getBreadCrums()); + taskResults.add(moreElements); + } } else { element.setBreadCrumsPath(originalDTO.getBreadCrums()); taskResults.add(element); 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 From 6c1fe53fb2dc59bbbbe8eb30776bf009a62cdb8f Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sun, 18 Feb 2024 18:15:16 +0100 Subject: [PATCH 05/21] cleanup and subtitles if embedded --- .../mserver/crawler/orfon/OrfOnCrawler.java | 23 +++++++-- .../crawler/orfon/OrfOnVideoInfoDTO.java | 16 +++++-- .../orfon/json/OrfOnAZDeserializer.java | 14 +++--- .../orfon/json/OrfOnEpisodeDeserializer.java | 48 +++++++++++++++++-- .../orfon/json/OrfOnEpisodesDeserializer.java | 20 +++----- .../json/OrfOnHistoryChainDeserializer.java | 4 +- .../OrfOnHistoryChildrenDeserializer.java | 12 ++--- .../orfon/json/OrfOnHistoryDeserializer.java | 8 ++-- .../OrfOnHistoryVideoItemDeserializer.java | 6 +-- .../orfon/json/OrfOnScheduleDeserializer.java | 8 +--- .../crawler/orfon/task/OrfOnEpisodeTask.java | 26 +++------- .../orfon/task/OrfOnVideoInfo2FilmTask.java | 31 +++++------- 12 files changed, 123 insertions(+), 93 deletions(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index 78ddeb1fb..7d43eeb50 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -4,6 +4,7 @@ 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; @@ -52,17 +53,23 @@ protected RecursiveTask> createCrawlerTask() { try { // Sendungen Verpasst (letzten 14 Tage) // TAG > Episode > Episode2Film - final Set epsiodesFromDay = processDayUrlsToCrawl(); - allVideos.addAll(epsiodesFromDay); + //final Set epsiodesFromDay = processDayUrlsToCrawl(); + //allVideos.addAll(epsiodesFromDay); + //printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + //getAndSetMaxCount(allVideos.size()); // // 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 > - final Set historyVideos = processHistoryUrlToCrawl(); - allVideos.addAll(historyVideos); + //final Set historyVideos = processHistoryUrlToCrawl(); + //allVideos.addAll(historyVideos); + //printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + //getAndSetMaxCount(allVideos.size()); // return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos)); } catch (final Exception ex) { @@ -113,15 +120,21 @@ private Queue createAZUrlsToCrawl() { 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()); // final ForkJoinTask> historyEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(historyEpisodesUrls))); - return historyEpisodeTask.get(); + final Set historyEpisodeVideos = historyEpisodeTask.get(); + LOG.debug("Found {} entries in OrfOnEpisodeTask ", historyEpisodeVideos.size()); + // + return historyEpisodeVideos; } private Queue createHistoryUrlToCrawl() { diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java index dab5e2d96..6062d803c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java @@ -6,6 +6,7 @@ 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; @@ -18,6 +19,7 @@ public class OrfOnVideoInfoDTO { private Optional title; private Optional titleWithDate; private Optional topic; + private Optional topicForArchive; private Optional aired; private Optional duration; private Optional description; @@ -25,6 +27,7 @@ public class OrfOnVideoInfoDTO { private Optional> georestriction; private Optional subtitleSource; private Optional> videoUrls; + private Optional> subtitleUrls; public OrfOnVideoInfoDTO( Optional id, @@ -32,19 +35,22 @@ public OrfOnVideoInfoDTO( Optional title, Optional titleWithDate, Optional topic, + Optional topicForArchive, Optional aired, Optional duration, Optional description, Optional website, Optional> georestriction, Optional subtitleSource, - Optional> videoUrls) { + 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; @@ -52,6 +58,7 @@ public OrfOnVideoInfoDTO( this.georestriction = georestriction; this.subtitleSource = subtitleSource; this.videoUrls = videoUrls; + this.subtitleUrls = subtitleUrls; } public Optional getId() { @@ -69,8 +76,8 @@ public Optional getTitleWithDate() { public Optional getTopic() { return topic; } - public void setTopic(Optional newTopic) { - topic = newTopic; + public Optional getTopicForArchive() { + return topicForArchive; } public Optional getAired() { return aired; @@ -93,6 +100,9 @@ public Optional getSubtitleSource() { public Optional> getVideoUrls() { return videoUrls; } + public Optional> getSubtitleUrls() { + return subtitleUrls; + } @Override public int 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 index 1250bb79f..e2b2f5376 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnAZDeserializer.java @@ -5,6 +5,7 @@ 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; @@ -29,14 +30,13 @@ public PagedElementListDTO deserialize( PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // - if (jsonPage.has(TAG_ITEMS[0]) && jsonPage.get(TAG_ITEMS[0]).isJsonObject() && - jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().has(TAG_ITEMS[1]) && - jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).isJsonArray()) { - for (JsonElement topic : jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).getAsJsonArray()) { - Optional id = JsonUtils.getElementValueAsString(topic, TAG_ITEM_ID); - Optional url = JsonUtils.getElementValueAsString(topic, TAG_ITEM_EPISODES); + 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(), url.get())); + page.addElement(new OrfOnBreadCrumsUrlDTO(id.get(), OrfOnConstants.createMaxLimmitUrl(url.get()))); } else { LOG.debug("No episodes found in item {}", id); } 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 index c3cc60472..a3636b51d 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -9,6 +9,7 @@ import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; import java.lang.reflect.Type; +import java.net.MalformedURLException; import java.net.URL; import java.time.Duration; import java.time.LocalDateTime; @@ -16,8 +17,10 @@ import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; +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; @@ -30,6 +33,7 @@ public class OrfOnEpisodeDeserializer implements JsonDeserializer parseSubtitle(Optional text) { + private Optional parseSubtitleSource(Optional text) { Optional sub = Optional.empty(); if (text.isPresent()) { try { @@ -103,6 +118,29 @@ private Optional parseSubtitle(Optional text) { } + + private Optional> parseSubtitleUrls(JsonElement element) { + Set urls = new HashSet<>(); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SMI).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SRT).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_TTML).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_VTT).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); + JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_XML).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); + if (urls.size() == 0) { + 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) { for (Map.Entry entry : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).entrySet()) { 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 index 6bb69bb10..bd39d8690 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -7,13 +7,9 @@ import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; import java.lang.reflect.Type; - -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - +import java.util.Optional; public class OrfOnEpisodesDeserializer implements JsonDeserializer> { - private static final Logger LOG = LogManager.getLogger(OrfOnEpisodesDeserializer.class); private static final String[] TAG_NEXT_PAGE = {"_links", "next", "href"}; private static final String[] TAG_ITEMS = {"_embedded", "items"}; private static final OrfOnEpisodeDeserializer itemDeserializer = new OrfOnEpisodeDeserializer(); @@ -27,14 +23,12 @@ public PagedElementListDTO deserialize( PagedElementListDTO page = new PagedElementListDTO(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // - //OrfOnEpisodeDeserializer itemDeserializer = new OrfOnEpisodeDeserializer(); - if (jsonPage.has(TAG_ITEMS[0]) && jsonPage.get(TAG_ITEMS[0]).isJsonObject() && - jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().has(TAG_ITEMS[1]) && - jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).isJsonArray()) { - for (JsonElement item : jsonPage.get(TAG_ITEMS[0]).getAsJsonObject().get(TAG_ITEMS[1]).getAsJsonArray()) { - page.addElement(itemDeserializer.deserialize(item, null, null)); - } - } + final Optional items = JsonUtils.getElement(jsonPage, TAG_ITEMS); + if (items.isPresent() && items.get().isJsonArray()) { + for (JsonElement item : items.get().getAsJsonArray()) { + page.addElement(itemDeserializer.deserialize(item, null, null)); + } + } return page; } diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java index 19bf5fe79..9de883de5 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java @@ -36,10 +36,10 @@ public PagedElementListDTO deserialize( PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // - Optional itemArray = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); + final Optional itemArray = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); if (itemArray.isPresent() && itemArray.get().isJsonArray()) { for (JsonElement item : itemArray.get().getAsJsonArray()) { - Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); + final Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); if (url.isPresent()) { page.addElement(new CrawlerUrlDTO(JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get())); } 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 index 50ddbc05a..b84c2cbce 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -30,12 +30,12 @@ public PagedElementListDTO deserialize( 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()) { - Optional videoItemUrl = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - Optional childrenUrl = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2); - Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + 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"), 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 index b30af0071..ef7cedcda 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java @@ -29,12 +29,12 @@ public PagedElementListDTO deserialize( PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // - Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_TOP); + final Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_TOP); if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { page.addElements(parseSection(itemArrayTop.get().getAsJsonArray()).getElements()); } // - Optional itemArrayButtom = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_BUTTOM); + final Optional itemArrayButtom = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY_BUTTOM); if (itemArrayButtom.isPresent() && itemArrayButtom.get().isJsonArray()) { page.addElements(parseSection(itemArrayButtom.get().getAsJsonArray()).getElements()); } @@ -45,8 +45,8 @@ public PagedElementListDTO deserialize( public PagedElementListDTO parseSection(JsonArray itemArray) { PagedElementListDTO items = new PagedElementListDTO<>(); for (JsonElement item : itemArray) { - Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + 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"), 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 index 9ef5463d4..b18312006 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -32,9 +32,9 @@ public PagedElementListDTO deserialize( Optional itemArrayTop = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); if (itemArrayTop.isPresent() && itemArrayTop.get().isJsonArray()) { for (JsonElement item : itemArrayTop.get().getAsJsonArray()) { - Optional urlSelf = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - Optional urlEpisode = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL_EPISODE); - Optional title = JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE); + 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( 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 index 119d9dbbe..07ac6d77d 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java @@ -10,12 +10,8 @@ import java.lang.reflect.Type; import java.util.Optional; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - public class OrfOnScheduleDeserializer implements JsonDeserializer> { - private static final Logger LOG = LogManager.getLogger(OrfOnScheduleDeserializer.class); private static final String TAG_FILM_NAME = "title"; private static final String TAG_FILM_ID = "id"; @@ -26,8 +22,8 @@ public PagedElementListDTO deserialize( PagedElementListDTO collectIds = new PagedElementListDTO(); final JsonArray elements = jsonElement.getAsJsonArray(); for (JsonElement element : elements) { - Optional name = JsonUtils.getElementValueAsString(element, TAG_FILM_NAME); - Optional id = JsonUtils.getElementValueAsString(element, TAG_FILM_ID); + 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(); //LOG.debug("found {} {} {}", id, name, url); 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 index e5dc7981c..8b06a2c6b 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -42,24 +42,21 @@ protected Type getType() { @Override protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { if (aResponseObj.getTitle().isEmpty() && aResponseObj.getTitleWithDate().isEmpty()) { - LOG.debug("Missing title for {}", aDTO); + LOG.warn("Missing title for {}", aDTO); + crawler.incrementAndGetErrorCount(); return; } if (aResponseObj.getTopic().isEmpty()) { - LOG.debug("Missing topic for {}", aDTO); + LOG.warn("Missing topic for {}", aDTO); + crawler.incrementAndGetErrorCount(); return; } if (aResponseObj.getVideoUrls().isEmpty()) { - LOG.debug("Missing videoUrls for {}", aDTO); + LOG.warn("Missing videoUrls for {}", aDTO); + crawler.incrementAndGetErrorCount(); return; } - // ARCHIVE - // archive does not have a proper topic - if (aResponseObj.getTopic().get().equalsIgnoreCase("Archiv") && aDTO.getBreadCrums().size() > 1) { - aResponseObj.setTopic(Optional.of(aDTO.getBreadCrums().get(1))); - } - - LOG.debug(" bread crums {} # {} # {}", String.join("|", aDTO.getBreadCrums()), aResponseObj.getTopic().get(), aResponseObj.getTitle().get()); + //LOG.debug(" bread crums {} # {} # {}", String.join("|", aDTO.getBreadCrums()), aResponseObj.getTopic().get(), aResponseObj.getTitle().get()); taskResults.add(aResponseObj); } @@ -78,13 +75,4 @@ protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response resp url); } - - - - - - - - - } diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java index 1c14c785b..5f5164e3c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java @@ -3,9 +3,6 @@ import java.util.Queue; import java.util.UUID; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - import de.mediathekview.mlib.daten.Film; import de.mediathekview.mlib.daten.Sender; import de.mediathekview.mserver.crawler.basic.AbstractCrawler; @@ -14,7 +11,6 @@ public class OrfOnVideoInfo2FilmTask extends AbstractRecursiveConverterTask { private static final long serialVersionUID = 1L; - private static final Logger LOG = LogManager.getLogger(OrfOnVideoInfo2FilmTask.class); public OrfOnVideoInfo2FilmTask(AbstractCrawler aCrawler, Queue aUrlToCrawlDTOs) { super(aCrawler, aUrlToCrawlDTOs); @@ -35,7 +31,7 @@ protected void processElement(OrfOnVideoInfoDTO aElement) { UUID.randomUUID(), Sender.ORF, buildTitle(aElement.getTitle().get(), aElement.getTopic().get()), - buildTopic(aElement.getTitle().get(), aElement.getTopic().get()), + buildTopic(aElement.getTitle().get(), aElement.getTopic().get(), aElement.getTopicForArchive().orElse("")), aElement.getAired().get(), aElement.getDuration().get() ); @@ -43,16 +39,21 @@ protected void processElement(OrfOnVideoInfoDTO aElement) { aElement.getDescription().ifPresent(aFilm::setBeschreibung); aElement.getVideoUrls().ifPresent(aFilm::setUrls); aElement.getWebsite().ifPresent(aFilm::setWebsite); - + aElement.getSubtitleUrls().ifPresent(aFilm::addAllSubtitleUrls); + crawler.incrementAndGetActualCount(); taskResults.add(aFilm); } - private String buildTopic(String title, String topic) { - if (topic.startsWith("AD | ")) { - return topic.replace("AD | ", ""); + private String buildTopic(String title, String topic, String archiveTopic) { + String newTopic = topic; + if (newTopic.startsWith("AD | ")) { + newTopic = newTopic.replace("AD | ", ""); } - return topic; + if (newTopic.equalsIgnoreCase("archiv")) { + newTopic = newTopic.replace("History | ", ""); + } + return newTopic; } private String buildTitle(String title, String topic) { @@ -62,14 +63,4 @@ private String buildTitle(String title, String topic) { return title; } - - - - - - - - - - } From c4c67ad5e1d36164cbf9f9306803de426438b502 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sun, 18 Feb 2024 18:15:50 +0100 Subject: [PATCH 06/21] comment --- .../mserver/crawler/orfon/OrfOnCrawler.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index 7d43eeb50..942399771 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -53,10 +53,10 @@ protected RecursiveTask> createCrawlerTask() { 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()); + final Set epsiodesFromDay = processDayUrlsToCrawl(); + allVideos.addAll(epsiodesFromDay); + printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + getAndSetMaxCount(allVideos.size()); // // Sendungen a-z // Buchstabe > Episoden > Episode2Film @@ -66,10 +66,10 @@ protected RecursiveTask> createCrawlerTask() { getAndSetMaxCount(allVideos.size()); // // History (top categories) > children > - //final Set historyVideos = processHistoryUrlToCrawl(); - //allVideos.addAll(historyVideos); - //printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); - //getAndSetMaxCount(allVideos.size()); + final Set historyVideos = processHistoryUrlToCrawl(); + allVideos.addAll(historyVideos); + printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); + getAndSetMaxCount(allVideos.size()); // return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos)); } catch (final Exception ex) { From d231fb69dee54cf1a6fb1efa4efe43b1a40feefd Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sun, 18 Feb 2024 18:42:08 +0100 Subject: [PATCH 07/21] sonar --- .../mserver/crawler/orfon/OrfOnConstants.java | 2 +- .../mserver/crawler/orfon/OrfOnCrawler.java | 4 +- .../crawler/orfon/OrfOnVideoInfoDTO.java | 8 ++- .../orfon/json/OrfOnEpisodeDeserializer.java | 19 +++---- .../orfon/json/OrfOnEpisodesDeserializer.java | 2 +- .../json/OrfOnHistoryChainDeserializer.java | 52 ------------------- .../OrfOnHistoryChildrenDeserializer.java | 10 ++-- .../orfon/json/OrfOnHistoryDeserializer.java | 10 ++-- .../OrfOnHistoryVideoItemDeserializer.java | 10 ++-- .../orfon/json/OrfOnScheduleDeserializer.java | 2 +- .../crawler/orfon/task/OrfOnEpisodeTask.java | 3 +- .../crawler/orfon/task/OrfOnEpisodesTask.java | 2 +- .../crawler/orfon/task/OrfOnPagedTask.java | 4 +- 13 files changed, 41 insertions(+), 87 deletions(-) delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java index d1e9633a9..9404439b5 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnConstants.java @@ -13,7 +13,7 @@ public final class OrfOnConstants { // public static final String EPISODE = HOST + "/episode"; // - public static final String bearer = "Basic b3JmX29uX3Y0MzpqRlJzYk5QRmlQU3h1d25MYllEZkNMVU41WU5aMjhtdA=="; + public static final String AUTH = "Basic b3JmX29uX3Y0MzpqRlJzYk5QRmlQU3h1d25MYllEZkNMVU41WU5aMjhtdA=="; // private OrfOnConstants() {} // diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index 942399771..08cb73fc5 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -99,8 +99,8 @@ private Queue createDayUrlsToCrawl() { private Set processAZUrlsToCrawl() throws InterruptedException, ExecutionException { final ForkJoinTask> letterTask = forkJoinPool.submit(new OrfOnAZTask(this, createAZUrlsToCrawl())); - final Set LetterTaskTopics = letterTask.get(); - final ForkJoinTask> videosFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(LetterTaskTopics))); + final Set letterTaskTopics = letterTask.get(); + final ForkJoinTask> videosFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(letterTaskTopics))); return videosFromTopicsTask.get(); } diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java index 6062d803c..442c857f0 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfoDTO.java @@ -112,5 +112,11 @@ public int hashCode() { 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/OrfOnEpisodeDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java index a3636b51d..3db8b44d9 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -16,6 +16,7 @@ import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Collection; +import java.util.EnumMap; import java.util.HashMap; import java.util.HashSet; import java.util.Map; @@ -121,12 +122,12 @@ private Optional parseSubtitleSource(Optional text) { private Optional> parseSubtitleUrls(JsonElement element) { Set urls = new HashSet<>(); - JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SMI).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); - JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SRT).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); - JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_TTML).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); - JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_VTT).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); - JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_XML).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(url -> urls.add(url))); - if (urls.size() == 0) { + 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); @@ -170,7 +171,7 @@ private Optional> parseUrl(JsonElement jsonElement) { codec = Optional.of("dash"); } if (codec.isPresent()) { - urls = Optional.of(new HashMap()); + urls = Optional.of(new EnumMap<>(Resolution.class)); for (JsonElement codecUrls : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).getAsJsonArray(codec.get())) { try { String qualityString = codecUrls.getAsJsonObject().get(TAG_VIDEO_QUALITY).getAsString(); @@ -210,11 +211,11 @@ private Optional parseWebsite(Optional text) { private Optional> parseGeoLocations(Optional text) { if (text.isPresent()) { if (text.get().equalsIgnoreCase("worldwide")) { - ArrayList a = new ArrayList(); + ArrayList a = new ArrayList<>(); a.add(GeoLocations.GEO_NONE); return Optional.of(a); } else if (text.get().equalsIgnoreCase("austria")) { - ArrayList a = new ArrayList(); + ArrayList a = new ArrayList<>(); a.add(GeoLocations.GEO_AT); return Optional.of(a); } else { 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 index bd39d8690..8a7637dcf 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -20,7 +20,7 @@ public PagedElementListDTO deserialize( throws JsonParseException { JsonObject jsonPage = jsonElement.getAsJsonObject(); // - PagedElementListDTO page = new PagedElementListDTO(); + PagedElementListDTO page = new PagedElementListDTO<>(); page.setNextPage(JsonUtils.getElementValueAsString(jsonElement, TAG_NEXT_PAGE)); // final Optional items = JsonUtils.getElement(jsonPage, TAG_ITEMS); diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java deleted file mode 100644 index 9de883de5..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChainDeserializer.java +++ /dev/null @@ -1,52 +0,0 @@ -package de.mediathekview.mserver.crawler.orfon.json; - -import com.google.gson.*; - -import de.mediathekview.mserver.base.utils.JsonUtils; -import de.mediathekview.mserver.crawler.basic.CrawlerUrlDTO; -import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; -import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; - -import java.lang.reflect.Type; -import java.util.Optional; - -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - - -public class OrfOnHistoryChainDeserializer implements JsonDeserializer> { - private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChainDeserializer.class); - private final String[] TAG_NEXT_PAGE; - private final String[] TAG_ITEM_ARRAY; - private final String[] TAG_TARGET_URL; - - - - public OrfOnHistoryChainDeserializer(String[] TAG_NEXT_PAGE,String[] TAG_ITEM_ARRAY, String[] TAG_TARGET_URL ) { - this.TAG_NEXT_PAGE = TAG_NEXT_PAGE; - this.TAG_ITEM_ARRAY = TAG_ITEM_ARRAY; - this.TAG_TARGET_URL = TAG_TARGET_URL; - } - - @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 itemArray = JsonUtils.getElement(jsonElement, TAG_ITEM_ARRAY); - if (itemArray.isPresent() && itemArray.get().isJsonArray()) { - for (JsonElement item : itemArray.get().getAsJsonArray()) { - final Optional url = JsonUtils.getElementValueAsString(item, TAG_TARGET_URL); - if (url.isPresent()) { - page.addElement(new CrawlerUrlDTO(JsonUtils.getElementValueAsString(item, TAG_TARGET_URL).get())); - } - } - } - // - 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 index b84c2cbce..a9ce3a8bd 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -16,11 +16,11 @@ public class OrfOnHistoryChildrenDeserializer implements JsonDeserializer> { private static final Logger LOG = LogManager.getLogger(OrfOnHistoryChildrenDeserializer.class); - private String[] TAG_NEXT_PAGE = { "next" }; - private String[] TAG_ITEM_ARRAY = { "_items" }; - private String[] TAG_ITEM_TITLE = {"title"}; - private String[] TAG_TARGET_URL = {"_links", "video_items", "href"}; - private String[] TAG_TARGET_URL2 = {"_links", "children", "href"}; + 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( 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 index ef7cedcda..16793e466 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java @@ -15,11 +15,11 @@ public class OrfOnHistoryDeserializer implements JsonDeserializer> { private static final Logger LOG = LogManager.getLogger(OrfOnHistoryDeserializer.class); - private String[] TAG_NEXT_PAGE = {}; - private String[] TAG_ITEM_ARRAY_TOP = {"history_highlights"}; - private String[] TAG_ITEM_TITLE = {"title"}; - private String[] TAG_ITEM_ARRAY_BUTTOM = {"history_items"}; - private String[] TAG_TARGET_URL = {"_links", "children", "href"}; + 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( 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 index b18312006..02a702bed 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -13,11 +13,11 @@ import org.apache.logging.log4j.Logger; public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { - private String[] TAG_NEXT_PAGE = { "next" }; - private String[] TAG_ITEM_ARRAY = { "_items" }; - private String[] TAG_ITEM_TITLE = {"title"}; - private String[] TAG_TARGET_URL = {"_links", "self", "href"}; - private String[] TAG_TARGET_URL_EPISODE = {"_links", "episode", "href"}; + 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"}; protected final Logger LOG = LogManager.getLogger(this.getClass()); 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 index 07ac6d77d..e5baf69da 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java @@ -19,7 +19,7 @@ public class OrfOnScheduleDeserializer implements JsonDeserializer deserialize( final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException { - PagedElementListDTO collectIds = new PagedElementListDTO(); + PagedElementListDTO collectIds = new PagedElementListDTO<>(); final JsonArray elements = jsonElement.getAsJsonArray(); for (JsonElement element : elements) { final Optional name = JsonUtils.getElementValueAsString(element, TAG_FILM_NAME); 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 index 8b06a2c6b..56fa91f3b 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -2,7 +2,6 @@ import java.lang.reflect.Type; import java.net.URI; -import java.util.Optional; import java.util.Queue; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -26,7 +25,7 @@ public class OrfOnEpisodeTask extends AbstractJsonRestTask urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + super(crawler, urlToCrawlDTOs, OrfOnConstants.AUTH); } @Override 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 index 6bffe5628..95ece1e96 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -29,7 +29,7 @@ public class OrfOnEpisodesTask extends AbstractJsonRestTask urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + super(crawler, urlToCrawlDTOs, OrfOnConstants.AUTH); } @Override 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 index 6e798e88f..0b412e0ae 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java @@ -25,8 +25,8 @@ public abstract class OrfOnPagedTask extends AbstractJsonRestTask> nextPageTask = Optional.empty(); - public OrfOnPagedTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.bearer); + protected OrfOnPagedTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { + super(crawler, urlToCrawlDTOs, OrfOnConstants.AUTH); } protected void postProcessingNextPage(PagedElementListDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { From 0751f40df782be3da8983c2d676ec0dbc00bdbe1 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sat, 24 Feb 2024 12:18:54 +0100 Subject: [PATCH 08/21] resolve missing subtitles --- .../base/webaccess/JsoupConnection.java | 40 +++++++++++- .../mserver/crawler/orfon/OrfOnCrawler.java | 2 +- .../orfon/json/OrfOnEpisodeDeserializer.java | 63 ++++++++++++------- .../orfon/json/OrfOnEpisodesDeserializer.java | 7 ++- .../OrfOnHistoryChildrenDeserializer.java | 6 -- .../orfon/json/OrfOnHistoryDeserializer.java | 1 - .../orfon/json/OrfOnScheduleDeserializer.java | 1 - .../crawler/orfon/task/OrfOnEpisodeTask.java | 2 +- .../crawler/orfon/task/OrfOnEpisodesTask.java | 2 +- 9 files changed, 90 insertions(+), 34 deletions(-) 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/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index 08cb73fc5..ea3be7d16 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -65,7 +65,7 @@ protected RecursiveTask> createCrawlerTask() { printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); getAndSetMaxCount(allVideos.size()); // - // History (top categories) > children > + // 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()); 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 index 3db8b44d9..6707d80a2 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -6,8 +6,11 @@ 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; @@ -47,11 +50,19 @@ public class OrfOnEpisodeDeserializer implements JsonDeserializer> 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().toString(), myMap); + 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()) { @@ -119,7 +142,6 @@ private Optional parseSubtitleSource(Optional text) { } - private Optional> parseSubtitleUrls(JsonElement element) { Set urls = new HashSet<>(); JsonUtils.getElementValueAsString(element, TAG_SUBTITLE_SMI).ifPresent( stringUrl -> toURL(stringUrl).ifPresent(urls::add)); @@ -150,8 +172,7 @@ private Optional> parseUrl(JsonElement jsonElement) { LOG.debug("unkown video type {} ", jsonElement); } } - - + Optional> urls = Optional.empty(); Optional codec = Optional.empty(); // if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && 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 index 8a7637dcf..d8510d988 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -3,6 +3,7 @@ import com.google.gson.*; import de.mediathekview.mserver.base.utils.JsonUtils; +import de.mediathekview.mserver.crawler.basic.AbstractCrawler; import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; @@ -12,7 +13,11 @@ 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 OrfOnEpisodeDeserializer itemDeserializer = new OrfOnEpisodeDeserializer(); + private OrfOnEpisodeDeserializer itemDeserializer = null; + + public OrfOnEpisodesDeserializer(AbstractCrawler crawler) { + itemDeserializer = new OrfOnEpisodeDeserializer(crawler); + } @Override public PagedElementListDTO deserialize( 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 index a9ce3a8bd..c0cb744fb 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryChildrenDeserializer.java @@ -49,12 +49,6 @@ public PagedElementListDTO deserialize( } else { LOG.info("No video_items or children tag found {}",JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE) ); } - /* - LOG.debug("OrfOnHistoryChildrenDeserializer {} - {} - {}", - JsonUtils.getElementValueAsString(item, TAG_ITEM_TITLE), - JsonUtils.getElementValueAsString(item, TAG_TARGET_URL), - JsonUtils.getElementValueAsString(item, TAG_TARGET_URL2));*/ - } } // 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 index 16793e466..fd718d41d 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryDeserializer.java @@ -55,7 +55,6 @@ public PagedElementListDTO parseSection(JsonArray itemArr } else { LOG.debug("missing url for {}", title); } - //LOG.debug("History Item {} {}", title, url); } return items; } 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 index e5baf69da..09d90b91e 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnScheduleDeserializer.java @@ -26,7 +26,6 @@ public PagedElementListDTO deserialize( final Optional id = JsonUtils.getElementValueAsString(element, TAG_FILM_ID); if (id.isPresent()) { final String url = OrfOnConstants.EPISODE + "/" + id.get(); - //LOG.debug("found {} {} {}", id, name, url); collectIds.addElement(new OrfOnBreadCrumsUrlDTO(id.get(), url)); } } 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 index 56fa91f3b..7ea68931c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -30,7 +30,7 @@ public OrfOnEpisodeTask(AbstractCrawler crawler, Queue ur @Override protected JsonDeserializer getParser(OrfOnBreadCrumsUrlDTO aDTO) { - return new OrfOnEpisodeDeserializer(); + return new OrfOnEpisodeDeserializer(this.crawler); } @Override 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 index 95ece1e96..20438c7f4 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -34,7 +34,7 @@ public OrfOnEpisodesTask(AbstractCrawler crawler, Queue u @Override protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { - return new OrfOnEpisodesDeserializer(); + return new OrfOnEpisodesDeserializer(this.crawler); } @Override From 2e58fbf7af41afceada0a971def28b5e0b4d2a3b Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sat, 24 Feb 2024 15:50:32 +0100 Subject: [PATCH 09/21] fix for archive topic --- .../mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java index 5f5164e3c..63ec25603 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java @@ -51,7 +51,7 @@ private String buildTopic(String title, String topic, String archiveTopic) { newTopic = newTopic.replace("AD | ", ""); } if (newTopic.equalsIgnoreCase("archiv")) { - newTopic = newTopic.replace("History | ", ""); + newTopic = archiveTopic.replace("History | ", ""); } return newTopic; } From bd3fd5430f479d07f48816c7c1e7a4928b926d00 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Sun, 25 Feb 2024 17:34:55 +0100 Subject: [PATCH 10/21] junit --- .../orfon/json/OrfOnEpisodeDeserializer.java | 4 +- .../crawler/orfon/OrfOnAZTaskTest.java | 52 + .../crawler/orfon/OrfOnEpisodeTaskTest.java | 142 + .../crawler/orfon/OrfOnEpisodesTaskTest.java | 127 + .../orfon/OrfOnHistoryChildrenTaskTest.java | 41 + .../crawler/orfon/OrfOnHistoryTaskTest.java | 50 + .../orfon/OrfOnHistoryVideoItemTaskTest.java | 48 + .../crawler/orfon/OrfOnScheduleTaskTest.java | 154 + .../orfon/OrfOnVideoInfo2FilmTaskTest.java | 165 + src/test/resources/orfOn/episodes_1.json | 18567 ---------------- src/test/resources/orfOn/episodes_3.json | 3111 +++ src/test/resources/orfOn/history.json | 5282 +++++ src/test/resources/orfOn/subtitle_868782.json | 31 + 13 files changed, 9206 insertions(+), 18568 deletions(-) create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnAZTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryChildrenTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnHistoryVideoItemTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnScheduleTaskTest.java create mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java delete mode 100644 src/test/resources/orfOn/episodes_1.json create mode 100644 src/test/resources/orfOn/episodes_3.json create mode 100644 src/test/resources/orfOn/history.json create mode 100644 src/test/resources/orfOn/subtitle_868782.json 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 index 6707d80a2..d439ed1a3 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -120,7 +120,9 @@ private Optional> buildOrResolveSubs(JsonElement jsonElement) { JsonElement newRequestForSubs = null; try { newRequestForSubs = crawler.getConnection().requestBodyAsJsonElement(subtitleSource.get().toString(), myMap); - setOfSubs = parseSubtitleUrls(newRequestForSubs); + if (newRequestForSubs != null) { + setOfSubs = parseSubtitleUrls(newRequestForSubs); + } } catch (IOException e) { LOG.error("Failed to resolve subtitle from {} error {}", subtitleSource, e); } 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..60250d4c7 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -0,0 +1,142 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; + + +import java.net.MalformedURLException; +import java.net.URL; +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; + +import de.mediathekview.mlib.daten.FilmUrl; +import de.mediathekview.mlib.daten.GeoLocations; +import de.mediathekview.mlib.daten.Resolution; +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; + + +public class OrfOnEpisodeTaskTest extends OrfOnEpisodesTaskTest { + + @Test + public void test() { + setupSuccessfulJsonResponse("/episode1", "/orfOn/episode_1.json"); + setupSuccessfulJsonResponse("/episode2", "/orfOn/episode_2.json"); + Set result = executeTask("/episode1", "/episode2"); + Map expectedResult = generateExpectedResult(); + assertTrue(result.size() == 2); + for (OrfOnVideoInfoDTO actual : result) { + OrfOnVideoInfoDTO expected = expectedResult.get(actual.getId().get()); + assertNotNull(expected); + assertVideoInfoDto(expected, actual); + } + } + + 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(); + } + + private Map generateExpectedResult() { + try { + Map expectedResult = Map.of( + "14207792", new OrfOnVideoInfoDTO( + Optional.of("14207792"), + Optional.of("ORF 1"), + Optional.of("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian"), + Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), + Optional.of("Servus Kasperl"), + Optional.of("ORF Kids | Servus Kasperl"), + Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), + Optional.of(java.time.Duration.parse("PT21M56S")), + Optional.of("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äuber vor hat ihn zu stehlen.\r\n" + + "Bildquelle: ORF"), + Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), + Optional.of(List.of(GeoLocations.GEO_NONE)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), + Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(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") + ))), + "14207790", new OrfOnVideoInfoDTO( + Optional.of("14207790"), + Optional.of("ORF Kids"), + Optional.of("ABC Bär"), + Optional.of("ABC Bär vom 04.01.2024 um 06:45 Uhr"), + Optional.of("ABC-Bär"), + Optional.of("ORF Kids | Lernen mit Spaß"), + Optional.of(LocalDateTime.of(2024,01,04,06,45)), + Optional.of(java.time.Duration.parse("PT13M29S")), + Optional.of("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.\r\n" + + "Bildquelle: ORF"), + Optional.of(new URL("https://tvthek.orf.at/profile/ABC-Baer/4611813/ABC-Baer/14207790")), + Optional.of(List.of(GeoLocations.GEO_AT)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885332")), + Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(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") + ))) + ); + return expectedResult; + } catch (MalformedURLException e) { + e.printStackTrace(); + } + return null; + } + + protected static void assertVideoInfoDto(OrfOnVideoInfoDTO expected, OrfOnVideoInfoDTO actual) { + assertEquals(expected.getAired(), actual.getAired()); + assertEquals(expected.getChannel(), actual.getChannel()); + assertEquals(expected.getDescription(), actual.getDescription()); + assertEquals(expected.getDuration(), actual.getDuration()); + assertEquals(expected.getGeorestriction(), actual.getGeorestriction()); + assertEquals(expected.getId(), actual.getId()); + assertEquals(expected.getTitle(), actual.getTitle()); + assertEquals(expected.getTitleWithDate(), actual.getTitleWithDate()); + assertEquals(expected.getTopic(), actual.getTopic()); + assertEquals(expected.getTopicForArchive(), actual.getTopicForArchive()); + assertEquals(expected.getWebsite(), actual.getWebsite()); + assertEquals(expected.getVideoUrls().get(), actual.getVideoUrls().get()); + assertEquals(expected.getSubtitleUrls(), actual.getSubtitleUrls()); + if (expected.getSubtitleSource().isPresent()) { + int subtitleSourceExpectedStringlength = expected.getSubtitleSource().get().toString().indexOf("subtitle"); + int subtitleSourceActStringlength = actual.getSubtitleSource().get().toString().indexOf("subtitle"); + assertTrue(subtitleSourceExpectedStringlength > 0 && subtitleSourceActStringlength > 0); + assertEquals(expected.getSubtitleSource().get().toString().substring(subtitleSourceExpectedStringlength), actual.getSubtitleSource().get().toString().substring(subtitleSourceActStringlength)); // ignore localhost+port + } + } + + 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")); + } + + + +} 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..ab806a591 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java @@ -0,0 +1,127 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + +import java.net.MalformedURLException; +import java.net.URL; +import java.time.LocalDateTime; +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 org.junit.Test; + +import de.mediathekview.mlib.daten.FilmUrl; +import de.mediathekview.mlib.daten.GeoLocations; +import de.mediathekview.mlib.daten.Resolution; +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"); + setupSuccessfulJsonResponse("/api/v4.3/subtitle/868782", "/orfOn/subtitle_868782.json"); + Set result = executeTask("/episodes"); + Map expectedResult = generateExpectedResult(); + assertTrue(result.size() == 3); + for (OrfOnVideoInfoDTO actual : result) { + OrfOnVideoInfoDTO expected = expectedResult.get(actual.getId().get()); + assertNotNull(expected); + OrfOnEpisodeTaskTest.assertVideoInfoDto(expected, actual); + } + } + + 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 Map generateExpectedResult() { + try { + Map expectedResult = Map.of( + "14201133", new OrfOnVideoInfoDTO( + Optional.of("14201133"), + Optional.of("ORF 1"), + Optional.of("Wischen ist Macht: Alles für den Hugo"), + Optional.of("Wischen ist Macht: Alles für den Hugo vom 14.11.2023 um 00:33 Uhr"), + Optional.of("Wischen ist Macht"), + Optional.of("Serie"), + Optional.of(LocalDateTime.of(2023,11,14,00,33,03)), + Optional.of(java.time.Duration.parse("PT24M50S")), + Optional.of("Spezialauftrag für \"Dreck.Weg.Sendracek\": Die russische Botschafterin lädt zu einer Gala und"), + Optional.of(new URL("https://tvthek.orf.at/profile/Wischen-ist-Macht/13891227/Wischen-ist-Macht-Alles-fuer-den-Hugo/14201133")), + Optional.of(List.of(GeoLocations.GEO_AT)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/868782")), + Optional.of(Map.of(Resolution.NORMAL, new FilmUrl("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", 0L))), + Optional.of(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/79738b7eb874c151cde04ec6367a444bd5999db1.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/4b1c81a007271ee90224a9555494148e3116a00e.vtt") + )) + ), + "14202094", new OrfOnVideoInfoDTO( + Optional.of("14202094"), + Optional.of("ORF 1"), + Optional.of("Wischen ist Macht: Shit Happens"), + Optional.of("Wischen ist Macht: Shit Happens vom 21.11.2023 um 00:04 Uhr"), + Optional.of("Wischen ist Macht"), + Optional.of("Wischen ist Macht"), + Optional.of(LocalDateTime.of(2023,11,21,00,04,21)), + Optional.of(java.time.Duration.parse("PT22M12S")), + Optional.of("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 überwiesen. Johnny fängt 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ährend seine Frau Janis gewohnt alkoholisiert durchs Haus geistert.\r\n" + + "Mit 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\n" + + "Bildquelle: ORF/Fabio Eppensteiner"), + Optional.of(new URL("https://tvthek.orf.at/profile/Wischen-ist-Macht/13891227/Wischen-ist-Macht-Shit-Happens/14202094")), + Optional.of(List.of(GeoLocations.GEO_AT)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/868782")), + Optional.of(Map.of(Resolution.NORMAL, new FilmUrl("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", 0L))), + Optional.of(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/79738b7eb874c151cde04ec6367a444bd5999db1.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/4b1c81a007271ee90224a9555494148e3116a00e.vtt") + )) + ), + "14202095", new OrfOnVideoInfoDTO( + Optional.of("14202095"), + Optional.of("ORF 1"), + Optional.of("Wischen ist Macht: Fußball ist meine Religion"), + Optional.of("Wischen ist Macht: Fußball ist meine Religion vom 21.11.2023 um 00:27 Uhr"), + Optional.of("Wischen ist Macht"), + Optional.of("Serie"), + Optional.of(LocalDateTime.of(2023,11,21,00,27,17)), + Optional.of(java.time.Duration.parse("PT25M49S")), + Optional.of("Michelle und ihr Team rücken im Fußballstadion an"), + Optional.of(new URL("https://tvthek.orf.at/profile/Wischen-ist-Macht/13891227/Wischen-ist-Macht-Fussball-ist-meine-Religion/14202095")), + Optional.of(List.of(GeoLocations.GEO_AT)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/868782")), + Optional.of(Map.of(Resolution.NORMAL, new FilmUrl("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", 0L))), + Optional.of(Set.of( + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/79738b7eb874c151cde04ec6367a444bd5999db1.srt"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml"), + new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/4b1c81a007271ee90224a9555494148e3116a00e.vtt") + )) + )); + return expectedResult; + } catch (MalformedURLException e) { + e.printStackTrace(); + } + return null; + } + + +} 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/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java new file mode 100644 index 000000000..b28d3a075 --- /dev/null +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java @@ -0,0 +1,165 @@ +package de.mediathekview.mserver.crawler.orfon; + +import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; + +import java.net.MalformedURLException; +import java.net.URL; +import java.time.LocalDateTime; +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 org.junit.Test; + +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.crawler.orfon.task.OrfOnVideoInfo2FilmTask; + +public class OrfOnVideoInfo2FilmTaskTest { + + + @Test + public void testNormal() throws MalformedURLException { + OrfOnVideoInfoDTO inputVideoInfoDTO = new OrfOnVideoInfoDTO( + Optional.of("14207792"), + Optional.of("ORF 1"), + Optional.of("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian"), + Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), + Optional.of("Servus Kasperl"), + Optional.of("ORF Kids | Servus Kasperl"), + Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), + Optional.of(java.time.Duration.parse("PT21M56S")), + Optional.of("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äuber vor hat ihn zu stehlen.\r\n" + + "Bildquelle: ORF"), + Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), + Optional.of(List.of(GeoLocations.GEO_NONE)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), + Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(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") + ))); + final Queue input = new ConcurrentLinkedQueue<>(); + input.add(inputVideoInfoDTO); + Set resultSet = new OrfOnVideoInfo2FilmTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + Film result = resultSet.toArray(new Film[0])[0]; + // + + assertEquals(inputVideoInfoDTO.getTitle().get(),result.getTitel()); + assertEquals(inputVideoInfoDTO.getTopic().get(),result.getThema()); + assertEquals(inputVideoInfoDTO.getAired().get(),result.getTime()); + if (inputVideoInfoDTO.getDescription().get().length() > 405) { + assertEquals(inputVideoInfoDTO.getDescription().get().substring(0, 400),result.getBeschreibung().substring(0, 400)); + } else { + assertEquals(inputVideoInfoDTO.getDescription().get(),result.getBeschreibung()); + } + assertEquals(inputVideoInfoDTO.getDuration().get(),result.getDuration()); + assertEquals(inputVideoInfoDTO.getWebsite(),result.getWebsite()); + assertEquals(inputVideoInfoDTO.getVideoUrls().get(),result.getUrls()); + assertTrue(inputVideoInfoDTO.getSubtitleUrls().get().containsAll(result.getSubtitles())); + assertTrue(inputVideoInfoDTO.getGeorestriction().get().containsAll(result.getGeoLocations())); + + } + + + @Test + public void testAD() throws MalformedURLException { + OrfOnVideoInfoDTO inputVideoInfoDTO = new OrfOnVideoInfoDTO( + Optional.of("14207792"), + Optional.of("ORF 1"), + Optional.of("AD | Der Bergdoktor: Im Schatten"), + Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), + Optional.of("AD | Der Bergdoktor Staffel 17"), + Optional.of("ORF Kids | Servus Kasperl"), + Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), + Optional.of(java.time.Duration.parse("PT21M56S")), + Optional.of("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äuber vor hat ihn zu stehlen.\r\n" + + "Bildquelle: ORF"), + Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), + Optional.of(List.of(GeoLocations.GEO_NONE)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), + Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(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") + ))); + final Queue input = new ConcurrentLinkedQueue<>(); + input.add(inputVideoInfoDTO); + Set resultSet = new OrfOnVideoInfo2FilmTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + Film result = resultSet.toArray(new Film[0])[0]; + // + + assertEquals("Der Bergdoktor: Im Schatten (Audiodeskription)",result.getTitel()); + assertEquals("Der Bergdoktor Staffel 17",result.getThema()); + assertEquals(inputVideoInfoDTO.getAired().get(),result.getTime()); + if (inputVideoInfoDTO.getDescription().get().length() > 405) { + assertEquals(inputVideoInfoDTO.getDescription().get().substring(0, 400),result.getBeschreibung().substring(0, 400)); + } else { + assertEquals(inputVideoInfoDTO.getDescription().get(),result.getBeschreibung()); + } + assertEquals(inputVideoInfoDTO.getDuration().get(),result.getDuration()); + assertEquals(inputVideoInfoDTO.getWebsite(),result.getWebsite()); + assertEquals(inputVideoInfoDTO.getVideoUrls().get(),result.getUrls()); + assertTrue(inputVideoInfoDTO.getSubtitleUrls().get().containsAll(result.getSubtitles())); + assertTrue(inputVideoInfoDTO.getGeorestriction().get().containsAll(result.getGeoLocations())); + + } + + @Test + public void testArchive() throws MalformedURLException { + OrfOnVideoInfoDTO inputVideoInfoDTO = new OrfOnVideoInfoDTO( + Optional.of("14207792"), + Optional.of("ORF 1"), + Optional.of("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian"), + Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), + Optional.of("Archiv"), + Optional.of("Better Archive Title"), + Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), + Optional.of(java.time.Duration.parse("PT21M56S")), + Optional.of("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äuber vor hat ihn zu stehlen.\r\n" + + "Bildquelle: ORF"), + Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), + Optional.of(List.of(GeoLocations.GEO_NONE)), + Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), + Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(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") + ))); + final Queue input = new ConcurrentLinkedQueue<>(); + input.add(inputVideoInfoDTO); + Set resultSet = new OrfOnVideoInfo2FilmTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); + Film result = resultSet.toArray(new Film[0])[0]; + // + assertEquals(inputVideoInfoDTO.getTitle().get(),result.getTitel()); + assertEquals(inputVideoInfoDTO.getTopicForArchive().get(),result.getThema()); // HERE + assertEquals(inputVideoInfoDTO.getAired().get(),result.getTime()); + if (inputVideoInfoDTO.getDescription().get().length() > 405) { + assertEquals(inputVideoInfoDTO.getDescription().get().substring(0, 400),result.getBeschreibung().substring(0, 400)); + } else { + assertEquals(inputVideoInfoDTO.getDescription().get(),result.getBeschreibung()); + } + assertEquals(inputVideoInfoDTO.getDuration().get(),result.getDuration()); + assertEquals(inputVideoInfoDTO.getWebsite(),result.getWebsite()); + assertEquals(inputVideoInfoDTO.getVideoUrls().get(),result.getUrls()); + assertTrue(inputVideoInfoDTO.getSubtitleUrls().get().containsAll(result.getSubtitles())); + assertTrue(inputVideoInfoDTO.getGeorestriction().get().containsAll(result.getGeoLocations())); + + } +} diff --git a/src/test/resources/orfOn/episodes_1.json b/src/test/resources/orfOn/episodes_1.json deleted file mode 100644 index 304a73e9b..000000000 --- a/src/test/resources/orfOn/episodes_1.json +++ /dev/null @@ -1,18567 +0,0 @@ -{ - "page": 1, - "limit": 20, - "pages": 1, - "total": 18, - "_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, 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_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": "https:\/\/api-tvthek.orf.at\/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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868783" - }, - "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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868780" - }, - "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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/868781" - }, - "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 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_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": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/866559" - }, - "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" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14201132,duration:1485160,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=14201132&duration=1485160&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-11-14T00:07:34+01:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Am Muttertag wird \"Dreck.Weg.Sendracek\" besonders dringend ins virtuelle Puff gerufen. Dort werden speziell f\u00fcr Frauen deren erotische W\u00fcnsche in Virtual Reality umgewandelt - und gerade am Muttertag ist der Andrang an Kundinnen besonders gro\u00df, alles muss also gl\u00e4nzen. Michelle ger\u00e4t aber wieder mal mit der gerissenen Firmenchefin Xenia aneinander, w\u00e4hrend Valentin einer Kundin ins Auge f\u00e4llt und Mira vergebens versucht, ihre Mutter in der Ukraine zu erreichen. Dann taucht auch noch Michelles Mutter Gerda auf und entpuppt sich als treue Kundin des Etablissements.\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), Andrea H\u00e4ndler (Gerda) u. a.", - "drm_token": null, - "duration_seconds": 1485, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAxMTMy", - "exact_duration": 1485160, - "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": "Wischen ist Macht: Muttertag", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14201132, - "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-14T00:07:34+02:00", - "killdate": "2024-05-21T00:27:00+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-14T06:52:01+01:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Muttertag\/14201132", - "share_subject": "Wischen ist Macht: Muttertag vom 14.11.2023 um 00: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-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Am Muttertag wird \"Dreck.Weg.Sendracek\" besonders dringend ins virtuelle Puff gerufen. Dort werden speziell f\u00fcr Frauen deren erotische W\u00fcnsche in Virtual Reality umgewandelt - und gerade am Muttertag ist der Andrang an Kundinnen besonders gro\u00df, alles muss also gl\u00e4nzen. Michelle ger\u00e4t aber wieder mal mit der gerissenen Firmenchefin Xenia aneinander, w\u00e4hrend Valentin einer Kundin ins Auge f\u00e4llt und Mira vergebens versucht, ihre Mutter in der Ukraine zu erreichen. Dann taucht auch noch Michelles Mutter Gerda auf und entpuppt sich als treue Kundin des Etablissements.\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), Andrea H\u00e4ndler (Gerda) u. a. \r\nBildquelle: ORF\/Anjeza Cikopano", - "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-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Muttertag", - "type": "default", - "updated_at": "2023-12-30T16:08:44+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132" - }, - "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\/14201132\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" - }, - "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\/16325286" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/866557" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/362431" - } - }, - "_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:14201132,duration:1485160,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=14201132&duration=1485160&advertisingtags=", - "blackfades": [], - "episode_date": "2023-11-14T00:07:34+01:00", - "date_as_string": "Di, 14.11.2023", - "vod_ressort": null, - "description": "Am Muttertag wird \"Dreck.Weg.Sendracek\" besonders dringend ins virtuelle Puff gerufen. Dort werden speziell f\u00fcr Frauen deren erotische W\u00fcnsche in Virtual Reality umgewandelt - und gerade am Muttertag ist der Andrang an Kundinnen besonders gro\u00df, alles muss also gl\u00e4nzen. Michelle ger\u00e4t aber wieder mal mit der gerissenen Firmenchefin Xenia aneinander, w\u00e4hrend Valentin einer Kundin ins Auge f\u00e4llt und Mira vergebens versucht, ihre Mutter in der Ukraine zu erreichen. Dann taucht auch noch Michelles Mutter Gerda auf und entpuppt sich als treue Kundin des Etablissements.\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), Andrea H\u00e4ndler (Gerda) u. a.", - "drm_token": null, - "duration_as_string": "24:45 Min.", - "duration_seconds": 1485, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzA5OA==", - "episode_id": 14201132, - "exact_duration": 1485160, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Muttertag", - "id": 15523098, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-14T00:07:34+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15523098, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Muttertag", - "videoduration": 1485, - "episodeduration": 1485, - "episodeid": 14201132, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-11-14T06:52: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-Muttertag\/14201132\/Wischen-ist-Macht-Muttertag\/15523098", - "share_subject": "Wischen ist Macht: Muttertag - Wischen ist Macht: Muttertag vom 14.11.2023 um 00: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-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-14_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Muttertag", - "updated_at": "2023-12-30T16:08:44+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_0007_in_01_Wischen-ist-Mac_____14201132__o__7678786796__s15523098", - "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\/15523098" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14201132" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325285" - }, - "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\/16325286" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523098\/links" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523098\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523098\/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_16325285_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.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_16325286_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/cda8c715970a06bca1fcc9bab983bf6ff8659916.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325285_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/19c4d298dbc7cb89f7509f7987640a6ad62357c4.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_16325286_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325286_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/cda8c715970a06bca1fcc9bab983bf6ff8659916.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14200206,duration:1451240,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=14200206&duration=1451240&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-11-06T23:25:24+01:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Michelle und ihr Team r\u00fccken erneut im Museum von Direktorin Frida Gro\u00df-Klein an. Dort m\u00fcssen schnell die \u00dcberreste der gestrigen Finissage beseitigt werden, weil heute noch eine Auktion stattfindet. Michelle m\u00f6chte das Ganze mit ihrer \"Dreck-Weg-Power\" rocken, doch wieder mal laufen die Dinge etwas aus dem Ruder. W\u00e4hrend Fernando und Zoe in eine Kunsttherapiegruppe geraten, beginnt Michelle ihrer Ehe mit Ex-Mann Hugo kreativ zu verarbeiten. Als dieser dann tats\u00e4chlich im Museum auftaucht, beschlie\u00dft sie ihn endlich mal mit seinen eigenen Waffen zu schlagen.\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), Adele Neuhauser (Frida Gro\u00df-Klein), Pippa Galli (Aurora) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1451, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAwMjA2", - "exact_duration": 1451240, - "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": "Kunst ma ned helfen?", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14200206, - "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-06T23:25:24+02:00", - "killdate": "2024-05-21T00:27:00+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-06T23:50:02+01:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Kunst-ma-ned-helfen\/14200206", - "share_subject": "Wischen ist Macht: Kunst ma ned helfen? vom 06.11.2023 um 23:25 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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Michelle und ihr Team r\u00fccken erneut im Museum von Direktorin Frida Gro\u00df-Klein an. Dort m\u00fcssen schnell die \u00dcberreste der gestrigen Finissage beseitigt werden, weil heute noch eine Auktion stattfindet. Michelle m\u00f6chte das Ganze mit ihrer \"Dreck-Weg-Power\" rocken, doch wieder mal laufen die Dinge etwas aus dem Ruder. W\u00e4hrend Fernando und Zoe in eine Kunsttherapiegruppe geraten, beginnt Michelle ihrer Ehe mit Ex-Mann Hugo kreativ zu verarbeiten. Als dieser dann tats\u00e4chlich im Museum auftaucht, beschlie\u00dft sie ihn endlich mal mit seinen eigenen Waffen zu schlagen.\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), Adele Neuhauser (Frida Gro\u00df-Klein), Pippa Galli (Aurora) u.a.\r\nBildquelle: ORF\/ORF", - "teaser_title": "Kunst ma ned helfen?", - "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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Kunst ma ned helfen?", - "type": "default", - "updated_at": "2023-12-30T16:08:49+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206" - }, - "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\/14200206\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" - }, - "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\/16138378" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864540" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/361283" - } - }, - "_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:14200206,duration:1451240,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=14200206&duration=1451240&advertisingtags=", - "blackfades": [], - "episode_date": "2023-11-06T23:25:24+01:00", - "date_as_string": "Mo, 6.11.2023", - "vod_ressort": null, - "description": "Michelle und ihr Team r\u00fccken erneut im Museum von Direktorin Frida Gro\u00df-Klein an. Dort m\u00fcssen schnell die \u00dcberreste der gestrigen Finissage beseitigt werden, weil heute noch eine Auktion stattfindet. Michelle m\u00f6chte das Ganze mit ihrer \"Dreck-Weg-Power\" rocken, doch wieder mal laufen die Dinge etwas aus dem Ruder. W\u00e4hrend Fernando und Zoe in eine Kunsttherapiegruppe geraten, beginnt Michelle ihrer Ehe mit Ex-Mann Hugo kreativ zu verarbeiten. Als dieser dann tats\u00e4chlich im Museum auftaucht, beschlie\u00dft sie ihn endlich mal mit seinen eigenen Waffen zu schlagen.\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), Adele Neuhauser (Frida Gro\u00df-Klein), Pippa Galli (Aurora) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "24:11 Min.", - "duration_seconds": 1451, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUwMTcyOQ==", - "episode_id": 14200206, - "exact_duration": 1451240, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Kunst ma ned helfen?", - "id": 15501729, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-06T23:25:24+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-04T09:00:00+01:00", - "livedate_extern": "2023-12-04T09:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15501729, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Kunst-ma-ned-helfen", - "videoduration": 1451, - "episodeduration": 1451, - "episodeid": 14200206, - "airdate": "2023-12-04T09:00:00+01:00", - "clipreleasetime": "2023-11-06T23:50: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-Kunst-ma-ned-helfen\/14200206\/Wischen-ist-Macht-Kunst-ma-ned-helfen\/15501729", - "share_subject": "Wischen ist Macht: Kunst ma ned helfen? - Wischen ist Macht: Kunst ma ned helfen? vom 06.11.2023 um 23:25 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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "state": "distributed", - "sub_headline": "Serie", - "teaser_text": null, - "teaser_title": "Kunst ma ned helfen?", - "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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Kunst ma ned helfen?", - "updated_at": "2023-12-30T16:08:49+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-06_2325_in_01_Wischen-ist-Mac_____14200206__o__4499889636__s15501729", - "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\/15501729" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200206" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141579" - }, - "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\/16138378" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501729\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864541" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501729\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501729\/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\/42\/thumb_16141579_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.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\/39\/thumb_16138378_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/60a0f8ebcc6e7bb5aa057a77036459c8fe6b2229.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141579_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/463e6f41086f30f6317653e75f75e5cd05ee37d5.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\/39\/thumb_16138378_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138378_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/60a0f8ebcc6e7bb5aa057a77036459c8fe6b2229.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14200205,duration:1363040,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=14200205&duration=1363040&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-11-06T22:57:37+01:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "M\u00fctterlicher Notfall: Michelle bekommt einen aufgeregte Anruf von ihrer exaltierten Mama Gerda. Diese vermietet ihre Innenstadtwohnung via FreeBnB und hatte soeben Streit mit einem Gast. Dieser sitzt nun von Gerda gefesselt und geknebelt in der Wohnung und Michelle soll mit seiner Beseitigung aushelfen. Oder zumindest alle Spuren einer Auseinandersetzung verschwinden lassen. Michelle weigert sich nat\u00fcrlich, doch dann stellt sich heraus, dass der mysteri\u00f6se Gast der Banker Christian Bacher ist, der eigentlich gerade mit einem Batzen Geld auf der Flucht ist.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1363, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MjAwMjA1", - "exact_duration": 1363040, - "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": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14200205, - "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-06T22:57:37+02:00", - "killdate": "2024-05-21T00:27:00+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-06T23:26:01+01:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Gefesselt-gewaschen-gefoehnt\/14200205", - "share_subject": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt vom 06.11.2023 um 22:57 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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "M\u00fctterlicher Notfall: Michelle bekommt einen aufgeregte Anruf von ihrer exaltierten Mama Gerda. Diese vermietet ihre Innenstadtwohnung via FreeBnB und hatte soeben Streit mit einem Gast. Dieser sitzt nun von Gerda gefesselt und geknebelt in der Wohnung und Michelle soll mit seiner Beseitigung aushelfen. Oder zumindest alle Spuren einer Auseinandersetzung verschwinden lassen. Michelle weigert sich nat\u00fcrlich, doch dann stellt sich heraus, dass der mysteri\u00f6se Gast der Banker Christian Bacher ist, der eigentlich gerade mit einem Batzen Geld auf der Flucht ist.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig) u.a.\r\nBildquelle: ORF\/ORF", - "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-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt", - "type": "default", - "updated_at": "2023-12-30T16:08:54+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205" - }, - "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\/14200205\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" - }, - "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\/16138752" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864536" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/361282" - } - }, - "_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:14200205,duration:1363040,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=14200205&duration=1363040&advertisingtags=", - "blackfades": [], - "episode_date": "2023-11-06T22:57:37+01:00", - "date_as_string": "Mo, 6.11.2023", - "vod_ressort": null, - "description": "M\u00fctterlicher Notfall: Michelle bekommt einen aufgeregte Anruf von ihrer exaltierten Mama Gerda. Diese vermietet ihre Innenstadtwohnung via FreeBnB und hatte soeben Streit mit einem Gast. Dieser sitzt nun von Gerda gefesselt und geknebelt in der Wohnung und Michelle soll mit seiner Beseitigung aushelfen. Oder zumindest alle Spuren einer Auseinandersetzung verschwinden lassen. Michelle weigert sich nat\u00fcrlich, doch dann stellt sich heraus, dass der mysteri\u00f6se Gast der Banker Christian Bacher ist, der eigentlich gerade mit einem Batzen Geld auf der Flucht ist.\r\nMit Ursula Strauss (Michelle Sendracek), Stefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz), Zeynep Buyrac (Mira Petrenko), Manuel Sefciuc (Valentin Gradischnig) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "22:43 Min.", - "duration_seconds": 1363, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUwMTcyNw==", - "episode_id": 14200205, - "exact_duration": 1363040, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Gefesselt, gewaschen, gef\u00f6hnt", - "id": 15501727, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-06T22:57:37+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-04T09:00:00+01:00", - "livedate_extern": "2023-12-04T09:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15501727, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Gefesselt-gewaschen-gefoehnt", - "videoduration": 1363, - "episodeduration": 1363, - "episodeid": 14200205, - "airdate": "2023-12-04T09:00:00+01:00", - "clipreleasetime": "2023-11-06T23:26: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-Gefesselt-gewaschen-gefoehnt\/14200205\/Wischen-ist-Macht-Gefesselt-gewaschen-gefoehnt\/15501727", - "share_subject": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt - Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt vom 06.11.2023 um 22:57 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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "state": "distributed", - "sub_headline": "Serie", - "teaser_text": null, - "teaser_title": "Gefesselt, gewaschen, gef\u00f6hnt", - "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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-11-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Gefesselt, gewaschen, gef\u00f6hnt", - "updated_at": "2023-12-30T16:08:54+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-06_2257_in_01_Wischen-ist-Mac_____14200205__o__1357946918__s15501727", - "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\/15501727" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14200205" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16141800" - }, - "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\/16138752" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501727\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/864537" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501727\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15501727\/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\/42\/thumb_16141800_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.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\/39\/thumb_16138752_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/7869bb411babc715b407ee8c81b53043915b0752.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/thumb_16141800_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/42\/6b2cfc720e4a1853b3e4e8a6f9c1c9453d0ed37e.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\/39\/thumb_16138752_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/thumb_16138752_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0162\/39\/7869bb411babc715b407ee8c81b53043915b0752.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14199375,duration:1300040,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=14199375&duration=1300040&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-30T23:26:10+01:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Michelle und ihr Team werden zu einem luxuri\u00f6sen Notfall in der russischen Botschaft gerufen: Der Neffe der Botschafterin hat hinter ihrem R\u00fccken eine Party gefeiert, die etwas ausgeartet ist. Allerdings dr\u00e4ngt die Zeit schon sehr, da seine Tante bald eintreffen wird. Michelle \u00fcbernimmt den Keller und trifft dort auf einen \u00fcbriggebliebenen Fetischisten, w\u00e4hrend Fernando und Zoe von einer Partyleiche verfolgt werden. Mit 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) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1300, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk5Mzc1", - "exact_duration": 1300040, - "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": "Wischen ist Macht: Party vorbei", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14199375, - "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-04-30T23:26:10+02:00", - "killdate": "2024-05-21T00:27:00+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-10-30T23: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-Party-vorbei\/14199375", - "share_subject": "Wischen ist Macht: Party vorbei vom 30.10.2023 um 23:26 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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Michelle und ihr Team werden zu einem luxuri\u00f6sen Notfall in der russischen Botschaft gerufen: Der Neffe der Botschafterin hat hinter ihrem R\u00fccken eine Party gefeiert, die etwas ausgeartet ist. Allerdings dr\u00e4ngt die Zeit schon sehr, da seine Tante bald eintreffen wird. Michelle \u00fcbernimmt den Keller und trifft dort auf einen \u00fcbriggebliebenen Fetischisten, w\u00e4hrend Fernando und Zoe von einer Partyleiche verfolgt werden. Mit 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) u.a.\r\nBildquelle: ORF\/ORF", - "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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Party vorbei", - "type": "default", - "updated_at": "2024-01-04T11:06:16+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375" - }, - "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\/14199375\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" - }, - "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\/16324738" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862623" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/360033" - } - }, - "_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:14199375,duration:1300040,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=14199375&duration=1300040&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-30T23:26:10+01:00", - "date_as_string": "Mo, 30.10.2023", - "vod_ressort": null, - "description": "Michelle und ihr Team werden zu einem luxuri\u00f6sen Notfall in der russischen Botschaft gerufen: Der Neffe der Botschafterin hat hinter ihrem R\u00fccken eine Party gefeiert, die etwas ausgeartet ist. Allerdings dr\u00e4ngt die Zeit schon sehr, da seine Tante bald eintreffen wird. Michelle \u00fcbernimmt den Keller und trifft dort auf einen \u00fcbriggebliebenen Fetischisten, w\u00e4hrend Fernando und Zoe von einer Partyleiche verfolgt werden. Mit 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) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "21:40 Min.", - "duration_seconds": 1300, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5Nzc4Nw==", - "episode_id": 14199375, - "exact_duration": 1300040, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Party vorbei", - "id": 15497787, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-04-30T23:26:10+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15497787, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Party-vorbei", - "videoduration": 1300, - "episodeduration": 1300, - "episodeid": 14199375, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-30T23: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-Party-vorbei\/14199375\/Wischen-ist-Macht-Party-vorbei\/15497787", - "share_subject": "Wischen ist Macht: Party vorbei - Wischen ist Macht: Party vorbei vom 30.10.2023 um 23:26 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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Party vorbei", - "updated_at": "2024-01-04T11:06:16+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-10-30_2326_in_01_Wischen-ist-Mac_____14199375__o__2042185226__s15497787", - "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\/15497787" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199375" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16324737" - }, - "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\/16324738" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497787\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862624" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497787\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497787\/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\/25\/thumb_16324737_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.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\/25\/thumb_16324738_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/b327f9284a5b8872f96ed752cdefd8e85fee61e9.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/thumb_16324737_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/25\/1f8d059c694f60f4eab67f42f7f8a47eb81c4f63.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\/25\/thumb_16324738_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/thumb_16324738_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/25\/b327f9284a5b8872f96ed752cdefd8e85fee61e9.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14199372,duration:1608840,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=14199372&duration=1608840&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-30T22:53:49+01:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "\"Dreck.Weg.Sendracek\" r\u00fcckt diesmal bei der Versicherung an. Dort angekommen erkl\u00e4rt ihnen aber Benno Neuner, dass sie diesmal nicht die B\u00fcror\u00e4ume reinigen sollen, sondern seine im Keller gelegene Bar. Und das nur, weil f\u00fcr die B\u00fcros \"Die Wischm\u00f6pse\" engagiert wurden - ein Putztrupp, der zwar wenig putzt, daf\u00fcr aber umso mehr K\u00f6rpereinsatz zeigt. Mit 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) u.a.", - "drm_token": null, - "duration_seconds": 1608, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk5Mzcy", - "exact_duration": 1608840, - "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": "Wischen ist Macht: Ab in den Keller", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14199372, - "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-04-30T22:53:49+02:00", - "killdate": "2024-05-21T00:27:00+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-10-30T23:26:02+01:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Ab-in-den-Keller\/14199372", - "share_subject": "Wischen ist Macht: Ab in den Keller vom 30.10.2023 um 22:53 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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "\"Dreck.Weg.Sendracek\" r\u00fcckt diesmal bei der Versicherung an. Dort angekommen erkl\u00e4rt ihnen aber Benno Neuner, dass sie diesmal nicht die B\u00fcror\u00e4ume reinigen sollen, sondern seine im Keller gelegene Bar. Und das nur, weil f\u00fcr die B\u00fcros \"Die Wischm\u00f6pse\" engagiert wurden - ein Putztrupp, der zwar wenig putzt, daf\u00fcr aber umso mehr K\u00f6rpereinsatz zeigt. Mit 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) u.a.", - "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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Ab in den Keller", - "type": "default", - "updated_at": "2024-01-04T11:05:50+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372" - }, - "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\/14199372\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" - }, - "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\/16596204" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862621" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/360032" - } - }, - "_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:14199372,duration:1608840,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=14199372&duration=1608840&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-30T22:53:49+01:00", - "date_as_string": "Mo, 30.10.2023", - "vod_ressort": null, - "description": "\"Dreck.Weg.Sendracek\" r\u00fcckt diesmal bei der Versicherung an. Dort angekommen erkl\u00e4rt ihnen aber Benno Neuner, dass sie diesmal nicht die B\u00fcror\u00e4ume reinigen sollen, sondern seine im Keller gelegene Bar. Und das nur, weil f\u00fcr die B\u00fcros \"Die Wischm\u00f6pse\" engagiert wurden - ein Putztrupp, der zwar wenig putzt, daf\u00fcr aber umso mehr K\u00f6rpereinsatz zeigt. Mit 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) u.a.", - "drm_token": null, - "duration_as_string": "26:48 Min.", - "duration_seconds": 1608, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5NzkxNQ==", - "episode_id": 14199372, - "exact_duration": 1608840, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Ab in den Keller", - "id": 15497915, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-04-30T22:53:49+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15497915, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Ab-in-den-Keller", - "videoduration": 1608, - "episodeduration": 1608, - "episodeid": 14199372, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-30T23:26: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-Ab-in-den-Keller\/14199372\/Wischen-ist-Macht-Ab-in-den-Keller\/15497915", - "share_subject": "Wischen ist Macht: Ab in den Keller - Wischen ist Macht: Ab in den Keller vom 30.10.2023 um 22:53 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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Ab in den Keller", - "updated_at": "2024-01-04T11:05:50+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-10-30_2253_in_01_Wischen-ist-Mac_____14199372__o__1637318368__s15497915", - "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\/15497915" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14199372" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16113651" - }, - "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\/16596204" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497915\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/862622" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497915\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15497915\/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\/14\/thumb_16113651_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.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\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" - }, - "legacy": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/thumb_16113651_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0162\/14\/1291b6edf82906135ee8c57a3b564337ad20a03d.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\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_player.jpeg" - }, - "legacy": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_legacy.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/thumb_16596204_default_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/default_2x3\/0166\/97\/56745f92b28e3a6f176e66acf9e9d0aea5e0c611.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14198481,duration:1509200,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=14198481&duration=1509200&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-23T23:28:21+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "\"Dreck.Weg.Sendracek\" goes Virtual Reality. Michelle und ihr Team werden zu einer Start-Up-Firma gerufen, die die erotischen W\u00fcnsche von Frauen in virtuelle Realit\u00e4t umwandelt. Gleich zu Beginn aber kracht Michelle mit Firmenchefin Xenia zusammen, die der Putzfirma unsauberes Arbeiten unterstellt. Noch dazu muss gerade diesmal alles tiptop sauber sein, es hat sich n\u00e4mlich ein Investor angek\u00fcndigt. Fernando m\u00f6chte der Firma gleich ein PR-Konzept aufdr\u00e4ngen, w\u00e4hrend Mira sich wiederum einem der h\u00fcbschen Mitarbeiter aufdr\u00e4ngt. Dann taucht der mysteri\u00f6se Investor auf und Michelle f\u00e4llt die Kinnlade runter.\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) u.a.", - "drm_token": null, - "duration_seconds": 1509, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk4NDgx", - "exact_duration": 1509200, - "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": "Wischen ist Macht: Fantasie ist Fantasie", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14198481, - "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:00+02:00", - "killdate": "2024-05-21T00:27:00+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-10-23T23:52:02+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Fantasie-ist-Fantasie\/14198481", - "share_subject": "Wischen ist Macht: Fantasie ist Fantasie vom 23.10.2023 um 23:28 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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "\"Dreck.Weg.Sendracek\" goes Virtual Reality. Michelle und ihr Team werden zu einer Start-Up-Firma gerufen, die die erotischen W\u00fcnsche von Frauen in virtuelle Realit\u00e4t umwandelt. Gleich zu Beginn aber kracht Michelle mit Firmenchefin Xenia zusammen, die der Putzfirma unsauberes Arbeiten unterstellt. Noch dazu muss gerade diesmal alles tiptop sauber sein, es hat sich n\u00e4mlich ein Investor angek\u00fcndigt. Fernando m\u00f6chte der Firma gleich ein PR-Konzept aufdr\u00e4ngen, w\u00e4hrend Mira sich wiederum einem der h\u00fcbschen Mitarbeiter aufdr\u00e4ngt. Dann taucht der mysteri\u00f6se Investor auf und Michelle f\u00e4llt die Kinnlade runter.\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) u.a.", - "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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Fantasie ist Fantasie", - "type": "default", - "updated_at": "2024-01-04T10:55:34+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481" - }, - "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\/14198481\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" - }, - "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\/16086180" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860502" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/359032" - } - }, - "_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:14198481,duration:1509200,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=14198481&duration=1509200&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-23T23:28:21+02:00", - "date_as_string": "Mo, 23.10.2023", - "vod_ressort": null, - "description": "\"Dreck.Weg.Sendracek\" goes Virtual Reality. Michelle und ihr Team werden zu einer Start-Up-Firma gerufen, die die erotischen W\u00fcnsche von Frauen in virtuelle Realit\u00e4t umwandelt. Gleich zu Beginn aber kracht Michelle mit Firmenchefin Xenia zusammen, die der Putzfirma unsauberes Arbeiten unterstellt. Noch dazu muss gerade diesmal alles tiptop sauber sein, es hat sich n\u00e4mlich ein Investor angek\u00fcndigt. Fernando m\u00f6chte der Firma gleich ein PR-Konzept aufdr\u00e4ngen, w\u00e4hrend Mira sich wiederum einem der h\u00fcbschen Mitarbeiter aufdr\u00e4ngt. Dann taucht der mysteri\u00f6se Investor auf und Michelle f\u00e4llt die Kinnlade runter.\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) u.a.", - "drm_token": null, - "duration_as_string": "25:09 Min.", - "duration_seconds": 1509, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5Mjk1Mw==", - "episode_id": 14198481, - "exact_duration": 1509200, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Fantasie ist Fantasie", - "id": 15492953, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-21T00:27:00+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15492953, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Fantasie-ist-Fantasie", - "videoduration": 1509, - "episodeduration": 1509, - "episodeid": 14198481, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-23T23:52:02+02: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-Fantasie-ist-Fantasie\/14198481\/Wischen-ist-Macht-Fantasie-ist-Fantasie\/15492953", - "share_subject": "Wischen ist Macht: Fantasie ist Fantasie - Wischen ist Macht: Fantasie ist Fantasie vom 23.10.2023 um 23:28 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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Fantasie ist Fantasie", - "updated_at": "2024-01-04T10:55:34+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-10-23_2328_in_01_Wischen-ist-Mac_____14198481__o__1730590616__s15492953", - "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\/15492953" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198481" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086179" - }, - "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\/16086180" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492953\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860503" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492953\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492953\/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\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.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\/0161\/87\/thumb_16086180_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/f156b456d3a8e79796e32a21616eb05881419986.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086179_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/56a6567ba2da189f0370b10ee17ff73950484057.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\/0161\/87\/thumb_16086180_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086180_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/f156b456d3a8e79796e32a21616eb05881419986.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14198480,duration:1521040,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=14198480&duration=1521040&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-23T22:57:50+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Um eine Jungunternehmer-F\u00f6rderung zu bekommen, muss Michelle am Vortrag des \"Win-Coach\" teilnehmen. W\u00e4hrend Michelle vorerst noch uninteressiert im Kurs sitzt, putzen ihre Mitarbeiter drau\u00dfen mehr oder weniger flei\u00dfig die Schulr\u00e4ume. Valentin wird w\u00e4hrend der Toilettenreinigung von einer Schulm\u00e4dchen-Gang terrorisiert, und Mira ist wie immer unmotiviert. Fernando hingegen ist dabei das Fortbewegungsmittel der Zukunft zu erfinden, einzig Zoe putzt flei\u00dfig vor sich hin. Um ihr Team doch zu motivieren, versucht Michelle es doch noch mit dem gerade Gelernten, l\u00f6st dabei aber nur noch mehr Chaos aus.\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) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1521, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk4NDgw", - "exact_duration": 1521040, - "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": "Wischen ist Macht: Die Win-Methode", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14198480, - "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:00+02:00", - "killdate": "2024-05-21T00:27:00+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-10-23T23:22:01+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Die-Win-Methode\/14198480", - "share_subject": "Wischen ist Macht: Die Win-Methode vom 23.10.2023 um 22:57 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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Um eine Jungunternehmer-F\u00f6rderung zu bekommen, muss Michelle am Vortrag des \"Win-Coach\" teilnehmen. W\u00e4hrend Michelle vorerst noch uninteressiert im Kurs sitzt, putzen ihre Mitarbeiter drau\u00dfen mehr oder weniger flei\u00dfig die Schulr\u00e4ume. Valentin wird w\u00e4hrend der Toilettenreinigung von einer Schulm\u00e4dchen-Gang terrorisiert, und Mira ist wie immer unmotiviert. Fernando hingegen ist dabei das Fortbewegungsmittel der Zukunft zu erfinden, einzig Zoe putzt flei\u00dfig vor sich hin. Um ihr Team doch zu motivieren, versucht Michelle es doch noch mit dem gerade Gelernten, l\u00f6st dabei aber nur noch mehr Chaos aus.\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) u.a.\r\nBildquelle: ORF\/ORF", - "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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Die Win-Methode", - "type": "default", - "updated_at": "2024-01-04T10:53:46+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480" - }, - "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\/14198480\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" - }, - "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\/16086178" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860500" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/359031" - } - }, - "_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:14198480,duration:1521040,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=14198480&duration=1521040&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-23T22:57:50+02:00", - "date_as_string": "Mo, 23.10.2023", - "vod_ressort": null, - "description": "Um eine Jungunternehmer-F\u00f6rderung zu bekommen, muss Michelle am Vortrag des \"Win-Coach\" teilnehmen. W\u00e4hrend Michelle vorerst noch uninteressiert im Kurs sitzt, putzen ihre Mitarbeiter drau\u00dfen mehr oder weniger flei\u00dfig die Schulr\u00e4ume. Valentin wird w\u00e4hrend der Toilettenreinigung von einer Schulm\u00e4dchen-Gang terrorisiert, und Mira ist wie immer unmotiviert. Fernando hingegen ist dabei das Fortbewegungsmittel der Zukunft zu erfinden, einzig Zoe putzt flei\u00dfig vor sich hin. Um ihr Team doch zu motivieren, versucht Michelle es doch noch mit dem gerade Gelernten, l\u00f6st dabei aber nur noch mehr Chaos aus.\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) u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "25:21 Min.", - "duration_seconds": 1521, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ5Mjk1Mg==", - "episode_id": 14198480, - "exact_duration": 1521040, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Die Win-Methode", - "id": 15492952, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-21T00:27:00+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15492952, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Die-Win-Methode", - "videoduration": 1521, - "episodeduration": 1521, - "episodeid": 14198480, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-23T23:22:01+02: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-Die-Win-Methode\/14198480\/Wischen-ist-Macht-Die-Win-Methode\/15492952", - "share_subject": "Wischen ist Macht: Die Win-Methode - Wischen ist Macht: Die Win-Methode vom 23.10.2023 um 22:57 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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Die Win-Methode", - "updated_at": "2024-01-04T10:53:46+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-10-23_2257_in_01_Wischen-ist-Mac_____14198480__o__2007816101__s15492952", - "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\/15492952" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14198480" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16086177" - }, - "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\/16086178" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492952\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/860501" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492952\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15492952\/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\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.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\/0161\/87\/thumb_16086178_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/d1b8f1321a6956d99b4a82504431d9c95daec222.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/thumb_16086177_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/87\/74b041ebad49c3cc84e829acfd2141727c80d7b2.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\/0161\/87\/thumb_16086178_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/thumb_16086178_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/87\/d1b8f1321a6956d99b4a82504431d9c95daec222.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14197574,duration:1459200,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=14197574&duration=1459200&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-16T23:25:13+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Michelle (Ursula Strauss) und ihr Team schieben Dienst in der Bestattung. Diesmal aber herrscht besonders unheimliche Stimmung dort, nachdem Mira (Zeynep Buyrac) einen mysteri\u00f6sen Mann im Trenchcoat herumschleichen sieht. Dieser entpuppt sich dann auch gleich als doppelte Gefahr f\u00fcr Michelle \u2013 er ist n\u00e4mlich nicht nur einer ihrer ehemaligen Verehrer, sondern auch noch Kontrolleur des Magistrats. Michelles Team strengt sich besonders an, alles richtig zu machen, doch Valentin (Manuel Sefciuc) schl\u00e4gt etwas \u00fcbers Ziel hinaus, w\u00e4hrend Mira ihr Talent als Kupplerin entdeckt.\r\nBesetzung: 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), David Oberkogler (Inspektor Herbert Muchitsch)", - "drm_token": null, - "duration_seconds": 1459, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk3NTc0", - "exact_duration": 1459200, - "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": "Wischen ist Macht: Hast du Hobbies?", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14197574, - "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-04-16T23:25:13+02:00", - "killdate": "2024-05-21T00:27:00+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-10-17T00:16:01+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Hast-du-Hobbies\/14197574", - "share_subject": "Wischen ist Macht: Hast du Hobbies? vom 16.10.2023 um 23:25 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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Michelle (Ursula Strauss) und ihr Team schieben Dienst in der Bestattung. Diesmal aber herrscht besonders unheimliche Stimmung dort, nachdem Mira (Zeynep Buyrac) einen mysteri\u00f6sen Mann im Trenchcoat herumschleichen sieht. Dieser entpuppt sich dann auch gleich als doppelte Gefahr f\u00fcr Michelle \u2013 er ist n\u00e4mlich nicht nur einer ihrer ehemaligen Verehrer, sondern auch noch Kontrolleur des Magistrats. Michelles Team strengt sich besonders an, alles richtig zu machen, doch Valentin (Manuel Sefciuc) schl\u00e4gt etwas \u00fcbers Ziel hinaus, w\u00e4hrend Mira ihr Talent als Kupplerin entdeckt.\r\nBesetzung: 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), David Oberkogler (Inspektor Herbert Muchitsch)", - "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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Hast du Hobbies?", - "type": "default", - "updated_at": "2024-01-04T10:00:22+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574" - }, - "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\/14197574\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" - }, - "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\/16325284" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/857206" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357767" - } - }, - "_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:14197574,duration:1459200,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=14197574&duration=1459200&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-16T23:25:13+02:00", - "date_as_string": "Mo, 16.10.2023", - "vod_ressort": null, - "description": "Michelle (Ursula Strauss) und ihr Team schieben Dienst in der Bestattung. Diesmal aber herrscht besonders unheimliche Stimmung dort, nachdem Mira (Zeynep Buyrac) einen mysteri\u00f6sen Mann im Trenchcoat herumschleichen sieht. Dieser entpuppt sich dann auch gleich als doppelte Gefahr f\u00fcr Michelle \u2013 er ist n\u00e4mlich nicht nur einer ihrer ehemaligen Verehrer, sondern auch noch Kontrolleur des Magistrats. Michelles Team strengt sich besonders an, alles richtig zu machen, doch Valentin (Manuel Sefciuc) schl\u00e4gt etwas \u00fcbers Ziel hinaus, w\u00e4hrend Mira ihr Talent als Kupplerin entdeckt.\r\nBesetzung: 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), David Oberkogler (Inspektor Herbert Muchitsch)", - "drm_token": null, - "duration_as_string": "24:19 Min.", - "duration_seconds": 1459, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzEwNQ==", - "episode_id": 14197574, - "exact_duration": 1459200, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Hast du Hobbies?", - "id": 15523105, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-04-16T23:25:13+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15523105, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Hast-du-Hobbies", - "videoduration": 1459, - "episodeduration": 1459, - "episodeid": 14197574, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-17T00:16:01+02: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-Hast-du-Hobbies\/14197574\/Wischen-ist-Macht-Hast-du-Hobbies\/15523105", - "share_subject": "Wischen ist Macht: Hast du Hobbies? - Wischen ist Macht: Hast du Hobbies? vom 16.10.2023 um 23:25 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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Hast du Hobbies?", - "updated_at": "2024-01-04T10:00:22+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-10-16_2325_in_01_Wischen-ist-Mac_____14197574__o__2146836980__s15523105", - "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\/15523105" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197574" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325283" - }, - "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\/16325284" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523105\/links" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523105\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523105\/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_16325283_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.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_16325284_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/a4c2b8eee29c51fe616f89be3500bc01ce34b8c4.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325283_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e76eab018743702709c69252eb79f044046fd7c.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_16325284_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325284_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/a4c2b8eee29c51fe616f89be3500bc01ce34b8c4.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14197573,duration:1419320,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=14197573&duration=1419320&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-16T22:56:14+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "\u201eDreck.Weg.Sendracek\u201c putzt wieder mal bei den abgehalfterten Rockstars rund um \u201eShit happens\u201c-S\u00e4nger Johnny Woody (Wolfram Berger). Michelle (Ursula Strauss) kann sich allerdings \u00fcberhaupt nicht auf die Arbeit konzentrieren. Ihr Ex-Mann Hugo (Thomas Mraz) hat ihr n\u00e4mlich mitgeteilt, dass seine Freundin schwanger ist und Michelle ihm nicht nur weiterhin Unterhalt zahlen soll, sondern zus\u00e4tzlich auch noch Kindergeld. Und bei den Ex-Rockern geht es \u00e4hnlich zu. Pamela (Doris Hindinger) glaubt schwanger zu sein, die Frage ist nur, ob es Johnnys oder Gingers (Helmut Bohatsch) Kind ist. Johnnys Frau Janis (Eva Maria Marold) ist komplett unbeeindruckt vom Chaos und interessiert sich mehr f\u00fcr Fernando.\r\nBesetzung: 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)", - "drm_token": null, - "duration_seconds": 1419, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk3NTcz", - "exact_duration": 1419320, - "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": "Wischen ist Macht: Bombe", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14197573, - "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-04-16T22:56:14+02:00", - "killdate": "2024-05-21T00:27:00+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-10-16T23:46:01+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Bombe\/14197573", - "share_subject": "Wischen ist Macht: Bombe vom 16.10.2023 um 22:56 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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "\u201eDreck.Weg.Sendracek\u201c putzt wieder mal bei den abgehalfterten Rockstars rund um \u201eShit happens\u201c-S\u00e4nger Johnny Woody (Wolfram Berger). Michelle (Ursula Strauss) kann sich allerdings \u00fcberhaupt nicht auf die Arbeit konzentrieren. Ihr Ex-Mann Hugo (Thomas Mraz) hat ihr n\u00e4mlich mitgeteilt, dass seine Freundin schwanger ist und Michelle ihm nicht nur weiterhin Unterhalt zahlen soll, sondern zus\u00e4tzlich auch noch Kindergeld. Und bei den Ex-Rockern geht es \u00e4hnlich zu. Pamela (Doris Hindinger) glaubt schwanger zu sein, die Frage ist nur, ob es Johnnys oder Gingers (Helmut Bohatsch) Kind ist. Johnnys Frau Janis (Eva Maria Marold) ist komplett unbeeindruckt vom Chaos und interessiert sich mehr f\u00fcr Fernando.\r\nBesetzung: 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)", - "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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Bombe", - "type": "default", - "updated_at": "2024-01-04T10:00:00+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573" - }, - "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\/14197573\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" - }, - "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\/16325282" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/857194" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357766" - } - }, - "_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:14197573,duration:1419320,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=14197573&duration=1419320&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-16T22:56:14+02:00", - "date_as_string": "Mo, 16.10.2023", - "vod_ressort": null, - "description": "\u201eDreck.Weg.Sendracek\u201c putzt wieder mal bei den abgehalfterten Rockstars rund um \u201eShit happens\u201c-S\u00e4nger Johnny Woody (Wolfram Berger). Michelle (Ursula Strauss) kann sich allerdings \u00fcberhaupt nicht auf die Arbeit konzentrieren. Ihr Ex-Mann Hugo (Thomas Mraz) hat ihr n\u00e4mlich mitgeteilt, dass seine Freundin schwanger ist und Michelle ihm nicht nur weiterhin Unterhalt zahlen soll, sondern zus\u00e4tzlich auch noch Kindergeld. Und bei den Ex-Rockern geht es \u00e4hnlich zu. Pamela (Doris Hindinger) glaubt schwanger zu sein, die Frage ist nur, ob es Johnnys oder Gingers (Helmut Bohatsch) Kind ist. Johnnys Frau Janis (Eva Maria Marold) ist komplett unbeeindruckt vom Chaos und interessiert sich mehr f\u00fcr Fernando.\r\nBesetzung: 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)", - "drm_token": null, - "duration_as_string": "23:39 Min.", - "duration_seconds": 1419, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzEwNA==", - "episode_id": 14197573, - "exact_duration": 1419320, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Bombe", - "id": 15523104, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-04-16T22:56:14+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2100-01-01T00:00:00+01:00", - "livedate_extern": "2100-01-01T00:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15523104, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Bombe", - "videoduration": 1419, - "episodeduration": 1419, - "episodeid": 14197573, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-16T23:46:01+02: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-Bombe\/14197573\/Wischen-ist-Macht-Bombe\/15523104", - "share_subject": "Wischen ist Macht: Bombe - Wischen ist Macht: Bombe vom 16.10.2023 um 22:56 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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Bombe", - "updated_at": "2024-01-04T10:00:00+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-10-16_2256_in_01_Wischen-ist-Mac_____14197573__o__2036370316__s15523104", - "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\/15523104" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14197573" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325281" - }, - "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\/16325282" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523104\/links" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523104\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523104\/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_16325281_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.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_16325282_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/0570ece059dbba72aa3fdacfd23bd83650e7cb64.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325281_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/1e149c8e0a8c4fd0ab6b56a6694325c34a8e5310.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_16325282_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325282_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/0570ece059dbba72aa3fdacfd23bd83650e7cb64.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14196635,duration:1349040,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=14196635&duration=1349040&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-09T23:24:15+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Der f\u00fcr Michelle (Ursula Strauss) wahrscheinlich h\u00e4rteste Auftrag steht an: Bei ihrer Mutter Gerda (Andrea H\u00e4ndler) putzen. Diese hat Michelle und ihr Team mit einem Vorwand in ihre Wohnung gelockt. Eigentlich m\u00f6chte sie ihre Tochter endlich verkuppeln und hat daf\u00fcr Herrenbesuch eingeladen. Gerdas Auswahl reicht von sch\u00f6n, aber dumm, bis zu schr\u00e4g, daf\u00fcr gut best\u00fcckt. Eigentlich will Michelle nur mehr weg, doch dann passiert ein Malheur nach dem anderen, und bald steht sogar Fernandos (Stefano Bernardin) Leben auf dem Spiel.\r\nBesetzung:\r\nUrsula Strauss (Michelle Sendracek)\r\nStefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz)\r\nZeynep Buyrac (Mira Petrenko)\r\nManuel Sefciuc (Valentin Gradischnig)\r\nLilian Jane Gartner (Zoe) u.v.m.\r\n\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1349, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk2NjM1", - "exact_duration": 1349040, - "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": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14196635, - "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:00+02:00", - "killdate": "2024-05-21T00:27:00+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-10-09T23:50:02+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Schmusen-ist-auch-nicht-betruegen\/14196635", - "share_subject": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen vom 09.10.2023 um 23:24 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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Comedy-Serie", - "teaser_text": "Der f\u00fcr Michelle (Ursula Strauss) wahrscheinlich h\u00e4rteste Auftrag steht an: Bei ihrer Mutter Gerda (Andrea H\u00e4ndler) putzen. Diese hat Michelle und ihr Team mit einem Vorwand in ihre Wohnung gelockt. Eigentlich m\u00f6chte sie ihre Tochter endlich verkuppeln und hat daf\u00fcr Herrenbesuch eingeladen. Gerdas Auswahl reicht von sch\u00f6n, aber dumm, bis zu schr\u00e4g, daf\u00fcr gut best\u00fcckt. Eigentlich will Michelle nur mehr weg, doch dann passiert ein Malheur nach dem anderen, und bald steht sogar Fernandos (Stefano Bernardin) Leben auf dem Spiel.\r\nBesetzung:\r\nUrsula Strauss (Michelle Sendracek)\r\nStefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz)\r\nZeynep Buyrac (Mira Petrenko)\r\nManuel Sefciuc (Valentin Gradischnig)\r\nLilian Jane Gartner (Zoe) u.v.m.\r\n\r\nBildquelle: ORF\/ORF", - "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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", - "type": "default", - "updated_at": "2024-01-04T09:49:19+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635" - }, - "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\/14196635\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" - }, - "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\/16005387" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855090" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357519" - } - }, - "_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:14196635,duration:1349040,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=14196635&duration=1349040&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-09T23:24:15+02:00", - "date_as_string": "Mo, 9.10.2023", - "vod_ressort": null, - "description": "Der f\u00fcr Michelle (Ursula Strauss) wahrscheinlich h\u00e4rteste Auftrag steht an: Bei ihrer Mutter Gerda (Andrea H\u00e4ndler) putzen. Diese hat Michelle und ihr Team mit einem Vorwand in ihre Wohnung gelockt. Eigentlich m\u00f6chte sie ihre Tochter endlich verkuppeln und hat daf\u00fcr Herrenbesuch eingeladen. Gerdas Auswahl reicht von sch\u00f6n, aber dumm, bis zu schr\u00e4g, daf\u00fcr gut best\u00fcckt. Eigentlich will Michelle nur mehr weg, doch dann passiert ein Malheur nach dem anderen, und bald steht sogar Fernandos (Stefano Bernardin) Leben auf dem Spiel.\r\nBesetzung:\r\nUrsula Strauss (Michelle Sendracek)\r\nStefano Bernardin (Fernando Pablo Rigoberto Sanchez de la Luz)\r\nZeynep Buyrac (Mira Petrenko)\r\nManuel Sefciuc (Valentin Gradischnig)\r\nLilian Jane Gartner (Zoe) u.v.m.\r\n\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "22:29 Min.", - "duration_seconds": 1349, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ4MzM2Mw==", - "episode_id": 14196635, - "exact_duration": 1349040, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", - "id": 15483363, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-21T00:27:00+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15483363, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Schmusen-ist-auch-nicht-betruegen", - "videoduration": 1349, - "episodeduration": 1349, - "episodeid": 14196635, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-09T23:50:02+02: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-Schmusen-ist-auch-nicht-betruegen\/14196635\/Wischen-ist-Macht-Schmusen-ist-auch-nicht-betruegen\/15483363", - "share_subject": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen - Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen vom 09.10.2023 um 23:24 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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "state": "distributed", - "sub_headline": "Comedy-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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Schmusen ist auch nicht betr\u00fcgen", - "updated_at": "2024-01-04T09:49:19+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-10-09_2324_in_01_Wischen-ist-Mac_____14196635__o__1316329806__s15483363", - "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\/15483363" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196635" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005386" - }, - "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\/16005387" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483363\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855091" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483363\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483363\/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\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.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\/0161\/06\/thumb_16005387_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/44332a83a48c05768ad895b42b5bf97e19a9e5e7.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005386_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/171c8d613761c40906c78753ea23dd796b9dd047.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\/0161\/06\/thumb_16005387_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005387_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/44332a83a48c05768ad895b42b5bf97e19a9e5e7.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14196634,duration:1465360,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=14196634&duration=1465360&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-09T22:55:03+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Michelle und ihr Team r\u00fccken diesmal im Lokal von Barbesitzer und Achtsamkeitstrainer Benno Neuner an. Die Bar hat eindeutig eine wilde Nacht hinter sich und \"Dreck.Weg.Sendracek\" eigentlich alle H\u00e4nde voll zu tun - doch Benno Neuner schickt das Reinigungsteam wieder nachhause. Michelle l\u00e4sst sich diesen respektlosen Umgang mit ihrer Arbeitszeit nat\u00fcrlich nicht gefallen und beginnt eine Diskussion mit Neuner. Da taucht pl\u00f6tzlich Michelles Ex-Mann Hugo auf und bringt ihr seine Psychiaterrechnung vorbei. Sie sei ja immerhin auch schuld an seinem labilen psychischen Zustand. W\u00e4hrend Michelle noch mit den Herren diskutieren muss, findet ihr Team einen bewusstlosen Mann in der Bar.\r\nBesetzung: 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), Anton Noori (Benno Neuner), Patrick Seletzky (Gruppeninspektor).\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1465, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk2NjM0", - "exact_duration": 1465360, - "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": "Wischen ist Macht: Veni vidi wischi", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14196634, - "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:00+02:00", - "killdate": "2024-05-21T00:27:00+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-10-09T23:22:01+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Veni-vidi-wischi\/14196634", - "share_subject": "Wischen ist Macht: Veni vidi wischi vom 09.10.2023 um 22:55 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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Comedy-Serie", - "teaser_text": "Michelle und ihr Team r\u00fccken diesmal im Lokal von Barbesitzer und Achtsamkeitstrainer Benno Neuner an. Die Bar hat eindeutig eine wilde Nacht hinter sich und \"Dreck.Weg.Sendracek\" eigentlich alle H\u00e4nde voll zu tun - doch Benno Neuner schickt das Reinigungsteam wieder nachhause. Michelle l\u00e4sst sich diesen respektlosen Umgang mit ihrer Arbeitszeit nat\u00fcrlich nicht gefallen und beginnt eine Diskussion mit Neuner. Da taucht pl\u00f6tzlich Michelles Ex-Mann Hugo auf und bringt ihr seine Psychiaterrechnung vorbei. Sie sei ja immerhin auch schuld an seinem labilen psychischen Zustand. W\u00e4hrend Michelle noch mit den Herren diskutieren muss, findet ihr Team einen bewusstlosen Mann in der Bar.\r\nBesetzung: 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), Anton Noori (Benno Neuner), Patrick Seletzky (Gruppeninspektor).\r\nBildquelle: ORF\/ORF", - "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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Veni vidi wischi", - "type": "default", - "updated_at": "2024-01-04T09:44:03+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634" - }, - "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\/14196634\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" - }, - "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\/16005402" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855078" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357518" - } - }, - "_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:14196634,duration:1465360,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=14196634&duration=1465360&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-09T22:55:03+02:00", - "date_as_string": "Mo, 9.10.2023", - "vod_ressort": null, - "description": "Michelle und ihr Team r\u00fccken diesmal im Lokal von Barbesitzer und Achtsamkeitstrainer Benno Neuner an. Die Bar hat eindeutig eine wilde Nacht hinter sich und \"Dreck.Weg.Sendracek\" eigentlich alle H\u00e4nde voll zu tun - doch Benno Neuner schickt das Reinigungsteam wieder nachhause. Michelle l\u00e4sst sich diesen respektlosen Umgang mit ihrer Arbeitszeit nat\u00fcrlich nicht gefallen und beginnt eine Diskussion mit Neuner. Da taucht pl\u00f6tzlich Michelles Ex-Mann Hugo auf und bringt ihr seine Psychiaterrechnung vorbei. Sie sei ja immerhin auch schuld an seinem labilen psychischen Zustand. W\u00e4hrend Michelle noch mit den Herren diskutieren muss, findet ihr Team einen bewusstlosen Mann in der Bar.\r\nBesetzung: 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), Anton Noori (Benno Neuner), Patrick Seletzky (Gruppeninspektor).\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "24:25 Min.", - "duration_seconds": 1465, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ4MzM2Mg==", - "episode_id": 14196634, - "exact_duration": 1465360, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Veni vidi wischi", - "id": 15483362, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-21T00:27:00+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15483362, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Veni-vidi-wischi", - "videoduration": 1465, - "episodeduration": 1465, - "episodeid": 14196634, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-09T23:22:01+02: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-Veni-vidi-wischi\/14196634\/Wischen-ist-Macht-Veni-vidi-wischi\/15483362", - "share_subject": "Wischen ist Macht: Veni vidi wischi - Wischen ist Macht: Veni vidi wischi vom 09.10.2023 um 22:55 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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "state": "distributed", - "sub_headline": "Comedy-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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Veni vidi wischi", - "updated_at": "2024-01-04T09:44:03+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-10-09_2255_in_01_Wischen-ist-Mac_____14196634__o__1883874451__s15483362", - "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\/15483362" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14196634" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16005401" - }, - "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\/16005402" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483362\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/855079" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483362\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15483362\/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\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.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\/0161\/06\/thumb_16005402_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/29327a0ad6810c3df80efb0fad4dcbc1b6d09d37.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/thumb_16005401_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0161\/06\/adfb376fb53b966d13b7c19736227561a3b28a07.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\/0161\/06\/thumb_16005402_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/thumb_16005402_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0161\/06\/29327a0ad6810c3df80efb0fad4dcbc1b6d09d37.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14195740,duration:1536800,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=14195740&duration=1536800&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-02T23:19:59+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Reinigungsfirma trifft Kunst. Michelle und ihre Truppe werden von der exzentrischen Museumsdirektorin Frida Gro\u00df-Klein zu einem besonders heiklen Auftrag gerufen. Staatssekret\u00e4r Peter Hruska hat sich n\u00e4mlich angek\u00fcndigt, um \u00fcber die F\u00f6rderung des Museums zu bestimmen. Somit muss alles tiptop sein und \"Dreck.Weg.Sendracek\" macht sich an die Arbeit. Dann aber entdeckt Fernando sein kreatives Alter Ego, Zoe st\u00f6\u00dft sich an einem Kunstwerk und die pr\u00e4potente Art des Staatssekret\u00e4rs erregt die Gem\u00fcter, vor allem das von Michelle.\r\nBesetzung: 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), Adele Neuhauser (Direktorin Frida Gro\u00df-Klein), Lukas Spisser (Staatssekret\u00e4r Hruska), Wolfgang Oliver (Georg), u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1536, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk1NzQw", - "exact_duration": 1536800, - "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": "Wischen ist Macht: Ready Made", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14195740, - "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:00+02:00", - "killdate": "2024-05-21T00:27:00+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-10-02T23:50:02+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Ready-Made\/14195740", - "share_subject": "Wischen ist Macht: Ready Made vom 02.10.2023 um 23:19 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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Reinigungsfirma trifft Kunst. Michelle und ihre Truppe werden von der exzentrischen Museumsdirektorin Frida Gro\u00df-Klein zu einem besonders heiklen Auftrag gerufen. Staatssekret\u00e4r Peter Hruska hat sich n\u00e4mlich angek\u00fcndigt, um \u00fcber die F\u00f6rderung des Museums zu bestimmen. Somit muss alles tiptop sein und \"Dreck.Weg.Sendracek\" macht sich an die Arbeit. Dann aber entdeckt Fernando sein kreatives Alter Ego, Zoe st\u00f6\u00dft sich an einem Kunstwerk und die pr\u00e4potente Art des Staatssekret\u00e4rs erregt die Gem\u00fcter, vor allem das von Michelle.\r\nBesetzung: 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), Adele Neuhauser (Direktorin Frida Gro\u00df-Klein), Lukas Spisser (Staatssekret\u00e4r Hruska), Wolfgang Oliver (Georg), u.a.\r\nBildquelle: ORF\/ORF", - "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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Ready Made", - "type": "default", - "updated_at": "2024-01-04T09:32:09+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740" - }, - "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\/14195740\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" - }, - "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\/15977051" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852887" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357514" - } - }, - "_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:14195740,duration:1536800,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=14195740&duration=1536800&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-02T23:19:59+02:00", - "date_as_string": "Mo, 2.10.2023", - "vod_ressort": null, - "description": "Reinigungsfirma trifft Kunst. Michelle und ihre Truppe werden von der exzentrischen Museumsdirektorin Frida Gro\u00df-Klein zu einem besonders heiklen Auftrag gerufen. Staatssekret\u00e4r Peter Hruska hat sich n\u00e4mlich angek\u00fcndigt, um \u00fcber die F\u00f6rderung des Museums zu bestimmen. Somit muss alles tiptop sein und \"Dreck.Weg.Sendracek\" macht sich an die Arbeit. Dann aber entdeckt Fernando sein kreatives Alter Ego, Zoe st\u00f6\u00dft sich an einem Kunstwerk und die pr\u00e4potente Art des Staatssekret\u00e4rs erregt die Gem\u00fcter, vor allem das von Michelle.\r\nBesetzung: 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), Adele Neuhauser (Direktorin Frida Gro\u00df-Klein), Lukas Spisser (Staatssekret\u00e4r Hruska), Wolfgang Oliver (Georg), u.a.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "25:36 Min.", - "duration_seconds": 1536, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ3ODc3NQ==", - "episode_id": 14195740, - "exact_duration": 1536800, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Ready Made", - "id": 15478775, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-21T00:27:00+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15478775, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Ready-Made", - "videoduration": 1536, - "episodeduration": 1536, - "episodeid": 14195740, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-02T23:50:02+02: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-Ready-Made\/14195740\/Wischen-ist-Macht-Ready-Made\/15478775", - "share_subject": "Wischen ist Macht: Ready Made - Wischen ist Macht: Ready Made vom 02.10.2023 um 23:19 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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Ready Made", - "updated_at": "2024-01-04T09:32:09+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-10-02_2319_in_01_Wischen-ist-Mac_____14195740__o__1467274598__s15478775", - "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\/15478775" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195740" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977050" - }, - "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\/15977051" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478775\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852888" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478775\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478775\/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\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.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\/0160\/78\/thumb_15977051_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/5b3b6ad41d1548ef3a260a87c85bf5c3eac5c96e.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977050_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/abf043b3669bdbe0aaff9df128b8ee542a8232ca.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\/0160\/78\/thumb_15977051_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977051_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/5b3b6ad41d1548ef3a260a87c85bf5c3eac5c96e.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14195739,duration:1468920,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=14195739&duration=1468920&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-10-02T22:51:06+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Michelle und ihr Team r\u00fccken zu ihrer Schicht im Fu\u00dfballstadion an. Dort werden sie vom Verbandspr\u00e4sidenten Leopold H\u00fcbner auff\u00e4llig \u00fcberschw\u00e4nglich begr\u00fc\u00dft. Wie sich herausstellt, verdient dieser sich zu seinem mickrigen Funktion\u00e4rsgehalt noch etwas als Unternehmer dazu und m\u00f6chte in Michelles Firma investieren. Michelle ist nat\u00fcrlich begeistert, daber dann taucht ihre Erzfeindin und Putzfirmen-Konkurrentin Jennifer Plank auf. Zwischen den beiden entbrennt ein erbitterter Kampf um H\u00fcbners Geld und nebenbei haben die Firmenchefinnen auch noch eine private Rechnung miteinander offen.\r\nBesetzung: 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), Katharina Stra\u00dfer (Jennifer Plank), Peter Faerber (Leopold H\u00fcbner), Wolfgang Rauh (Luka), u.a.", - "drm_token": null, - "duration_seconds": 1468, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk1NzM5", - "exact_duration": 1468920, - "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": "Wischen ist Macht: Jausengegner", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14195739, - "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:00+02:00", - "killdate": "2024-05-21T00:27:00+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-10-02T23:20:01+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Jausengegner\/14195739", - "share_subject": "Wischen ist Macht: Jausengegner vom 02.10.2023 um 22:51 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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Michelle und ihr Team r\u00fccken zu ihrer Schicht im Fu\u00dfballstadion an. Dort werden sie vom Verbandspr\u00e4sidenten Leopold H\u00fcbner auff\u00e4llig \u00fcberschw\u00e4nglich begr\u00fc\u00dft. Wie sich herausstellt, verdient dieser sich zu seinem mickrigen Funktion\u00e4rsgehalt noch etwas als Unternehmer dazu und m\u00f6chte in Michelles Firma investieren. Michelle ist nat\u00fcrlich begeistert, daber dann taucht ihre Erzfeindin und Putzfirmen-Konkurrentin Jennifer Plank auf. Zwischen den beiden entbrennt ein erbitterter Kampf um H\u00fcbners Geld und nebenbei haben die Firmenchefinnen auch noch eine private Rechnung miteinander offen.\r\nBesetzung: 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), Katharina Stra\u00dfer (Jennifer Plank), Peter Faerber (Leopold H\u00fcbner), Wolfgang Rauh (Luka), u.a.", - "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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Jausengegner", - "type": "default", - "updated_at": "2024-01-04T09:31:43+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739" - }, - "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\/14195739\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" - }, - "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\/15977070" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852885" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357513" - } - }, - "_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:14195739,duration:1468920,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=14195739&duration=1468920&advertisingtags=", - "blackfades": [], - "episode_date": "2023-10-02T22:51:06+02:00", - "date_as_string": "Mo, 2.10.2023", - "vod_ressort": null, - "description": "Michelle und ihr Team r\u00fccken zu ihrer Schicht im Fu\u00dfballstadion an. Dort werden sie vom Verbandspr\u00e4sidenten Leopold H\u00fcbner auff\u00e4llig \u00fcberschw\u00e4nglich begr\u00fc\u00dft. Wie sich herausstellt, verdient dieser sich zu seinem mickrigen Funktion\u00e4rsgehalt noch etwas als Unternehmer dazu und m\u00f6chte in Michelles Firma investieren. Michelle ist nat\u00fcrlich begeistert, daber dann taucht ihre Erzfeindin und Putzfirmen-Konkurrentin Jennifer Plank auf. Zwischen den beiden entbrennt ein erbitterter Kampf um H\u00fcbners Geld und nebenbei haben die Firmenchefinnen auch noch eine private Rechnung miteinander offen.\r\nBesetzung: 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), Katharina Stra\u00dfer (Jennifer Plank), Peter Faerber (Leopold H\u00fcbner), Wolfgang Rauh (Luka), u.a.", - "drm_token": null, - "duration_as_string": "24:28 Min.", - "duration_seconds": 1468, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTQ3ODc3Mw==", - "episode_id": 14195739, - "exact_duration": 1468920, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Jausengegner", - "id": 15478773, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-05-21T00:27:00+02:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2023-12-27T10:00:00+01:00", - "livedate_extern": "2023-12-27T10:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15478773, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Jausengegner", - "videoduration": 1468, - "episodeduration": 1468, - "episodeid": 14195739, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-10-02T23:20:01+02: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-Jausengegner\/14195739\/Wischen-ist-Macht-Jausengegner\/15478773", - "share_subject": "Wischen ist Macht: Jausengegner - Wischen ist Macht: Jausengegner vom 02.10.2023 um 22:51 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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Jausengegner", - "updated_at": "2024-01-04T09:31:43+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-10-02_2251_in_01_Wischen-ist-Mac_____14195739__o__2062477548__s15478773", - "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\/15478773" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14195739" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/15977069" - }, - "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\/15977070" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478773\/links" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/852886" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478773\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15478773\/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\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.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\/0160\/78\/thumb_15977070_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/cbef0bab4c92c6f28ea683d56c654bb0dc112b71.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/thumb_15977069_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0160\/78\/7ca7500e1dcea3ef4036720f5a72b5e05a09f6ca.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\/0160\/78\/thumb_15977070_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/thumb_15977070_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0160\/78\/cbef0bab4c92c6f28ea683d56c654bb0dc112b71.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14194932,duration:1360520,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=14194932&duration=1360520&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-09-25T23:25:20+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Ein ukrainischer Gesch\u00e4ftsmann ist tot, und Michelle (Ursula Strauss) und ihr Team m\u00fcssen eine Extraschicht in der Bestattung schieben. Dort weist sie die exzentrische Leichenschminkerin Almut (Karin Lischka) in ihre Aufgaben ein, bevor sie f\u00fcrs Erste wieder verschwindet. Valentin (Manuel Sefciuc) ist \u00e4u\u00dferst unmotiviert, findet am Abend doch der ber\u00fcchtigte J\u00e4gerball statt, den er unbedingt noch besuchen m\u00f6chte. Fernando (Stefano Bernardin) hingegen l\u00e4uft trotz der morbiden Umgebung zu H\u00f6chstform auf, denn er ist gerade verliebt und m\u00f6chte Dichter werden. Mira (Zeynep Buyrac) trifft unterdessen beim Sargputzen auf ihren Cousin Oleg (Daniel Wagner), der Verbindungen zum toten Ukrainer hatte. Und bald schon wird Michelles ganzes Team unfreiwillig in Olegs kriminelle Machenschaft hineingezogen.", - "drm_token": null, - "duration_seconds": 1360, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk0OTMy", - "exact_duration": 1360520, - "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": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14194932, - "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-03-25T23:25:20+01:00", - "killdate": "2024-05-21T00:27:00+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-09-26T00:36:02+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Eine-Hand-waescht-die-andere\/14194932", - "share_subject": "Wischen ist Macht: Eine Hand w\u00e4scht die andere vom 25.09.2023 um 23:25 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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Ein ukrainischer Gesch\u00e4ftsmann ist tot, und Michelle (Ursula Strauss) und ihr Team m\u00fcssen eine Extraschicht in der Bestattung schieben. Dort weist sie die exzentrische Leichenschminkerin Almut (Karin Lischka) in ihre Aufgaben ein, bevor sie f\u00fcrs Erste wieder verschwindet. Valentin (Manuel Sefciuc) ist \u00e4u\u00dferst unmotiviert, findet am Abend doch der ber\u00fcchtigte J\u00e4gerball statt, den er unbedingt noch besuchen m\u00f6chte. Fernando (Stefano Bernardin) hingegen l\u00e4uft trotz der morbiden Umgebung zu H\u00f6chstform auf, denn er ist gerade verliebt und m\u00f6chte Dichter werden. Mira (Zeynep Buyrac) trifft unterdessen beim Sargputzen auf ihren Cousin Oleg (Daniel Wagner), der Verbindungen zum toten Ukrainer hatte. Und bald schon wird Michelles ganzes Team unfreiwillig in Olegs kriminelle Machenschaft hineingezogen.", - "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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", - "type": "default", - "updated_at": "2023-12-30T16:09:47+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932" - }, - "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\/14194932\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" - }, - "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\/16325278" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/850830" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357511" - } - }, - "_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:14194932,duration:1360520,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=14194932&duration=1360520&advertisingtags=", - "blackfades": [], - "episode_date": "2023-09-25T23:25:20+02:00", - "date_as_string": "Mo, 25.9.2023", - "vod_ressort": null, - "description": "Ein ukrainischer Gesch\u00e4ftsmann ist tot, und Michelle (Ursula Strauss) und ihr Team m\u00fcssen eine Extraschicht in der Bestattung schieben. Dort weist sie die exzentrische Leichenschminkerin Almut (Karin Lischka) in ihre Aufgaben ein, bevor sie f\u00fcrs Erste wieder verschwindet. Valentin (Manuel Sefciuc) ist \u00e4u\u00dferst unmotiviert, findet am Abend doch der ber\u00fcchtigte J\u00e4gerball statt, den er unbedingt noch besuchen m\u00f6chte. Fernando (Stefano Bernardin) hingegen l\u00e4uft trotz der morbiden Umgebung zu H\u00f6chstform auf, denn er ist gerade verliebt und m\u00f6chte Dichter werden. Mira (Zeynep Buyrac) trifft unterdessen beim Sargputzen auf ihren Cousin Oleg (Daniel Wagner), der Verbindungen zum toten Ukrainer hatte. Und bald schon wird Michelles ganzes Team unfreiwillig in Olegs kriminelle Machenschaft hineingezogen.", - "drm_token": null, - "duration_as_string": "22:40 Min.", - "duration_seconds": 1360, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMzA5OQ==", - "episode_id": 14194932, - "exact_duration": 1360520, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", - "id": 15523099, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-03-25T23:25:20+01:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2100-01-01T00:00:00+01:00", - "livedate_extern": "2100-01-01T00:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15523099, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Eine-Hand-waescht-die-andere", - "videoduration": 1360, - "episodeduration": 1360, - "episodeid": 14194932, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-09-26T00:36:02+02: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-Eine-Hand-waescht-die-andere\/14194932\/Wischen-ist-Macht-Eine-Hand-waescht-die-andere\/15523099", - "share_subject": "Wischen ist Macht: Eine Hand w\u00e4scht die andere - Wischen ist Macht: Eine Hand w\u00e4scht die andere vom 25.09.2023 um 23:25 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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Eine Hand w\u00e4scht die andere", - "updated_at": "2023-12-30T16:09:47+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-09-25_2325_in_01_Wischen-ist-Mac_____14194932__o__8438236266__s15523099", - "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\/15523099" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194932" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16325277" - }, - "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\/16325278" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523099\/links" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523099\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15523099\/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_16325277_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.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_16325278_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/ccb9f4dba1cc0d4a8e5d1fa24bdb7891514ecc90.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/thumb_16325277_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/26\/086be180dec1a9aa65fa9e3e3350502d90d1b9e6.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_16325278_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/thumb_16325278_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/26\/ccb9f4dba1cc0d4a8e5d1fa24bdb7891514ecc90.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - }, - { - "adition_advertising_query_string": "stype:vod,scat:film-serie,scatid:2703833,spro:wischen-ist-macht,sproid:13891227,episodeid:14194930,duration:1513040,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=14194930&duration=1513040&advertisingtags=", - "age_classification": "", - "audio_description_service_available": false, - "countdown": "136 Tage", - "date": "2023-09-25T22:55:42+02:00", - "delete_date": "2024-05-28 00:27:00", - "vod_ressort": null, - "description": "Gemeinsam mit ihrem verhaltensoriginellen Team bringt Ursula Strauss die schmutzigsten Geheimnisse und das reinste Durcheinander wieder zum Gl\u00e4nzen. \"Wischen ist Macht\" hei\u00dft es im Dacapo der Comedyserie, in der Ursula Strauss und ihr illustrer Putztrupp in 18 Folgen im Doppelpack f\u00fcr ihre ganz eigene Ordnung sorgen \u2013 und dabei feststellen, dass Schmutz ihr geringstes Problem ist. Gibt Michelle heute dem Finanzamt nicht mehr ihre Steuerunterlagen ab, kann sie ihre Firma zusperren. Bl\u00f6derweise muss aber auch noch in der Schule geputzt werden. Michelle zieht sich also zur\u00fcck, um an den Unterlagen zu arbeiten und macht Mira zu ihrer Stellvertreterin. Diese ist nur wenig an ihrer neuen Position interessiert und die Situation ger\u00e4t bald au\u00dfer Kontrolle. W\u00e4hrend Fernando versucht Sch\u00fclerinnen seinen neuen Vitality-Shake anzudrehen, ger\u00e4t Valentin mit seinem Erzfeind aneinander: Dem streitlustigen Schulwart Erich.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_seconds": 1513, - "encrypted_id": "M2RTbGZlazAzbnNMS2RqNEpzZDE0MTk0OTMw", - "exact_duration": 1513040, - "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": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", - "hide_in_new_section": false, - "hide_in_schedule_section": false, - "hide_latest_episodes": false, - "id": 14194930, - "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-03-25T22:55:42+01:00", - "killdate": "2024-05-21T00:27:00+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-09-26T00:32:01+02:00", - "secondary_genres": [], - "segments_complete": true, - "episodes_reference": "", - "share_body": "https:\/\/tvthek.orf.at\/profile\/Wischen-ist-Macht\/13891227\/Wischen-ist-Macht-Dann-geh-ich-halt-in-Haefen\/14194930", - "share_subject": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen! vom 25.09.2023 um 22:55 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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_QXB.mp4\/manifest.mpd", - "is_adaptive_stream": true, - "is_drm_protected": false - } - ] - }, - "sub_headline": "Serie", - "teaser_text": "Gemeinsam mit ihrem verhaltensoriginellen Team bringt Ursula Strauss die schmutzigsten Geheimnisse und das reinste Durcheinander wieder zum Gl\u00e4nzen. \"Wischen ist Macht\" hei\u00dft es im Dacapo der Comedyserie, in der Ursula Strauss und ihr illustrer Putztrupp in 18 Folgen im Doppelpack f\u00fcr ihre ganz eigene Ordnung sorgen \u2013 und dabei feststellen, dass Schmutz ihr geringstes Problem ist. Gibt Michelle heute dem Finanzamt nicht mehr ihre Steuerunterlagen ab, kann sie ihre Firma zusperren. Bl\u00f6derweise muss aber auch noch in der Schule geputzt werden. Michelle zieht sich also zur\u00fcck, um an den Unterlagen zu arbeiten und macht Mira zu ihrer Stellvertreterin. Diese ist nur wenig an ihrer neuen Position interessiert und die Situation ger\u00e4t bald au\u00dfer Kontrolle. W\u00e4hrend Fernando versucht Sch\u00fclerinnen seinen neuen Vitality-Shake anzudrehen, ger\u00e4t Valentin mit seinem Erzfeind aneinander: Dem streitlustigen Schulwart Erich.\r\nBildquelle: ORF\/ORF", - "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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", - "type": "default", - "updated_at": "2023-12-30T16:09:52+01:00", - "video_type": "episode", - "youth_protection_type": "limited-20-06", - "_links": { - "self": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930" - }, - "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\/14194930\/segments" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/tags" - }, - "advertising_tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/advertising\/tags" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/links" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" - }, - "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\/16309574" - }, - "subtitle": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/subtitle\/850819" - }, - "related_episodes": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930\/related" - }, - "dds_item": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/dds\/ddsitem\/357510" - } - }, - "_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:14194930,duration:1513040,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=14194930&duration=1513040&advertisingtags=", - "blackfades": [], - "episode_date": "2023-09-25T22:55:42+02:00", - "date_as_string": "Mo, 25.9.2023", - "vod_ressort": null, - "description": "Gemeinsam mit ihrem verhaltensoriginellen Team bringt Ursula Strauss die schmutzigsten Geheimnisse und das reinste Durcheinander wieder zum Gl\u00e4nzen. \"Wischen ist Macht\" hei\u00dft es im Dacapo der Comedyserie, in der Ursula Strauss und ihr illustrer Putztrupp in 18 Folgen im Doppelpack f\u00fcr ihre ganz eigene Ordnung sorgen \u2013 und dabei feststellen, dass Schmutz ihr geringstes Problem ist. Gibt Michelle heute dem Finanzamt nicht mehr ihre Steuerunterlagen ab, kann sie ihre Firma zusperren. Bl\u00f6derweise muss aber auch noch in der Schule geputzt werden. Michelle zieht sich also zur\u00fcck, um an den Unterlagen zu arbeiten und macht Mira zu ihrer Stellvertreterin. Diese ist nur wenig an ihrer neuen Position interessiert und die Situation ger\u00e4t bald au\u00dfer Kontrolle. W\u00e4hrend Fernando versucht Sch\u00fclerinnen seinen neuen Vitality-Shake anzudrehen, ger\u00e4t Valentin mit seinem Erzfeind aneinander: Dem streitlustigen Schulwart Erich.\r\nBildquelle: ORF\/ORF", - "drm_token": null, - "duration_as_string": "25:13 Min.", - "duration_seconds": 1513, - "enabled": true, - "encrypted_id": "ODc4M2hqZDcyOTNrbWQxNTUyMDI5NA==", - "episode_id": 14194930, - "exact_duration": 1513040, - "genre_id": 2703833, - "genre_title": "Film & Serie", - "right": "austria", - "focus": false, - "show_countdown": true, - "has_thumbnail": true, - "headline": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", - "id": 15520294, - "is_archive": false, - "is_drm_protected": false, - "jump_mark": false, - "jump_marks": [], - "killdate_extern": "2024-03-25T22:55:42+01:00", - "killdate": "2024-05-21T00:27:00+02:00", - "livedate": "2100-01-01T00:00:00+01:00", - "livedate_extern": "2100-01-01T00:00:00+01:00", - "SSA": { - "cliptype": "Sendung", - "videoid": 15520294, - "videopartid": "1_1", - "videocategory": "Film-Serie", - "videotitle": "Wischen-ist-Macht-Dann-geh-ich-halt-in-Haefen", - "videoduration": 1513, - "episodeduration": 1513, - "episodeid": 14194930, - "airdate": "2023-12-27T10:00:00+01:00", - "clipreleasetime": "2023-09-26T00:32:01+02: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-Dann-geh-ich-halt-in-Haefen\/14194930\/Wischen-ist-Macht-Dann-geh-ich-halt-in-Haefen\/15520294", - "share_subject": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen! - Wischen ist Macht: Dann geh ich halt in H\u00e4fen! vom 25.09.2023 um 22:55 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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/playlist.m3u8" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/ipad\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/playlist.m3u8" - } - ], - "hds": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.f4m" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/f4m\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.f4m" - } - ], - "smooth": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/Manifest" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/smooth\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/Manifest" - } - ], - "dash": [ - { - "quality_key": "Q6A", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q6A.mp4\/manifest.mpd" - }, - { - "quality_key": "Q8C", - "src": "https:\/\/apasfiis.sf.apa.at\/dash\/cms-preview-clips\/2023-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294_clip_Q8C.mp4\/manifest.mpd" - } - ] - }, - "sprite_sources": [], - "title": "Wischen ist Macht: Dann geh ich halt in H\u00e4fen!", - "updated_at": "2023-12-30T16:09:52+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-09-25_2255_in_01_Wischen-ist-Mac_____14194930__o__2051698995__s15520294", - "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\/15520294" - }, - "episode": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/episode\/14194930" - }, - "image": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" - }, - "image16x9_with_logo": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/media\/16309573" - }, - "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\/16309574" - }, - "links": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15520294\/links" - }, - "playlist": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15520294\/playlist" - }, - "tags": { - "href": "https:\/\/api-tvthek.orf.at\/api\/v4.3\/segment\/15520294\/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\/10\/thumb_16309573_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.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\/10\/thumb_16309574_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/497b5994fa3bb9e9a49d3665912ac7697c8c9fc0.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ], - "image": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.jpeg" - } - }, - "dynamic_color": "#691f11" - }, - "image16x9_with_logo": { - "public_urls": { - "highlight_teaser": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/thumb_16309573_segments_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segments\/0164\/10\/dd8fdd314b38949f273e5db569b978506a6c3090.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\/10\/thumb_16309574_segment_2x3_highlight_teaser.jpeg" - }, - "player": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_player.jpeg" - }, - "list": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_list.jpeg" - }, - "small": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/thumb_16309574_segment_2x3_small.jpeg" - }, - "reference": { - "url": "https:\/\/api-tvthek.orf.at\/assets\/segment_2x3\/0164\/10\/497b5994fa3bb9e9a49d3665912ac7697c8c9fc0.jpeg" - } - }, - "dynamic_color": "#691f11" - } - } - } - ] - } -} \ 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/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 From 2a936d3dbc439f147820d290c3ec596a04c5a2fd Mon Sep 17 00:00:00 2001 From: CodingPF Date: Mon, 26 Feb 2024 09:47:45 +0100 Subject: [PATCH 11/21] Sonar fixes and more logging --- .../mserver/crawler/orfon/OrfOnCrawler.java | 1 + .../orfon/json/OrfOnEpisodeDeserializer.java | 20 +------------ .../OrfOnHistoryVideoItemDeserializer.java | 5 +--- .../crawler/orfon/task/OrfOnEpisodeTask.java | 10 +++++++ .../crawler/orfon/task/OrfOnEpisodesTask.java | 30 +++++++++++++++++-- .../crawler/orfon/task/OrfOnPagedTask.java | 6 ++-- .../orfon/task/OrfOnVideoInfo2FilmTask.java | 15 ++++++---- 7 files changed, 53 insertions(+), 34 deletions(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index ea3be7d16..990697f3c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -74,6 +74,7 @@ protected RecursiveTask> createCrawlerTask() { return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos)); } catch (final Exception ex) { LOG.fatal("Exception in ORFON crawler.", ex); + Thread.currentThread().interrupt(); } return null; 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 index d439ed1a3..49bd56f24 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -20,7 +20,6 @@ import java.util.ArrayList; import java.util.Collection; import java.util.EnumMap; -import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Optional; @@ -85,23 +84,6 @@ public OrfOnVideoInfoDTO deserialize( buildOrResolveSubs(jsonElement) ); - - if (aFilm.getVideoUrls().isEmpty()){ - LOG.debug("#####videoUrlEmpty#######"); - LOG.debug("{} (id)", aFilm.getId().get()); - LOG.debug("{} (genre_title)", JsonUtils.getElementValueAsString(jsonElement, "genre_title").get()); - LOG.debug("{} (headline)", JsonUtils.getElementValueAsString(jsonElement, "headline").get()); - LOG.debug("{} (profile_title*)", JsonUtils.getElementValueAsString(jsonElement, "profile_title").get()); - LOG.debug("{} (title*)", JsonUtils.getElementValueAsString(jsonElement, "title").get()); - LOG.debug("{} (sub_headline)", JsonUtils.getElementValueAsString(jsonElement, "sub_headline").get()); - LOG.debug("{} (share_subject)", JsonUtils.getElementValueAsString(jsonElement, "share_subject").get()); - LOG.debug("{} (TAG_RIGHT)", parseGeoLocations(JsonUtils.getElementValueAsString(jsonElement, TAG_RIGHT))); - LOG.debug("{} (url)", parseUrl(jsonElement)); - LOG.debug("{} (segments)", JsonUtils.getElementValueAsString(jsonElement, TAG_SEGMENTS)); - LOG.debug("{}",jsonElement ); - LOG.debug("############"); - } - // return aFilm; } @@ -119,7 +101,7 @@ private Optional> buildOrResolveSubs(JsonElement jsonElement) { Map.entry("Accept-Encoding", "*")); JsonElement newRequestForSubs = null; try { - newRequestForSubs = crawler.getConnection().requestBodyAsJsonElement(subtitleSource.get().toString(), myMap); + newRequestForSubs = crawler.getConnection().requestBodyAsJsonElement(subtitleSource.get(), myMap); if (newRequestForSubs != null) { setOfSubs = parseSubtitleUrls(newRequestForSubs); } 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 index 02a702bed..40db2ee02 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnHistoryVideoItemDeserializer.java @@ -9,9 +9,6 @@ import java.lang.reflect.Type; import java.util.Optional; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer> { private static final String[] TAG_NEXT_PAGE = { "next" }; private static final String[] TAG_ITEM_ARRAY = { "_items" }; @@ -19,7 +16,7 @@ public class OrfOnHistoryVideoItemDeserializer implements JsonDeserializer deserialize( 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 index 7ea68931c..78db1b1a5 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -55,6 +55,16 @@ protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrl 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); + } + //LOG.debug(" bread crums {} # {} # {}", String.join("|", aDTO.getBreadCrums()), aResponseObj.getTopic().get(), aResponseObj.getTitle().get()); taskResults.add(aResponseObj); } 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 index 20438c7f4..3b625f3b5 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -54,8 +54,34 @@ protected void postProcessing(PagedElementListDTO aResponseOb } else { subpageCrawler = Optional.empty(); } - - taskResults.addAll(aResponseObj.getElements()); + // + for (OrfOnVideoInfoDTO rs : aResponseObj.getElements()) { + if (rs.getTitle().isEmpty() && rs.getTitleWithDate().isEmpty()) { + LOG.warn("Missing title for {} in {}", rs.getId(), aDTO); + crawler.incrementAndGetErrorCount(); + return; + } + if (rs.getTopic().isEmpty()) { + LOG.warn("Missing topic for {} in {}", rs.getId(), aDTO); + crawler.incrementAndGetErrorCount(); + return; + } + if (rs.getVideoUrls().isEmpty()) { + LOG.warn("Missing videoUrls for {} in {}", rs.getId(), aDTO); + crawler.incrementAndGetErrorCount(); + return; + } + if (rs.getDuration().isEmpty()) { + LOG.warn("Missing duration for {} in {}", rs.getId(), aDTO); + } + if (rs.getAired().isEmpty()) { + LOG.warn("Missing aired date for {} in {}", rs.getId(), aDTO); + } + if (rs.getWebsite().isEmpty()) { + LOG.warn("Missing website for {} in {}", rs.getId(), aDTO); + } + taskResults.add(rs); + } subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); } 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 index 0b412e0ae..a054951de 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnPagedTask.java @@ -22,7 +22,7 @@ // 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 Logger LOG = LogManager.getLogger(this.getClass()); + protected final transient Logger log = LogManager.getLogger(this.getClass()); protected Optional> nextPageTask = Optional.empty(); protected OrfOnPagedTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { @@ -37,7 +37,7 @@ protected void postProcessingNextPage(PagedElementListDTO 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()); + log.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); } protected void postProcessingElements(Set elements, OrfOnBreadCrumsUrlDTO originalDTO) { @@ -57,7 +57,7 @@ protected void postProcessing(PagedElementListDTO aRespon @Override protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response response) { crawler.printErrorMessage(); - LOG.fatal( + 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/OrfOnVideoInfo2FilmTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java index 63ec25603..49af74fb9 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java @@ -1,5 +1,7 @@ package de.mediathekview.mserver.crawler.orfon.task; +import java.time.Duration; +import java.time.LocalDateTime; import java.util.Queue; import java.util.UUID; @@ -11,6 +13,7 @@ public class OrfOnVideoInfo2FilmTask extends AbstractRecursiveConverterTask { private static final long serialVersionUID = 1L; + private static final String ORF_AUDIODESCRIPTION_PREFIX = "AD | "; public OrfOnVideoInfo2FilmTask(AbstractCrawler aCrawler, Queue aUrlToCrawlDTOs) { super(aCrawler, aUrlToCrawlDTOs); @@ -32,8 +35,8 @@ protected void processElement(OrfOnVideoInfoDTO aElement) { Sender.ORF, buildTitle(aElement.getTitle().get(), aElement.getTopic().get()), buildTopic(aElement.getTitle().get(), aElement.getTopic().get(), aElement.getTopicForArchive().orElse("")), - aElement.getAired().get(), - aElement.getDuration().get() + aElement.getAired().orElse(LocalDateTime.of(1970,1,1,00,00,00)), + aElement.getDuration().orElse(Duration.ofMinutes(0L)) ); aElement.getGeorestriction().ifPresent(aFilm::addAllGeoLocations); aElement.getDescription().ifPresent(aFilm::setBeschreibung); @@ -47,8 +50,8 @@ protected void processElement(OrfOnVideoInfoDTO aElement) { private String buildTopic(String title, String topic, String archiveTopic) { String newTopic = topic; - if (newTopic.startsWith("AD | ")) { - newTopic = newTopic.replace("AD | ", ""); + if (newTopic.startsWith(ORF_AUDIODESCRIPTION_PREFIX)) { + newTopic = newTopic.replace(ORF_AUDIODESCRIPTION_PREFIX, ""); } if (newTopic.equalsIgnoreCase("archiv")) { newTopic = archiveTopic.replace("History | ", ""); @@ -57,8 +60,8 @@ private String buildTopic(String title, String topic, String archiveTopic) { } private String buildTitle(String title, String topic) { - if (title.startsWith("AD | ")) { - return title.replace("AD | ", "").concat(" (Audiodeskription)"); + if (title.startsWith(ORF_AUDIODESCRIPTION_PREFIX)) { + return title.replace(ORF_AUDIODESCRIPTION_PREFIX, "").concat(" (Audiodeskription)"); } return title; } From 6d675537727c6c26909590b7eb98165589e258f1 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Wed, 28 Feb 2024 19:01:07 +0100 Subject: [PATCH 12/21] videourls from playlist --- .../mserver/crawler/orfon/OrfOnCrawler.java | 8 +- .../orfon/json/OrfOnEpisodeDeserializer.java | 86 +++++++------- .../orfon/json/OrfOnEpisodesDeserializer.java | 20 ++-- .../crawler/orfon/task/OrfOnEpisodesTask.java | 76 ++---------- .../crawler/orfon/OrfOnEpisodeTaskTest.java | 14 ++- .../crawler/orfon/OrfOnEpisodesTaskTest.java | 110 +++--------------- 6 files changed, 87 insertions(+), 227 deletions(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index 990697f3c..ff9a40ecd 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -101,8 +101,12 @@ private Queue createDayUrlsToCrawl() { private Set processAZUrlsToCrawl() throws InterruptedException, ExecutionException { final ForkJoinTask> letterTask = forkJoinPool.submit(new OrfOnAZTask(this, createAZUrlsToCrawl())); final Set letterTaskTopics = letterTask.get(); - final ForkJoinTask> videosFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(letterTaskTopics))); - return videosFromTopicsTask.get(); + final ForkJoinTask> episodesFromTopicsTask = forkJoinPool.submit(new OrfOnEpisodesTask(this, new ConcurrentLinkedQueue<>(letterTaskTopics))); + final Set episodesFromTopics = episodesFromTopicsTask.get(); + final ForkJoinTask> videoEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(episodesFromTopics))); + final Set videoEpisode = videoEpisodeTask.get(); + return videoEpisode; + } 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 index 49bd56f24..35937ba8e 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -43,12 +43,12 @@ public class OrfOnEpisodeDeserializer implements JsonDeserializer toURL(String aString) { } private Optional> parseUrl(JsonElement jsonElement) { - - for (Map.Entry entry : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).entrySet()) { - - if (!"hlshdssmoothdashprogressive_download".contains(entry.getKey())) { - LOG.debug("unkown video type {} ", jsonElement); + Optional videoPath1 = JsonUtils.getElement(jsonElement, TAG_VIDEO_PATH_1); + if (videoPath1.isEmpty() || !videoPath1.get().isJsonArray()) { + return Optional.empty(); + } + 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; } } - Optional> urls = Optional.empty(); - Optional codec = Optional.empty(); // - if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && - jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("progressive_download")) { - codec = Optional.of("progressive_download"); - } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && - jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("hls")) { - codec = Optional.of("hls"); - } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && - jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("hds")) { - codec = Optional.of("hds"); - } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && - jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("smooth")) { - codec = Optional.of("smooth"); - } else if (jsonElement.getAsJsonObject().has(TAG_VIDEO) && - jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).has("dash")) { - codec = Optional.of("dash"); - } - if (codec.isPresent()) { - urls = Optional.of(new EnumMap<>(Resolution.class)); - for (JsonElement codecUrls : jsonElement.getAsJsonObject().getAsJsonObject(TAG_VIDEO).getAsJsonArray(codec.get())) { + 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())) { try { - String qualityString = codecUrls.getAsJsonObject().get(TAG_VIDEO_QUALITY).getAsString(); - String url = codecUrls.getAsJsonObject().get(TAG_VIDEO_URL).getAsString(); - urls.get().put( - OrfOnEpisodeDeserializer.getQuality(qualityString).get(), - new FilmUrl(url, 0L) - ); - } catch (Exception e) { - LOG.error( - "parseUrl failed for quality {} and url {} exception {}", - codecUrls.getAsJsonObject().get("quality_key").getAsString(), - codecUrls.getAsJsonObject().get("src").getAsString(), - e - ); + 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.get().size() == 0) { - return Optional.empty(); - } } - return urls; + if (urls.isEmpty()) { + Optional.empty(); + } + return Optional.of(urls); } + private Optional parseWebsite(Optional text) { Optional result = Optional.empty(); if (text.isPresent()) { 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 index d8510d988..efacb650d 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodesDeserializer.java @@ -3,35 +3,33 @@ import com.google.gson.*; import de.mediathekview.mserver.base.utils.JsonUtils; -import de.mediathekview.mserver.crawler.basic.AbstractCrawler; import de.mediathekview.mserver.crawler.basic.PagedElementListDTO; -import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; +import de.mediathekview.mserver.crawler.orfon.OrfOnBreadCrumsUrlDTO; import java.lang.reflect.Type; import java.util.Optional; -public class OrfOnEpisodesDeserializer implements JsonDeserializer> { +public class OrfOnEpisodesDeserializer implements JsonDeserializer> { private static final String[] TAG_NEXT_PAGE = {"_links", "next", "href"}; private static final String[] TAG_ITEMS = {"_embedded", "items"}; - private OrfOnEpisodeDeserializer itemDeserializer = null; - - public OrfOnEpisodesDeserializer(AbstractCrawler crawler) { - itemDeserializer = new OrfOnEpisodeDeserializer(crawler); - } + private static final String TAG_EPISODE_ID = "id"; + private static final String[] TAG_EPISODE_LINK = { "_links", "self", "href"}; @Override - public PagedElementListDTO deserialize( + public PagedElementListDTO deserialize( final JsonElement jsonElement, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException { JsonObject jsonPage = jsonElement.getAsJsonObject(); // - PagedElementListDTO page = new PagedElementListDTO<>(); + 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()) { - page.addElement(itemDeserializer.deserialize(item, null, null)); + 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/task/OrfOnEpisodesTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java index 3b625f3b5..ba4ed4627 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodesTask.java @@ -1,103 +1,41 @@ package de.mediathekview.mserver.crawler.orfon.task; import java.lang.reflect.Type; -import java.net.URI; -import java.util.Optional; import java.util.Queue; -import java.util.concurrent.ConcurrentLinkedQueue; - -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.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 de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; import de.mediathekview.mserver.crawler.orfon.json.OrfOnEpisodesDeserializer; -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 OrfOnEpisodesTask extends AbstractJsonRestTask, OrfOnBreadCrumsUrlDTO> { +public class OrfOnEpisodesTask extends OrfOnPagedTask { private static final long serialVersionUID = 1L; - private static final Logger LOG = LogManager.getLogger(OrfOnEpisodesTask.class); public OrfOnEpisodesTask(AbstractCrawler crawler, Queue urlToCrawlDTOs) { - super(crawler, urlToCrawlDTOs, OrfOnConstants.AUTH); - } - - @Override - protected JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { - return new OrfOnEpisodesDeserializer(this.crawler); + super(crawler, urlToCrawlDTOs); } @Override - protected Type getType() { - return new TypeToken>() {}.getType(); + public JsonDeserializer> getParser(OrfOnBreadCrumsUrlDTO aDTO) { + return new OrfOnEpisodesDeserializer(); } @Override - protected void postProcessing(PagedElementListDTO aResponseObj, OrfOnBreadCrumsUrlDTO aDTO) { - final Optional> subpageCrawler; - if (aResponseObj.getNextPage().isPresent()) { - final Queue nextPageLinks = new ConcurrentLinkedQueue<>(); - nextPageLinks.add(new OrfOnBreadCrumsUrlDTO("", aResponseObj.getNextPage().get())); - subpageCrawler = Optional.of(createNewOwnInstance(nextPageLinks)); - subpageCrawler.get().fork(); - LOG.debug("started paging to url {} for {}", aResponseObj.getNextPage().get(), aDTO.getUrl()); - } else { - subpageCrawler = Optional.empty(); - } - // - for (OrfOnVideoInfoDTO rs : aResponseObj.getElements()) { - if (rs.getTitle().isEmpty() && rs.getTitleWithDate().isEmpty()) { - LOG.warn("Missing title for {} in {}", rs.getId(), aDTO); - crawler.incrementAndGetErrorCount(); - return; - } - if (rs.getTopic().isEmpty()) { - LOG.warn("Missing topic for {} in {}", rs.getId(), aDTO); - crawler.incrementAndGetErrorCount(); - return; - } - if (rs.getVideoUrls().isEmpty()) { - LOG.warn("Missing videoUrls for {} in {}", rs.getId(), aDTO); - crawler.incrementAndGetErrorCount(); - return; - } - if (rs.getDuration().isEmpty()) { - LOG.warn("Missing duration for {} in {}", rs.getId(), aDTO); - } - if (rs.getAired().isEmpty()) { - LOG.warn("Missing aired date for {} in {}", rs.getId(), aDTO); - } - if (rs.getWebsite().isEmpty()) { - LOG.warn("Missing website for {} in {}", rs.getId(), aDTO); - } - taskResults.add(rs); - } - subpageCrawler.ifPresent(paginationResults -> taskResults.addAll(paginationResults.join())); + public Type getType() { + return new TypeToken>() {}.getType(); } @Override - protected AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { + public AbstractRecursiveConverterTask createNewOwnInstance(Queue aElementsToProcess) { return new OrfOnEpisodesTask(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); - } } diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java index 60250d4c7..647ed346a 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -70,7 +70,12 @@ private Map generateExpectedResult() { Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), Optional.of(List.of(GeoLocations.GEO_NONE)), Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), - Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(Map.of( + Resolution.HD, new FilmUrl("https://dapasfiis.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_QXB.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) + )), Optional.of(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"), @@ -92,7 +97,12 @@ private Map generateExpectedResult() { Optional.of(new URL("https://tvthek.orf.at/profile/ABC-Baer/4611813/ABC-Baer/14207790")), Optional.of(List.of(GeoLocations.GEO_AT)), Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885332")), - Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), + Optional.of(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_QXB.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) + )), Optional.of(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"), diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java index ab806a591..30ae66209 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodesTaskTest.java @@ -1,23 +1,17 @@ package de.mediathekview.mserver.crawler.orfon; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; +import static java.util.Arrays.asList; +import static org.junit.jupiter.api.Assertions.assertIterableEquals; -import java.net.MalformedURLException; -import java.net.URL; -import java.time.LocalDateTime; + +import java.util.ArrayList; 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 org.junit.Test; -import de.mediathekview.mlib.daten.FilmUrl; -import de.mediathekview.mlib.daten.GeoLocations; -import de.mediathekview.mlib.daten.Resolution; import de.mediathekview.mserver.crawler.orfon.task.OrfOnEpisodesTask; import de.mediathekview.mserver.testhelper.WireMockTestBase; @@ -26,18 +20,12 @@ public class OrfOnEpisodesTaskTest extends WireMockTestBase { @Test public void test() { setupSuccessfulJsonResponse("/episodes", "/orfOn/episodes_3.json"); - setupSuccessfulJsonResponse("/api/v4.3/subtitle/868782", "/orfOn/subtitle_868782.json"); - Set result = executeTask("/episodes"); - Map expectedResult = generateExpectedResult(); - assertTrue(result.size() == 3); - for (OrfOnVideoInfoDTO actual : result) { - OrfOnVideoInfoDTO expected = expectedResult.get(actual.getId().get()); - assertNotNull(expected); - OrfOnEpisodeTaskTest.assertVideoInfoDto(expected, actual); - } + Set result = executeTask("/episodes"); + List expectedResult = generateExpectedResult(); + assertIterableEquals(result, expectedResult); } - private Set executeTask(String... requestUrl) { + private Set executeTask(String... requestUrl) { final Queue input = new ConcurrentLinkedQueue<>(); for (String url : requestUrl) { input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); @@ -45,82 +33,12 @@ private Set executeTask(String... requestUrl) { return new OrfOnEpisodesTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); } - private Map generateExpectedResult() { - try { - Map expectedResult = Map.of( - "14201133", new OrfOnVideoInfoDTO( - Optional.of("14201133"), - Optional.of("ORF 1"), - Optional.of("Wischen ist Macht: Alles für den Hugo"), - Optional.of("Wischen ist Macht: Alles für den Hugo vom 14.11.2023 um 00:33 Uhr"), - Optional.of("Wischen ist Macht"), - Optional.of("Serie"), - Optional.of(LocalDateTime.of(2023,11,14,00,33,03)), - Optional.of(java.time.Duration.parse("PT24M50S")), - Optional.of("Spezialauftrag für \"Dreck.Weg.Sendracek\": Die russische Botschafterin lädt zu einer Gala und"), - Optional.of(new URL("https://tvthek.orf.at/profile/Wischen-ist-Macht/13891227/Wischen-ist-Macht-Alles-fuer-den-Hugo/14201133")), - Optional.of(List.of(GeoLocations.GEO_AT)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/868782")), - Optional.of(Map.of(Resolution.NORMAL, new FilmUrl("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", 0L))), - Optional.of(Set.of( - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/79738b7eb874c151cde04ec6367a444bd5999db1.srt"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/4b1c81a007271ee90224a9555494148e3116a00e.vtt") - )) - ), - "14202094", new OrfOnVideoInfoDTO( - Optional.of("14202094"), - Optional.of("ORF 1"), - Optional.of("Wischen ist Macht: Shit Happens"), - Optional.of("Wischen ist Macht: Shit Happens vom 21.11.2023 um 00:04 Uhr"), - Optional.of("Wischen ist Macht"), - Optional.of("Wischen ist Macht"), - Optional.of(LocalDateTime.of(2023,11,21,00,04,21)), - Optional.of(java.time.Duration.parse("PT22M12S")), - Optional.of("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 überwiesen. Johnny fängt 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ährend seine Frau Janis gewohnt alkoholisiert durchs Haus geistert.\r\n" - + "Mit 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\n" - + "Bildquelle: ORF/Fabio Eppensteiner"), - Optional.of(new URL("https://tvthek.orf.at/profile/Wischen-ist-Macht/13891227/Wischen-ist-Macht-Shit-Happens/14202094")), - Optional.of(List.of(GeoLocations.GEO_AT)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/868782")), - Optional.of(Map.of(Resolution.NORMAL, new FilmUrl("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", 0L))), - Optional.of(Set.of( - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/79738b7eb874c151cde04ec6367a444bd5999db1.srt"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/4b1c81a007271ee90224a9555494148e3116a00e.vtt") - )) - ), - "14202095", new OrfOnVideoInfoDTO( - Optional.of("14202095"), - Optional.of("ORF 1"), - Optional.of("Wischen ist Macht: Fußball ist meine Religion"), - Optional.of("Wischen ist Macht: Fußball ist meine Religion vom 21.11.2023 um 00:27 Uhr"), - Optional.of("Wischen ist Macht"), - Optional.of("Serie"), - Optional.of(LocalDateTime.of(2023,11,21,00,27,17)), - Optional.of(java.time.Duration.parse("PT25M49S")), - Optional.of("Michelle und ihr Team rücken im Fußballstadion an"), - Optional.of(new URL("https://tvthek.orf.at/profile/Wischen-ist-Macht/13891227/Wischen-ist-Macht-Fussball-ist-meine-Religion/14202095")), - Optional.of(List.of(GeoLocations.GEO_AT)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/868782")), - Optional.of(Map.of(Resolution.NORMAL, new FilmUrl("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", 0L))), - Optional.of(Set.of( - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a1ab1313ca03ba35c75d39e08c59840bc97aba76.ttml"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/6cd8a1899f5b56f919a6d809fe001ce3acaf4ce8.smi"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/79738b7eb874c151cde04ec6367a444bd5999db1.srt"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/a0467e2fdfb637c00fe6a450f003cedcf70128fa.xml"), - new URL("https://api-tvthek.orf.at/assets/subtitles/0162/100/4b1c81a007271ee90224a9555494148e3116a00e.vtt") - )) - )); - return expectedResult; - } catch (MalformedURLException e) { - e.printStackTrace(); - } - return null; + 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; } From 7dcbcf72b1f3a310f15b0af0c1098af939460ad3 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Wed, 28 Feb 2024 22:01:12 +0100 Subject: [PATCH 13/21] resolve deadlock --- .../de/mediathekview/mserver/crawler/basic/AbstractCrawler.java | 2 -- .../mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java | 2 +- .../mserver/crawler/orfon/task/OrfOnEpisodeTask.java | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) 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/orfon/json/OrfOnEpisodeDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java index 35937ba8e..a4eaad5fc 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -151,7 +151,7 @@ private Optional toURL(String aString) { private Optional> parseUrl(JsonElement jsonElement) { Optional videoPath1 = JsonUtils.getElement(jsonElement, TAG_VIDEO_PATH_1); - if (videoPath1.isEmpty() || !videoPath1.get().isJsonArray()) { + if (videoPath1.isEmpty() || !videoPath1.get().isJsonArray() || videoPath1.get().getAsJsonArray().size() == 0) { return Optional.empty(); } Optional videoPath2 = JsonUtils.getElement(videoPath1.get().getAsJsonArray().get(0), TAG_VIDEO_PATH_2); 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 index 78db1b1a5..5eee51377 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -66,7 +66,7 @@ protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrl } //LOG.debug(" bread crums {} # {} # {}", String.join("|", aDTO.getBreadCrums()), aResponseObj.getTopic().get(), aResponseObj.getTitle().get()); - taskResults.add(aResponseObj); + taskResults.add(aResponseObj); } @Override From 52639aa313cbd96c56e3dd1f6f3fd27c29f8c1b8 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Thu, 29 Feb 2024 00:31:10 +0100 Subject: [PATCH 14/21] resolve episode as last step --- .../mserver/crawler/orfon/OrfOnCrawler.java | 31 ++++++++----------- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index ff9a40ecd..f7adff146 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -49,29 +49,31 @@ public Sender getSender() { @Override protected RecursiveTask> createCrawlerTask() { - Set allVideos = new HashSet<>(); + Set allVideos = new HashSet<>(); try { // Sendungen Verpasst (letzten 14 Tage) // TAG > Episode > Episode2Film - final Set epsiodesFromDay = processDayUrlsToCrawl(); + final Set epsiodesFromDay = processDayUrlsToCrawl(); allVideos.addAll(epsiodesFromDay); printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); getAndSetMaxCount(allVideos.size()); // // Sendungen a-z // Buchstabe > Episoden > Episode2Film - final Set videosFromTopics = processAZUrlsToCrawl(); + 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(); + final Set historyVideos = processHistoryUrlToCrawl(); allVideos.addAll(historyVideos); printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); getAndSetMaxCount(allVideos.size()); // - return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(allVideos)); + final ForkJoinTask> videoInfoTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(allVideos))); + final Set videoInfo = videoInfoTask.get(); + return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(videoInfo)); } catch (final Exception ex) { LOG.fatal("Exception in ORFON crawler.", ex); Thread.currentThread().interrupt(); @@ -80,11 +82,10 @@ protected RecursiveTask> createCrawlerTask() { return null; } - private Set processDayUrlsToCrawl() throws InterruptedException, ExecutionException { + private Set processDayUrlsToCrawl() throws InterruptedException, ExecutionException { final ForkJoinTask> dayTask = forkJoinPool.submit(new OrfOnScheduleTask(this, createDayUrlsToCrawl())); final Set dayTaskFilms = dayTask.get(); - final ForkJoinTask> episodesFromDaysTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(dayTaskFilms))); - return episodesFromDaysTask.get(); + return dayTaskFilms; } private Queue createDayUrlsToCrawl() { @@ -98,14 +99,12 @@ private Queue createDayUrlsToCrawl() { return dayUrlsToCrawl; } - private Set processAZUrlsToCrawl() throws InterruptedException, ExecutionException { + 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(); - final ForkJoinTask> videoEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(episodesFromTopics))); - final Set videoEpisode = videoEpisodeTask.get(); - return videoEpisode; + return episodesFromTopics; } @@ -122,7 +121,7 @@ private Queue createAZUrlsToCrawl() { return letterUrlsToCrawl; } - private Set processHistoryUrlToCrawl() throws InterruptedException, ExecutionException { + 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()); @@ -135,11 +134,7 @@ private Set processHistoryUrlToCrawl() throws InterruptedExce final Set historyEpisodesUrls = historyItemTask.get(); LOG.debug("Found {} entries in OrfOnHistoryVideoItemTask ", historyEpisodesUrls.size()); // - final ForkJoinTask> historyEpisodeTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(historyEpisodesUrls))); - final Set historyEpisodeVideos = historyEpisodeTask.get(); - LOG.debug("Found {} entries in OrfOnEpisodeTask ", historyEpisodeVideos.size()); - // - return historyEpisodeVideos; + return historyEpisodesUrls; } private Queue createHistoryUrlToCrawl() { From eda6bd10a8f75406532fc7a4625c18df7d260f64 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Thu, 29 Feb 2024 09:07:03 +0100 Subject: [PATCH 15/21] Merge film creation into episodetask and test cases --- .../mserver/crawler/orfon/OrfOnCrawler.java | 5 +- .../crawler/orfon/task/OrfOnEpisodeTask.java | 48 +- .../orfon/task/OrfOnVideoInfo2FilmTask.java | 69 - .../crawler/orfon/OrfOnEpisodeTaskTest.java | 225 +- src/test/resources/orfOn/episode_ad.json | 1846 +++++++++++++++++ src/test/resources/orfOn/episode_archive.json | 1410 +++++++++++++ 6 files changed, 3428 insertions(+), 175 deletions(-) delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java create mode 100644 src/test/resources/orfOn/episode_ad.json create mode 100644 src/test/resources/orfOn/episode_archive.json diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index f7adff146..2f6c333f5 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -13,7 +13,6 @@ 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.crawler.orfon.task.OrfOnVideoInfo2FilmTask; import de.mediathekview.mserver.progress.listeners.SenderProgressListener; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -71,9 +70,7 @@ protected RecursiveTask> createCrawlerTask() { printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); getAndSetMaxCount(allVideos.size()); // - final ForkJoinTask> videoInfoTask = forkJoinPool.submit(new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(allVideos))); - final Set videoInfo = videoInfoTask.get(); - return new OrfOnVideoInfo2FilmTask(this, new ConcurrentLinkedQueue<>(videoInfo)); + return new OrfOnEpisodeTask(this, new ConcurrentLinkedQueue<>(allVideos)); } catch (final Exception ex) { LOG.fatal("Exception in ORFON crawler.", ex); Thread.currentThread().interrupt(); 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 index 5eee51377..2bdf42a07 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnEpisodeTask.java @@ -2,13 +2,19 @@ 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; @@ -20,9 +26,10 @@ // 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 = 1L; +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); @@ -64,13 +71,25 @@ protected void postProcessing(OrfOnVideoInfoDTO aResponseObj, OrfOnBreadCrumsUrl if (aResponseObj.getWebsite().isEmpty()) { LOG.warn("Missing website for {}", aDTO); } - - //LOG.debug(" bread crums {} # {} # {}", String.join("|", aDTO.getBreadCrums()), aResponseObj.getTopic().get(), aResponseObj.getTitle().get()); - taskResults.add(aResponseObj); + 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( + protected AbstractRecursiveConverterTask createNewOwnInstance( Queue aElementsToProcess) { return new OrfOnEpisodeTask(crawler, aElementsToProcess); } @@ -84,4 +103,21 @@ protected void handleHttpError(OrfOnBreadCrumsUrlDTO dto, URI url, Response resp 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/OrfOnVideoInfo2FilmTask.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java deleted file mode 100644 index 49af74fb9..000000000 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/task/OrfOnVideoInfo2FilmTask.java +++ /dev/null @@ -1,69 +0,0 @@ -package de.mediathekview.mserver.crawler.orfon.task; - -import java.time.Duration; -import java.time.LocalDateTime; -import java.util.Queue; -import java.util.UUID; - -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.AbstractRecursiveConverterTask; -import de.mediathekview.mserver.crawler.orfon.OrfOnVideoInfoDTO; - -public class OrfOnVideoInfo2FilmTask extends AbstractRecursiveConverterTask { - private static final long serialVersionUID = 1L; - private static final String ORF_AUDIODESCRIPTION_PREFIX = "AD | "; - - public OrfOnVideoInfo2FilmTask(AbstractCrawler aCrawler, Queue aUrlToCrawlDTOs) { - super(aCrawler, aUrlToCrawlDTOs); - } - - @Override - protected AbstractRecursiveConverterTask createNewOwnInstance( - Queue aElementsToProcess) { - return new OrfOnVideoInfo2FilmTask(this.crawler, aElementsToProcess); - } - @Override - protected Integer getMaxElementsToProcess() { - return crawler.getCrawlerConfig().getMaximumUrlsPerTask(); - } - @Override - protected void processElement(OrfOnVideoInfoDTO aElement) { - Film aFilm = new Film( - UUID.randomUUID(), - Sender.ORF, - buildTitle(aElement.getTitle().get(), aElement.getTopic().get()), - buildTopic(aElement.getTitle().get(), aElement.getTopic().get(), aElement.getTopicForArchive().orElse("")), - aElement.getAired().orElse(LocalDateTime.of(1970,1,1,00,00,00)), - aElement.getDuration().orElse(Duration.ofMinutes(0L)) - ); - aElement.getGeorestriction().ifPresent(aFilm::addAllGeoLocations); - aElement.getDescription().ifPresent(aFilm::setBeschreibung); - aElement.getVideoUrls().ifPresent(aFilm::setUrls); - aElement.getWebsite().ifPresent(aFilm::setWebsite); - aElement.getSubtitleUrls().ifPresent(aFilm::addAllSubtitleUrls); - crawler.incrementAndGetActualCount(); - taskResults.add(aFilm); - - } - - 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/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java index 647ed346a..d1ab15396 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -1,12 +1,11 @@ package de.mediathekview.mserver.crawler.orfon; -import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertEquals; -import java.net.MalformedURLException; import java.net.URL; +import java.time.Duration; import java.time.LocalDateTime; import java.util.ArrayList; import java.util.Collection; @@ -20,6 +19,7 @@ import org.junit.Test; +import de.mediathekview.mlib.daten.Film; import de.mediathekview.mlib.daten.FilmUrl; import de.mediathekview.mlib.daten.GeoLocations; import de.mediathekview.mlib.daten.Resolution; @@ -32,112 +32,145 @@ public class OrfOnEpisodeTaskTest extends OrfOnEpisodesTaskTest { @Test - public void 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_QXB.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("/episode1", "/episode2"); - Map expectedResult = generateExpectedResult(); - assertTrue(result.size() == 2); - for (OrfOnVideoInfoDTO actual : result) { - OrfOnVideoInfoDTO expected = expectedResult.get(actual.getId().get()); - assertNotNull(expected); - assertVideoInfoDto(expected, actual); + 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_QXB.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); } } - private Set executeTask(String... requestUrl) { - final Queue input = new ConcurrentLinkedQueue<>(); - for (String url : requestUrl) { - input.add(new OrfOnBreadCrumsUrlDTO("",getWireMockBaseUrlSafe() + url)); + @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_QXB.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); } - return new OrfOnEpisodeTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); } - private Map generateExpectedResult() { + @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 { - Map expectedResult = Map.of( - "14207792", new OrfOnVideoInfoDTO( - Optional.of("14207792"), - Optional.of("ORF 1"), - Optional.of("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian"), - Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), - Optional.of("Servus Kasperl"), - Optional.of("ORF Kids | Servus Kasperl"), - Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), - Optional.of(java.time.Duration.parse("PT21M56S")), - Optional.of("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äuber vor hat ihn zu stehlen.\r\n" - + "Bildquelle: ORF"), - Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), - Optional.of(List.of(GeoLocations.GEO_NONE)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), - Optional.of(Map.of( - Resolution.HD, new FilmUrl("https://dapasfiis.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_QXB.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) - )), - Optional.of(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") - ))), - "14207790", new OrfOnVideoInfoDTO( - Optional.of("14207790"), - Optional.of("ORF Kids"), - Optional.of("ABC Bär"), - Optional.of("ABC Bär vom 04.01.2024 um 06:45 Uhr"), - Optional.of("ABC-Bär"), - Optional.of("ORF Kids | Lernen mit Spaß"), - Optional.of(LocalDateTime.of(2024,01,04,06,45)), - Optional.of(java.time.Duration.parse("PT13M29S")), - Optional.of("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.\r\n" - + "Bildquelle: ORF"), - Optional.of(new URL("https://tvthek.orf.at/profile/ABC-Baer/4611813/ABC-Baer/14207790")), - Optional.of(List.of(GeoLocations.GEO_AT)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885332")), - Optional.of(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_QXB.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) - )), - Optional.of(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") - ))) - ); - return expectedResult; - } catch (MalformedURLException e) { - e.printStackTrace(); + 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_QXB.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); } - return null; } - - protected static void assertVideoInfoDto(OrfOnVideoInfoDTO expected, OrfOnVideoInfoDTO actual) { - assertEquals(expected.getAired(), actual.getAired()); - assertEquals(expected.getChannel(), actual.getChannel()); - assertEquals(expected.getDescription(), actual.getDescription()); - assertEquals(expected.getDuration(), actual.getDuration()); - assertEquals(expected.getGeorestriction(), actual.getGeorestriction()); - assertEquals(expected.getId(), actual.getId()); - assertEquals(expected.getTitle(), actual.getTitle()); - assertEquals(expected.getTitleWithDate(), actual.getTitleWithDate()); - assertEquals(expected.getTopic(), actual.getTopic()); - assertEquals(expected.getTopicForArchive(), actual.getTopicForArchive()); - assertEquals(expected.getWebsite(), actual.getWebsite()); - assertEquals(expected.getVideoUrls().get(), actual.getVideoUrls().get()); - assertEquals(expected.getSubtitleUrls(), actual.getSubtitleUrls()); - if (expected.getSubtitleSource().isPresent()) { - int subtitleSourceExpectedStringlength = expected.getSubtitleSource().get().toString().indexOf("subtitle"); - int subtitleSourceActStringlength = actual.getSubtitleSource().get().toString().indexOf("subtitle"); - assertTrue(subtitleSourceExpectedStringlength > 0 && subtitleSourceActStringlength > 0); - assertEquals(expected.getSubtitleSource().get().toString().substring(subtitleSourceExpectedStringlength), actual.getSubtitleSource().get().toString().substring(subtitleSourceActStringlength)); // ignore localhost+port + + 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(); } protected static OrfOnCrawler createCrawler() { 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 From cf3ad05655d565ea6e2443d34f5d5a32a404c5bf Mon Sep 17 00:00:00 2001 From: CodingPF Date: Thu, 29 Feb 2024 09:07:28 +0100 Subject: [PATCH 16/21] remove test case --- .../orfon/OrfOnVideoInfo2FilmTaskTest.java | 165 ------------------ 1 file changed, 165 deletions(-) delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java deleted file mode 100644 index b28d3a075..000000000 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnVideoInfo2FilmTaskTest.java +++ /dev/null @@ -1,165 +0,0 @@ -package de.mediathekview.mserver.crawler.orfon; - -import static org.junit.Assert.assertTrue; -import static org.junit.jupiter.api.Assertions.assertEquals; - -import java.net.MalformedURLException; -import java.net.URL; -import java.time.LocalDateTime; -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 org.junit.Test; - -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.crawler.orfon.task.OrfOnVideoInfo2FilmTask; - -public class OrfOnVideoInfo2FilmTaskTest { - - - @Test - public void testNormal() throws MalformedURLException { - OrfOnVideoInfoDTO inputVideoInfoDTO = new OrfOnVideoInfoDTO( - Optional.of("14207792"), - Optional.of("ORF 1"), - Optional.of("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian"), - Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), - Optional.of("Servus Kasperl"), - Optional.of("ORF Kids | Servus Kasperl"), - Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), - Optional.of(java.time.Duration.parse("PT21M56S")), - Optional.of("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äuber vor hat ihn zu stehlen.\r\n" - + "Bildquelle: ORF"), - Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), - Optional.of(List.of(GeoLocations.GEO_NONE)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), - Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), - Optional.of(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") - ))); - final Queue input = new ConcurrentLinkedQueue<>(); - input.add(inputVideoInfoDTO); - Set resultSet = new OrfOnVideoInfo2FilmTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); - Film result = resultSet.toArray(new Film[0])[0]; - // - - assertEquals(inputVideoInfoDTO.getTitle().get(),result.getTitel()); - assertEquals(inputVideoInfoDTO.getTopic().get(),result.getThema()); - assertEquals(inputVideoInfoDTO.getAired().get(),result.getTime()); - if (inputVideoInfoDTO.getDescription().get().length() > 405) { - assertEquals(inputVideoInfoDTO.getDescription().get().substring(0, 400),result.getBeschreibung().substring(0, 400)); - } else { - assertEquals(inputVideoInfoDTO.getDescription().get(),result.getBeschreibung()); - } - assertEquals(inputVideoInfoDTO.getDuration().get(),result.getDuration()); - assertEquals(inputVideoInfoDTO.getWebsite(),result.getWebsite()); - assertEquals(inputVideoInfoDTO.getVideoUrls().get(),result.getUrls()); - assertTrue(inputVideoInfoDTO.getSubtitleUrls().get().containsAll(result.getSubtitles())); - assertTrue(inputVideoInfoDTO.getGeorestriction().get().containsAll(result.getGeoLocations())); - - } - - - @Test - public void testAD() throws MalformedURLException { - OrfOnVideoInfoDTO inputVideoInfoDTO = new OrfOnVideoInfoDTO( - Optional.of("14207792"), - Optional.of("ORF 1"), - Optional.of("AD | Der Bergdoktor: Im Schatten"), - Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), - Optional.of("AD | Der Bergdoktor Staffel 17"), - Optional.of("ORF Kids | Servus Kasperl"), - Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), - Optional.of(java.time.Duration.parse("PT21M56S")), - Optional.of("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äuber vor hat ihn zu stehlen.\r\n" - + "Bildquelle: ORF"), - Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), - Optional.of(List.of(GeoLocations.GEO_NONE)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), - Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), - Optional.of(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") - ))); - final Queue input = new ConcurrentLinkedQueue<>(); - input.add(inputVideoInfoDTO); - Set resultSet = new OrfOnVideoInfo2FilmTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); - Film result = resultSet.toArray(new Film[0])[0]; - // - - assertEquals("Der Bergdoktor: Im Schatten (Audiodeskription)",result.getTitel()); - assertEquals("Der Bergdoktor Staffel 17",result.getThema()); - assertEquals(inputVideoInfoDTO.getAired().get(),result.getTime()); - if (inputVideoInfoDTO.getDescription().get().length() > 405) { - assertEquals(inputVideoInfoDTO.getDescription().get().substring(0, 400),result.getBeschreibung().substring(0, 400)); - } else { - assertEquals(inputVideoInfoDTO.getDescription().get(),result.getBeschreibung()); - } - assertEquals(inputVideoInfoDTO.getDuration().get(),result.getDuration()); - assertEquals(inputVideoInfoDTO.getWebsite(),result.getWebsite()); - assertEquals(inputVideoInfoDTO.getVideoUrls().get(),result.getUrls()); - assertTrue(inputVideoInfoDTO.getSubtitleUrls().get().containsAll(result.getSubtitles())); - assertTrue(inputVideoInfoDTO.getGeorestriction().get().containsAll(result.getGeoLocations())); - - } - - @Test - public void testArchive() throws MalformedURLException { - OrfOnVideoInfoDTO inputVideoInfoDTO = new OrfOnVideoInfoDTO( - Optional.of("14207792"), - Optional.of("ORF 1"), - Optional.of("Servus Kasperl: Kasperl & Strolchi: Koko und Maximilian"), - Optional.of("Servus Kasperl: Kasperl und Strolchi: Koko und Maximilian vom 04.01.2024 um 07:07 Uhr"), - Optional.of("Archiv"), - Optional.of("Better Archive Title"), - Optional.of(LocalDateTime.of(2024,01,04,07,07,38)), - Optional.of(java.time.Duration.parse("PT21M56S")), - Optional.of("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äuber vor hat ihn zu stehlen.\r\n" - + "Bildquelle: ORF"), - Optional.of(new URL("https://tvthek.orf.at/profile/Servus-Kasperl/3272601/Servus-Kasperl-Kasperl-Strolchi-Koko-und-Maximilian/14207792")), - Optional.of(List.of(GeoLocations.GEO_NONE)), - Optional.of(new URL("https://api-tvthek.orf.at/api/v4.3/subtitle/885340")), - Optional.of(Map.of(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_QXB.mp4/playlist.m3u8", 0L))), - Optional.of(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") - ))); - final Queue input = new ConcurrentLinkedQueue<>(); - input.add(inputVideoInfoDTO); - Set resultSet = new OrfOnVideoInfo2FilmTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); - Film result = resultSet.toArray(new Film[0])[0]; - // - assertEquals(inputVideoInfoDTO.getTitle().get(),result.getTitel()); - assertEquals(inputVideoInfoDTO.getTopicForArchive().get(),result.getThema()); // HERE - assertEquals(inputVideoInfoDTO.getAired().get(),result.getTime()); - if (inputVideoInfoDTO.getDescription().get().length() > 405) { - assertEquals(inputVideoInfoDTO.getDescription().get().substring(0, 400),result.getBeschreibung().substring(0, 400)); - } else { - assertEquals(inputVideoInfoDTO.getDescription().get(),result.getBeschreibung()); - } - assertEquals(inputVideoInfoDTO.getDuration().get(),result.getDuration()); - assertEquals(inputVideoInfoDTO.getWebsite(),result.getWebsite()); - assertEquals(inputVideoInfoDTO.getVideoUrls().get(),result.getUrls()); - assertTrue(inputVideoInfoDTO.getSubtitleUrls().get().containsAll(result.getSubtitles())); - assertTrue(inputVideoInfoDTO.getGeorestriction().get().containsAll(result.getGeoLocations())); - - } -} From 381e7aa2205752be9cd6adc32b445468139d7273 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Wed, 20 Mar 2024 20:12:34 +0100 Subject: [PATCH 17/21] fallback to low resolution url in case of several playlist entries --- .../orfon/json/OrfOnEpisodeDeserializer.java | 37 ++++++++++++++++++- .../crawler/orfon/OrfOnEpisodeTaskTest.java | 9 +++-- 2 files changed, 40 insertions(+), 6 deletions(-) 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 index a4eaad5fc..f2a89c985 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -49,6 +49,9 @@ public class OrfOnEpisodeDeserializer implements JsonDeserializer> parseUrl(JsonElement jsonElement) { 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) { + return parseFallbackVideo(jsonElement); + } + Optional videoPath2 = JsonUtils.getElement(videoPath1.get().getAsJsonArray().get(0), TAG_VIDEO_PATH_2); if (videoPath2.isEmpty() || !videoPath2.get().isJsonArray()) { return Optional.empty(); @@ -168,13 +176,37 @@ private Optional> parseUrl(JsonElement jsonElement) { return Optional.empty(); } + 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()) { + 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())) { + if (url.isPresent() && codec.isPresent() && quality.isPresent() && targetCodec.equalsIgnoreCase(codec.get()) && OrfOnEpisodeDeserializer.getQuality(quality.get()).isPresent()) { try { long fileSize = crawler.determineFileSizeInKB(url.get()); urls.put( @@ -221,6 +253,7 @@ private Optional> parseGeoLocations(Optional te } return Optional.empty(); } + private Optional parseAiredDate(Optional text) { Optional result = Optional.empty(); if (text.isPresent()) { @@ -264,7 +297,7 @@ private static Optional getQuality(final String aQuality) { case "QXB": case "QXBDRM": case "Q8A": - return Optional.of(Resolution.NORMAL); + return Optional.empty(); default: LOG.debug("ORF: unknown quality: {}", aQuality); } diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java index d1ab15396..e1f931dbf 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -1,5 +1,6 @@ package de.mediathekview.mserver.crawler.orfon; +import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertEquals; @@ -55,7 +56,7 @@ public void testNormal_1() { ).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_QXB.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()); @@ -88,7 +89,7 @@ public void testNormal_2() { ).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_QXB.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()); @@ -122,7 +123,7 @@ public void testAD() { // [, , , , ] 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_QXB.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()); @@ -156,7 +157,7 @@ public void testArchive() { ).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_QXB.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()); From af81acf7ea272b3ea86c6e30fd0c800003971a9b Mon Sep 17 00:00:00 2001 From: CodingPF Date: Wed, 20 Mar 2024 20:13:03 +0100 Subject: [PATCH 18/21] remove import --- .../mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java | 1 - .../mserver/crawler/orfon/OrfOnEpisodeTaskTest.java | 1 - 2 files changed, 2 deletions(-) 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 index f2a89c985..0dba6615c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -253,7 +253,6 @@ private Optional> parseGeoLocations(Optional te } return Optional.empty(); } - private Optional parseAiredDate(Optional text) { Optional result = Optional.empty(); if (text.isPresent()) { diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java index e1f931dbf..d842f987d 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -1,6 +1,5 @@ package de.mediathekview.mserver.crawler.orfon; -import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertEquals; From 5dee69885104436824686e5f5c4293773d2a7f0f Mon Sep 17 00:00:00 2001 From: pidoubleyou Date: Sat, 23 Mar 2024 16:32:07 +0100 Subject: [PATCH 19/21] configure topics search --- .../mserver/crawler/orfon/OrfOnCrawler.java | 31 +++++++++++-------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java index 2f6c333f5..00894ef43 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/OrfOnCrawler.java @@ -56,19 +56,24 @@ protected RecursiveTask> createCrawlerTask() { allVideos.addAll(epsiodesFromDay); printMessage(ServerMessages.DEBUG_ALL_SENDUNG_FOLGEN_COUNT, getSender().getName(), allVideos.size()); getAndSetMaxCount(allVideos.size()); - // - // 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()); + + 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) { From f614070ac420078329628773c5c812bc515c1ef9 Mon Sep 17 00:00:00 2001 From: pidoubleyou Date: Sat, 23 Mar 2024 17:39:21 +0100 Subject: [PATCH 20/21] optimize orf urls if only one stream is found --- .../orfon/json/OrfOnEpisodeDeserializer.java | 18 +- .../crawler/orfon/OrfOnEpisodeTaskTest.java | 57 +- src/test/resources/orfOn/episode_zib.json | 21457 ++++++++++++++++ 3 files changed, 21510 insertions(+), 22 deletions(-) create mode 100644 src/test/resources/orfOn/episode_zib.json 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 index 0dba6615c..3a4622e74 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -84,13 +84,27 @@ public OrfOnVideoInfoDTO deserialize( parseWebsite(JsonUtils.getElementValueAsString(jsonElement, TAG_SHARE_BODY)), parseGeoLocations(JsonUtils.getElementValueAsString(jsonElement, TAG_RIGHT)), parseSubtitleSource(JsonUtils.getElementValueAsString(jsonElement, TAG_SUBTITLE)), - parseUrl(jsonElement), + 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); diff --git a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java index d842f987d..1064ccdfe 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -3,7 +3,12 @@ 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; @@ -16,21 +21,17 @@ import java.util.Set; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.ForkJoinPool; - import org.junit.Test; -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.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; - - 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"); @@ -63,7 +64,7 @@ Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwid assertTrue(false); } } - + @Test public void testNormal_2() { setupSuccessfulJsonResponse("/episode2", "/orfOn/episode_2.json"); @@ -97,6 +98,29 @@ Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-austria/ } } + @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"); @@ -173,13 +197,6 @@ private Set executeTask(String... requestUrl) { return new OrfOnEpisodeTask(OrfOnEpisodeTaskTest.createCrawler(), input).invoke(); } - 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")); - } - } 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 From 20f81374afef456fa19627563331d030feded462 Mon Sep 17 00:00:00 2001 From: CodingPF Date: Fri, 12 Apr 2024 19:03:44 +0200 Subject: [PATCH 21/21] fix 973 (orf dummy urls) --- .../mserver/crawler/CrawlerManager.java | 1 - .../mserver/crawler/orf/OrfConstants.java | 36 - .../mserver/crawler/orf/OrfCrawler.java | 140 -- .../crawler/orf/OrfEpisodeInfoDTO.java | 38 - .../mserver/crawler/orf/OrfVideoInfoDTO.java | 50 - .../orf/json/OrfMoreEpisodesDeserializer.java | 26 - .../orf/parser/OrfMoreEpisodesParser.java | 25 - .../orf/parser/OrfPlaylistDeserializer.java | 110 -- .../parser/OrfVideoDetailDeserializer.java | 163 -- .../mserver/crawler/orf/tasks/OrfDayTask.java | 52 - .../crawler/orf/tasks/OrfFilmDetailTask.java | 306 ---- .../mserver/crawler/orf/tasks/OrfHelper.java | 61 - .../orf/tasks/OrfHistoryOverviewTask.java | 42 - .../orf/tasks/OrfHistoryTopicTask.java | 39 - .../crawler/orf/tasks/OrfLetterPageTask.java | 70 - .../orfon/json/OrfOnEpisodeDeserializer.java | 50 +- .../json/OrfMoreEpisodesDeserializerTest.java | 23 - .../orf/parser/OrfMoreEpisodesParserTest.java | 39 - .../parser/OrfPlaylistDeserializerTest.java | 110 -- .../crawler/orf/tasks/OrfDayTaskTest.java | 86 - .../OrfFilmDetailTaskJugendschutzTest.java | 42 - .../orf/tasks/OrfFilmDetailTaskTest.java | 237 --- .../orf/tasks/OrfFilmDetailTaskTestBase.java | 18 - .../OrfFilmDetailTaskWithEpisodesTest.java | 189 -- .../crawler/orf/tasks/OrfHelperTest.java | 48 - .../orf/tasks/OrfHistoryOverviewTaskTest.java | 67 - .../orf/tasks/OrfHistoryTopicTaskTest.java | 137 -- .../orf/tasks/OrfLetterPageTaskTest.java | 131 -- .../crawler/orf/tasks/OrfTaskTestBase.java | 34 - .../crawler/orfon/OrfOnEpisodeTaskTest.java | 42 + src/test/resources/orfOn/episode_noDrm.json | 1558 +++++++++++++++++ 31 files changed, 1625 insertions(+), 2345 deletions(-) delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/OrfConstants.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/OrfCrawler.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/OrfEpisodeInfoDTO.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/OrfVideoInfoDTO.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializer.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParser.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializer.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/parser/OrfVideoDetailDeserializer.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTask.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTask.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelper.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTask.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTask.java delete mode 100644 src/main/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTask.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/json/OrfMoreEpisodesDeserializerTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfMoreEpisodesParserTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/parser/OrfPlaylistDeserializerTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfDayTaskTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskJugendschutzTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskTestBase.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfFilmDetailTaskWithEpisodesTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHelperTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryOverviewTaskTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfHistoryTopicTaskTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfLetterPageTaskTest.java delete mode 100644 src/test/java/de/mediathekview/mserver/crawler/orf/tasks/OrfTaskTestBase.java create mode 100644 src/test/resources/orfOn/episode_noDrm.json diff --git a/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java b/src/main/java/de/mediathekview/mserver/crawler/CrawlerManager.java index be935a3ac..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,6 @@ 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; 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/json/OrfOnEpisodeDeserializer.java b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java index 3a4622e74..112c7977c 100644 --- a/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java +++ b/src/main/java/de/mediathekview/mserver/crawler/orfon/json/OrfOnEpisodeDeserializer.java @@ -60,7 +60,7 @@ public class OrfOnEpisodeDeserializer implements JsonDeserializer> parseUrl(JsonElement jsonElement) { 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) { - return parseFallbackVideo(jsonElement); - } - - 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; + 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 Optional.empty(); + return parseFallbackVideo(jsonElement); } private Optional> parseFallbackVideo(JsonElement root) { @@ -199,7 +196,7 @@ private Optional> parseFallbackVideo(JsonElement root) if (codecs.isPresent() && codecs.get().isJsonArray()) { for (JsonElement singleVideo : codecs.get().getAsJsonArray()) { Optional tgtUrl = JsonUtils.getElementValueAsString(singleVideo, TAG_VIDEO_FALLBACK_URL); - if (tgtUrl.isPresent()) { + 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) { @@ -221,19 +218,22 @@ private Optional> readVideoForTargetCodec(JsonElement u 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()) { - 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); + // 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()) { - Optional.empty(); + return Optional.empty(); } return Optional.of(urls); } 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/OrfOnEpisodeTaskTest.java b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java index 1064ccdfe..b0efe7fc3 100644 --- a/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java +++ b/src/test/java/de/mediathekview/mserver/crawler/orfon/OrfOnEpisodeTaskTest.java @@ -189,6 +189,48 @@ Resolution.VERY_SMALL, new FilmUrl("https://apasfiis.sf.apa.at/ipad/cms-worldwid } } + @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) { 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