From 36f0dfbb11cdb61c564453bee44d05e7cfd89822 Mon Sep 17 00:00:00 2001
From: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>
Date: Sun, 21 May 2023 08:10:36 +0200
Subject: [PATCH 1/2] Update dependencies
---
.github/workflows/build.yml | 3 +-
.github/workflows/nightly.yml | 30 +-
.github/workflows/release.yml | 40 +-
.gitlab-ci.yml | 20 +-
.mvn/wrapper/maven-wrapper.properties | 2 +-
pom.xml | 88 +--
src/assembly/dep_mac.xml | 4 +-
.../notification/LinuxNotificationCenter.java | 14 +-
src/test/kotlin/feed/RSSFeedParserTest.kt | 9 +-
src/test/resources/rss/mediathekviewweb.xml | 624 ++++++++++++++++++
10 files changed, 740 insertions(+), 94 deletions(-)
create mode 100644 src/test/resources/rss/mediathekviewweb.xml
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 99725433b6..4ccb05ec1d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -9,11 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up JDK 20
- uses: actions/setup-java@v2
+ uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '20'
- java-package: jdk
- name: Cache local Maven repository
uses: actions/cache@v3
with:
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index d0d24478d6..66829268db 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -1,4 +1,4 @@
-name: Nigthly release
+name: Nightly release
on:
schedule:
- cron: '0 0 * * *'
@@ -10,23 +10,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
ref: develop
fetch-depth: 10
- - uses: marceloprado/has-changed-path@v1
+ - uses: marceloprado/has-changed-path@v1.0.1
id: check-if-changed
with:
paths: .github/workflows src/ res/ pom.xml .install4j/ .mvn/
- name: Set up JDK 20
if: steps.check-if-changed.outputs.changed == 'true'
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v3
with:
- java-version: 20
+ distribution: 'zulu'
+ java-version: '20'
- name: Cache local Maven repository
if: steps.check-if-changed.outputs.changed == 'true'
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -35,7 +36,7 @@ jobs:
- name: Build and test with Maven
if: steps.check-if-changed.outputs.changed == 'true'
run: ./mvnw -B package
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: target
path: target/
@@ -70,13 +71,14 @@ jobs:
architecture: 64bit
maven_profiles: "!linux_64bit,mac_intel"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
ref: develop
- name: Set up JDK 20
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v3
with:
- java-version: 20
+ distribution: 'zulu'
+ java-version: '20'
- uses: AdoptOpenJDK/install-jdk@v1
with:
version: '8'
@@ -85,12 +87,12 @@ jobs:
- name: Download install4j
uses: wei/curl@v1
with:
- args: -fsSL 'https://download-gcdn.ej-technologies.com/install4j/install4j_unix_9_0_7.tar.gz' --output install4j.tar.gz
+ args: -fsSL 'https://download-gcdn.ej-technologies.com/install4j/install4j_unix_10_0_5.tar.gz' --output install4j.tar.gz
- name: Extract install4j
run: tar -zxvf install4j.tar.gz
- name: Cache local Maven repository
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -100,7 +102,7 @@ jobs:
run: ./mvnw clean install4j:install-license -Pinstall4j
env:
LICENSE_KEY_9: ${{ secrets.LICENSE_KEY_9 }}
- - uses: actions/download-artifact@v2
+ - uses: actions/download-artifact@v3
with:
name: target
@@ -109,7 +111,7 @@ jobs:
- name: Building AppImage
if: matrix.os == 'linux'
run: scripte/appimage.sh
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: release-target
path: |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index f525af69e3..a54a3ad76a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -11,23 +11,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
ref: develop
fetch-depth: 10
- - uses: marceloprado/has-changed-path@v1
+ - uses: marceloprado/has-changed-path@v1.0.1
id: check-if-changed
with:
paths: .github/workflows src/ res/ pom.xml .install4j/ .mvn/
- name: Set up JDK 20
if: steps.check-if-changed.outputs.changed == 'true'
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v3
with:
- java-version: 20
+ distribution: 'zulu'
+ java-version: '20'
- name: Cache local Maven repository
if: steps.check-if-changed.outputs.changed == 'true'
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -36,7 +37,7 @@ jobs:
- name: Build and test with Maven
if: steps.check-if-changed.outputs.changed == 'true'
run: ./mvnw -B package
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: target
path: target/
@@ -71,13 +72,13 @@ jobs:
# architecture: 64bit
# maven_profiles: "mac,!linux"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
ref: develop
- name: Set up JDK 20
- uses: actions/setup-java@v2
+ uses: actions/setup-java@v3
with:
- #distribution: 'temurin'
+ distribution: 'zulu'
java-version: '20'
- uses: AdoptOpenJDK/install-jdk@v1
with:
@@ -87,12 +88,12 @@ jobs:
- name: Download install4j
uses: wei/curl@v1
with:
- args: -fsSL 'https://download-gcdn.ej-technologies.com/install4j/install4j_unix_9_0_7.tar.gz' --output install4j.tar.gz
+ args: -fsSL 'https://download-gcdn.ej-technologies.com/install4j/install4j_unix_10_0_5.tar.gz' --output install4j.tar.gz
- name: Extract install4j
run: tar -zxvf install4j.tar.gz
- name: Cache local Maven repository
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -102,7 +103,7 @@ jobs:
run: ./mvnw clean install4j:install-license -Pinstall4j
env:
LICENSE_KEY_9: ${{ secrets.LICENSE_KEY_9 }}
- - uses: actions/download-artifact@v2
+ - uses: actions/download-artifact@v3
with:
name: target
@@ -111,7 +112,7 @@ jobs:
- name: Building AppImage
if: matrix.os == 'linux'
run: scripte/appimage.sh
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: release-target
path: |
@@ -122,19 +123,20 @@ jobs:
needs: [build,test]
if: needs.test.outputs.haschanged == 'true'
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
ref: develop
- name: Set up JDK 20
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v3
with:
- java-version: 20
+ distribution: 'zulu'
+ java-version: '20'
- name: Get version
run: echo "VERSION=$( ./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout )" >> $GITHUB_ENV
- - uses: actions/download-artifact@v2
+ - uses: actions/download-artifact@v3
with:
name: release-target
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
with:
name: release-artifacts
path: |
@@ -162,7 +164,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deleting build artifacts
- uses: geekyeggo/delete-artifact@v1
+ uses: geekyeggo/delete-artifact@v2
with:
name: |
release-target
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b18341e8d1..712de4a2d5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -48,7 +48,7 @@ stages:
Build and Deploy nightly Linux:
stage: deploy-nightly-lin
script:
- - mvn -B package -Plinux_64bit,install4j $MAVEN_CLI_OPTS
+ - mvn package -Plinux_64bit,install4j $MAVEN_CLI_OPTS
- echo "Baue AppImage"
- scripte/appimage.sh nightly
- /skripte/deploy.sh nightly linux $CI_COMMIT_SHA
@@ -58,7 +58,7 @@ Build and Deploy nightly Linux:
Build and Deploy nightly Linux ARM:
stage: deploy-nightly-linarm
script:
- - mvn -B package -P!linux_64bit,linux_arm_64bit,install4j $MAVEN_CLI_OPTS
+ - mvn package -P!linux_64bit,linux_arm_64bit,install4j $MAVEN_CLI_OPTS
- /skripte/deploy.sh nightly linux-aarch64 $CI_COMMIT_SHA
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "develop"'
@@ -66,7 +66,7 @@ Build and Deploy nightly Linux ARM:
Build and Deploy nightly Windows:
stage: deploy-nightly-win
script:
- - mvn -B package -P!linux_64bit,windows_64bit,install4j $MAVEN_CLI_OPTS
+ - mvn package -P!linux_64bit,windows_64bit,install4j $MAVEN_CLI_OPTS
- /skripte/deploy.sh nightly win $CI_COMMIT_SHA
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "develop"'
@@ -74,7 +74,7 @@ Build and Deploy nightly Windows:
# Build and Deploy nightly Windows 32bit:
# stage: deploy-nightly-win32
# script:
-# - mvn -B package -P!linux_64bit,windows_32bit,install4j $MAVEN_CLI_OPTS
+# - mvn package -P!linux_64bit,windows_32bit,install4j $MAVEN_CLI_OPTS
# - /skripte/deploy.sh nightly win32 $CI_COMMIT_SHA
# rules:
# - if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "develop"'
@@ -82,7 +82,7 @@ Build and Deploy nightly Windows:
Build and Deploy nightly Mac Intel:
stage: deploy-nightly-mac
script:
- - mvn -B package -P!linux_64bit,mac_intel $MAVEN_CLI_OPTS
+ - mvn package -P!linux_64bit,mac_intel $MAVEN_CLI_OPTS
- /skripte/deploy.sh nightly mac $CI_COMMIT_SHA
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "develop"'
@@ -90,7 +90,7 @@ Build and Deploy nightly Mac Intel:
# Build and Deploy nightly Mac Apple Silicon:
# stage: deploy-nightly-mac-as
# script:
-# - mvn -B package -P!linux_64bit,mac_apple_silicon $MAVEN_CLI_OPTS
+# - mvn package -P!linux_64bit,mac_apple_silicon $MAVEN_CLI_OPTS
# - /skripte/deploy.sh nightly mac $CI_COMMIT_SHA
# rules:
# - if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_COMMIT_BRANCH == "develop"'
@@ -100,7 +100,7 @@ Build and Deploy nightly Mac Intel:
Build and Deploy Linux:
stage: deploy-lin
script:
- - mvn -B package -Plinux_64bit,install4j $MAVEN_CLI_OPTS
+ - mvn package -Plinux_64bit,install4j $MAVEN_CLI_OPTS
- echo "Baue AppImage"
- scripte/appimage.sh release
- /skripte/deploy.sh release linux
@@ -110,7 +110,7 @@ Build and Deploy Linux:
Build and Deploy Linux ARM:
stage: deploy-linarm
script:
- - mvn -B package -P!linux_64bit,linux_arm_64bit,install4j $MAVEN_CLI_OPTS
+ - mvn package -P!linux_64bit,linux_arm_64bit,install4j $MAVEN_CLI_OPTS
- /skripte/deploy.sh release linux-aarch64
rules:
- if: $CI_COMMIT_TAG
@@ -118,7 +118,7 @@ Build and Deploy Linux ARM:
Build and Deploy Windows:
stage: deploy-win
script:
- - mvn -B package -P!linux_64bit,windows_64bit,install4j $MAVEN_CLI_OPTS
+ - mvn package -P!linux_64bit,windows_64bit,install4j $MAVEN_CLI_OPTS
- /skripte/deploy.sh release win
rules:
- if: $CI_COMMIT_TAG
@@ -126,7 +126,7 @@ Build and Deploy Windows:
# Build and Deploy Windows 32bit:
# stage: deploy-win32
# script:
-# - mvn -B package -P!linux_64bit,windows_32bit,install4j $MAVEN_CLI_OPTS
+# - mvn package -P!linux_64bit,windows_32bit,install4j $MAVEN_CLI_OPTS
# - /skripte/deploy.sh release win32
# rules:
# - if: $CI_COMMIT_TAG
diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties
index d8b2495a1e..3c6fda8c6e 100644
--- a/.mvn/wrapper/maven-wrapper.properties
+++ b/.mvn/wrapper/maven-wrapper.properties
@@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
-distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.1/apache-maven-3.9.1-bin.zip
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.2/apache-maven-3.9.2-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
diff --git a/pom.xml b/pom.xml
index 64b6c44354..01383d6181 100755
--- a/pom.xml
+++ b/pom.xml
@@ -82,42 +82,54 @@
UTF-8
20
20
- 19
- 1.8.21
+ 19
+ 1.8.22
${jdk.language.version}
${jdk.language.version}
- 23.1.0
- 3.23.1
+ 1.1
+ 11.2.1
+ 24.0.1
+ 3.24.2
2.9.0
2.11.0
3.12.0
11.1.2
+ 1.6.8
3.1.1
- 31.1-jre
+ 1.11.0
+ 32.0.1-jre
1.1.2
- 2.14.1
+ 2.15.2
20.0.1
+ 1.2.0
1.3
+ 1.5.4
+ 4.7.0.1
+ 1.0.0
+ 3.7.12
+ 1.0.0
5.13.0
- 5.9.0
+ 5.9.3
2.20.0
- 3.3.0
- 3.1.0
- 3.8.1
- 3.0.0-M1
- 3.0.0
- 3.0.0-M1
- 3.2.0
- 3.2.0
- 3.2.4
- 3.2.1
- 3.0.0-M5
- 11.0
- 4.10.0
- 5.0.0-alpha.10
- 4.7.0
- 3.41.2.1
+ 3.6.0
+ 3.2.0
+ 3.11.0
+ 3.1.1
+ 3.3.0
+ 3.1.1
+ 3.3.0
+ 3.3.1
+ 3.4.1
+ 3.3.0
+ 3.1.2
+ 1.3.2
+ 11.1
+ 5.3.1
+ 5.0.0-alpha.11
+ 4.7.4
+ 3.42.0.0
+ 1.6.5-1
1.9
mediathek.Main
@@ -142,14 +154,14 @@
${env.LICENSE_KEY_10}
10.0.5
- 9.5.0
+ 9.6.0
com.github.lgooddatepicker
LGoodDatePicker
- 11.2.1
+ ${LGoodDatePicker.version}
@@ -172,13 +184,13 @@
org.jfree
jfreechart
- 1.5.3
+ ${jfreechart.version}
org.swinglabs.swingx
swingx-all
- 1.6.5-1
+ ${swingx-all.version}
@@ -204,13 +216,13 @@
com.formdev
jide-oss
- 3.7.12
+ ${jide-oss.version}
es.blackleg
jlibnotify
- 0.2.0
+ ${jlibnotify.version}
net.java.dev.jna
@@ -250,7 +262,7 @@
com.sun.activation
javax.activation
- 1.2.0
+ ${javax.activation.version}
@@ -359,18 +371,18 @@
com.github.jiconfont
jiconfont-javafx
- 1.0.0
+ ${jiconfont-javafx.version}
com.github.jiconfont
jiconfont-font_awesome
- 4.7.0.1
+ ${jiconfont-font_awesome.version}
net.engio
mbassador
- 1.3.2
+ ${mbassador.version}
@@ -406,7 +418,7 @@
com.glazedlists
glazedlists
- 1.11.0
+ ${glazedlists.version}
@@ -482,7 +494,7 @@
airsquared
JMacNotification
- 1.1
+ ${JMacNotification.version}
@@ -736,7 +748,7 @@
com.googlecode.maven-download-plugin
download-maven-plugin
- 1.7.0
+ ${download-maven-plugin.version}
download-ffmpeg-exe-from-server
@@ -1057,7 +1069,7 @@
com.googlecode.maven-download-plugin
download-maven-plugin
- 1.7.0
+ ${download-maven-plugin.version}
download-shutdown-helper-from-server
@@ -1184,7 +1196,7 @@
com.googlecode.maven-download-plugin
download-maven-plugin
- 1.7.0
+ ${download-maven-plugin.version}
download-shutdown-helper-from-server
diff --git a/src/assembly/dep_mac.xml b/src/assembly/dep_mac.xml
index 40cdcfb341..d629943338 100644
--- a/src/assembly/dep_mac.xml
+++ b/src/assembly/dep_mac.xml
@@ -1,7 +1,7 @@
+ xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
bin
zip
diff --git a/src/main/java/mediathek/tool/notification/LinuxNotificationCenter.java b/src/main/java/mediathek/tool/notification/LinuxNotificationCenter.java
index 75c0539080..d4d4c4e893 100644
--- a/src/main/java/mediathek/tool/notification/LinuxNotificationCenter.java
+++ b/src/main/java/mediathek/tool/notification/LinuxNotificationCenter.java
@@ -1,7 +1,9 @@
package mediathek.tool.notification;
-import es.blackleg.jlibnotify.LibNotify;
-import es.blackleg.jlibnotify.core.DefaultLibNotifyLoader;
+import es.blackleg.jlibnotify.JLibnotify;
+import es.blackleg.jlibnotify.core.DefaultJLibnotifyLoader;
+import es.blackleg.jlibnotify.exception.JLibnotifyInitException;
+import es.blackleg.jlibnotify.exception.JLibnotifyLoadException;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
@@ -9,12 +11,12 @@
public class LinuxNotificationCenter implements INotificationCenter, Closeable {
private static final Logger logger = LogManager.getLogger();
- private LibNotify libNotify;
+ private JLibnotify libNotify;
private boolean nativeSupport;
public LinuxNotificationCenter() {
try {
- libNotify = DefaultLibNotifyLoader.getInstance().load();
+ libNotify = new DefaultJLibnotifyLoader().load();
libNotify.init("MediathekView");
nativeSupport = true;
@@ -29,7 +31,7 @@ public LinuxNotificationCenter() {
for (var s : caps)
logger.debug("\t {}",s);
}
- catch (UnsatisfiedLinkError | RuntimeException e) {
+ catch (UnsatisfiedLinkError | RuntimeException | JLibnotifyLoadException | JLibnotifyInitException e) {
nativeSupport = false;
logger.error("failed to initialize libNotify",e);
}
@@ -38,7 +40,7 @@ public LinuxNotificationCenter() {
@Override
public void displayNotification(NotificationMessage msg) {
var notification = libNotify.createNotification(msg.getTitle(), msg.message,"dialog-information");
- libNotify.showNotification(notification);
+ notification.show();
}
public boolean hasNativeSupport() {
diff --git a/src/test/kotlin/feed/RSSFeedParserTest.kt b/src/test/kotlin/feed/RSSFeedParserTest.kt
index f7c59d7386..9af100d07c 100644
--- a/src/test/kotlin/feed/RSSFeedParserTest.kt
+++ b/src/test/kotlin/feed/RSSFeedParserTest.kt
@@ -2,13 +2,13 @@ package feed
import org.junit.jupiter.api.Assertions
import org.junit.jupiter.api.Test
-import java.net.URL
+import java.io.File
internal class RSSFeedParserTest {
@Test
fun mvwTest() {
try {
- URL("https://mediathekviewweb.de/feed").openStream().use {
+ File("src/test/resources/rss/mediathekviewweb.xml").inputStream().use {
val parser = RSSFeedParser()
val feed = parser.readFeed(it)
Assertions.assertNotNull(feed)
@@ -18,7 +18,12 @@ internal class RSSFeedParserTest {
for (message in feed.messages) {
//println(message);
Assertions.assertNotNull(message)
+ Assertions.assertTrue(message.author.isBlank())
Assertions.assertFalse(message.guid.isBlank())
+ Assertions.assertFalse(message.link.isBlank())
+ Assertions.assertFalse(message.description.isBlank())
+ Assertions.assertFalse(message.title.isBlank())
+ Assertions.assertTrue(message.guid.endsWith('='))
}
}
} catch (e: Exception) {
diff --git a/src/test/resources/rss/mediathekviewweb.xml b/src/test/resources/rss/mediathekviewweb.xml
new file mode 100644
index 0000000000..7b2324a935
--- /dev/null
+++ b/src/test/resources/rss/mediathekviewweb.xml
@@ -0,0 +1,624 @@
+
+
+
+
+
+ https://mediathekviewweb.de/
+ RSS for Node
+ Fri, 19 May 2023 08:19:48 GMT
+
+ 75
+ -
+
+
+ https://nrodlzdf-a.akamaihd.net/none/3sat/23/05/230519_lebst_du_deinen_traum_ad_sbsbestimmt/1/230519_lebst_du_deinen_traum_ad_sbsbestimmt_a3a4_6660k_p37v17.mp4
+ OCnM+NbRGcc2PvxjrudOvXmcjR5fPAny5IChxrz6qps=
+
+
+ Fri, 19 May 2023 09:41:00 GMT
+
+ 1759
+ https://www.3sat.de/gesellschaft/selbstbestimmt/lebst-du-deinen-traum-102.html
+
+ -
+
+
+ https://nrodlzdf-a.akamaihd.net/none/3sat/23/05/230519_lebst_du_deinen_traum_ad_sbsbestimmt/1/230519_lebst_du_deinen_traum_ad_sbsbestimmt_a1a2_6660k_p37v17.mp4
+ eDWcsEcUBrMLKugOxAkf5Ob5X5qgxwikm6LWopacmBI=
+
+
+ Fri, 19 May 2023 09:41:00 GMT
+
+ 1759
+ https://www.3sat.de/gesellschaft/selbstbestimmt/lebst-du-deinen-traum-102.html
+
+ -
+
+
+ https://nrodlzdf-a.akamaihd.net/de/zdf/23/05/230519_usa_extrem_inf/1/230519_usa_extrem_inf_6660k_p37v17.mp4
+ gE43VIB1Ffxc2tSZlT1DlI88bsMqKWb+ciqGRgCx/BM=
+
+
+ Fri, 19 May 2023 09:25:00 GMT
+
+ 2621
+ https://www.zdf.de/dokumentation/zdfinfo-doku/usa-extrem-idaho-cowboys-und-milizen-100.html
+
+ -
+
+
+ https://wdrmedien-a.akamaihd.net/medp/ondemand/weltweit/fsk0/269/2694435/2694435_44365633.mp4
+ b14Dcq79m6ZihTYPNq9AS7z+mN5GEXPm0t3jfa7ZFkI=
+
+
+ Fri, 19 May 2023 08:55:00 GMT
+
+ 3526
+ https://www.ardmediathek.de/video/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTNkNDcwMGVlLWI1ZTUtNDU3ZC1iMTA2LTFmNmUzNmExMWRlNw
+
+ -
+
+
+ https://wdrmedien-a.akamaihd.net/medp/ondemand/weltweit/fsk0/269/2694435/2694435_44365633.mp4
+ mWYkRdkgcpYhIq/FE66cvlulbYf4i/DNFDf9qjklunE=
+
+
+ Fri, 19 May 2023 08:55:00 GMT
+
+ 3526
+ https://www.ardmediathek.de/video/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTNkNDcwMGVlLWI1ZTUtNDU3ZC1iMTA2LTFmNmUzNmExMWRlNw
+
+ -
+
+
+ https://pdvideosdaserste-a.akamaihd.net/int/2023/05/18/BR_SM836168/BR_SM836168_2627409_sendeton_1920x1080-50p-5000kbit.mp4
+ QxNiZ3cihywZeppubfVikwnXDBFD7xFIe2KwRPqUIzE=
+
+
+ Fri, 19 May 2023 07:55:00 GMT
+
+ 2929
+ https://www.ardmediathek.de/video/Y3JpZDovL2Rhc2Vyc3RlLmRlL3ZlcnLDvGNrdCBuYWNoIG1lZXIvMjAyMy0wNS0xOV8wOS01NS1NRVNa
+
+ -
+
+
+ https://arteptweb-a.akamaihd.net/am/ptweb/105000/105300/105395-025-A_SQ_0_VOF-STMF_07732511_MP4-2200_AMM-PTWEB-101074994623100_238I7YWAxP.mp4
+ dTbibP7wDHcXbH4imZW5+Vr4iK6GTsRismspewkoN8w=
+
+
+ Fri, 19 May 2023 06:55:00 GMT
+
+ 1725
+ https://www.arte.tv/fr/videos/105395-025-A/invitation-au-voyage-nos-inspirations/
+
+ -
+
+
+ https://arteptweb-a.akamaihd.net/am/ptweb/105000/105300/105395-025-A_SQ_0_VOF-STF_07732507_MP4-2200_AMM-PTWEB-101074985609348_238I1YWAtz.mp4
+ Sxs8ZZQh/CkROh48Pyst+mB4ySCFQIXpvpN737+kfJA=
+
+
+ Fri, 19 May 2023 06:55:00 GMT
+
+ 1725
+ https://www.arte.tv/fr/videos/105395-025-A/invitation-au-voyage-nos-inspirations/
+
+ -
+
+
+ https://pmdonlinekika-a.akamaihd.net/mp4dyn/4/FCMS-4dbdeefe-6f70-4fa6-ab9c-e4c9884fd14f-5a2c8da1cdb7_4d.mp4
+ NX3Fh84S7knOYgkjIKse+NNEnN5to+8y8Fmq+smthPo=
+
+
+ Fri, 19 May 2023 06:50:00 GMT
+
+ 634
+ https://www.kika.de/weisst-du-eigentlich-wie-lieb-ich-dich-hab/videos/video64984
+
+ -
+
+
+ https://pmdonlinekika-a.akamaihd.net/mp4dyn/1/FCMS-15de7b27-8d5c-42e9-9101-1d6a04da9c34-5a2c8da1cdb7_15.mp4
+ 2zd69jHRHI999eW1KL3/W8UxiEqCcfMY49n65lXPA4w=
+
+
+ Fri, 19 May 2023 06:50:00 GMT
+
+ 634
+ https://www.kika.de/weisst-du-eigentlich-wie-lieb-ich-dich-hab/videos/video65006
+
+ -
+
+
+ https://nrodlzdf-a.akamaihd.net/none/zdf/23/05/230519_0837_hko/1/230519_0837_hko_6660k_p37v17.mp4
+ tBcqhHx+sT5GXrimV8tmuyHxpPHCAV1NvMr+Qhbpv94=
+
+
+ Fri, 19 May 2023 06:46:14 GMT
+
+ 115
+ https://www.zdf.de/nachrichten/heute-sendungen/videos/heute-xpress-aktuelle-sendung-100.html
+
+ -
+
+ https://cdn-storage.br.de/b7/2022-12/01/d29d3f52-714d-11ed-a979-02420a00050a_X.mp4
+ KbTcd0GkMXE9Mp+4IRTQeidPJOI28sDBqQK39D4fROU=
+
+
+ Fri, 19 May 2023 06:40:00 GMT
+
+ 869
+ https://www.br.de/mediathek//video/av:5d416bfb7c69d4001a543d36
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0830_sd_02_ZIB-8-30_____14179470__o__1970947436__s15396818_8__ORF2HD_08300103P_08331421P_Q8C.mp4/playlist.m3u8
+ 4CMtEbh0Dbcfroqx+6O/LWz9TFbplZAbvR/R4P6rKiI=
+
+
+ Fri, 19 May 2023 06:30:00 GMT
+
+ 194
+ https://tvthek.orf.at/profile/ZIB-830/12288261/ZIB-830/14179470
+
+ -
+
+
+ https://pmdonlinekika-a.akamaihd.net/mp4dyn/a/FCMS-a65544df-e821-4bdf-a9d1-e3cdf9eaeeb3-5a2c8da1cdb7_a6.mp4
+ reH/jivSBYWUxBSPoWUFpikg43IQH48vK3UnZLwtySs=
+
+
+ Fri, 19 May 2023 06:15:51 GMT
+
+ 662
+ https://www.kika.de/zoes-zauberschrank/videos/video63798
+
+ -
+
+
+ https://pmdonlinekika-a.akamaihd.net/mp4dyn/7/FCMS-7ffb0bf7-d771-44a7-976e-238a669d0f75-5a2c8da1cdb7_7f.mp4
+ DsnfdS1qw+7NfPoocgUDOzfuG1ZnZ/79s9T0R6u6c1M=
+
+
+ Fri, 19 May 2023 06:15:44 GMT
+
+ 662
+ https://www.kika.de/zoes-zauberschrank/videos/video63770
+
+ -
+
+
+ http://tvdlzdf-a.akamaihd.net/dach/tivi/20/06/200622_folge36_lieselotte_fotografin_lie/3/200622_folge36_lieselotte_fotografin_lie_3360k_p36v15.mp4
+ MRsDdTcZwVW9zKT4AOqyeJmZszmAxIwqrsesf6ndsk4=
+
+
+ Fri, 19 May 2023 06:15:00 GMT
+
+ 422
+ https://www.kika.de/lieselotte/videos/lieselotte-als-fotografin-104
+
+ -
+
+
+ http://tvdlzdf-a.akamaihd.net/dach/tivi/20/06/200622_folge35_lieselotte_ponypost_lie/3/200622_folge35_lieselotte_ponypost_lie_3360k_p36v15.mp4
+ SFtu235TY4S4+zRAhyk0OcNnRsqYzd0NEoufKiCWuFI=
+
+
+ Fri, 19 May 2023 06:10:00 GMT
+
+ 422
+ https://www.kika.de/lieselotte/videos/lieselotte-und-die-pony-post-104
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_-Goldener-Flueg__14179469__o__1180445464__s15396813_3__ORF2HD_08030316P_08033607P_Q8C.mp4/playlist.m3u8
+ GV9sfNw3spUUUp8QjlWfTq+EENeRGQHu/UjcLvMtGjw=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 32
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_G7-Gipfel-in-Ja__14179469__o__8416415236__s15396810_0__ORF2HD_08001507P_08014701P_Q8C.mp4/playlist.m3u8
+ L6cVpsrNGTtp95WbT17b9Li0Us9F1mdf+c26xi+2ztU=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 91
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230518_125226_18899862_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ iB+Tb1Fg6cVORJJe5tlBn53uguY/cR5MX/FoCgmVGno=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 118
+ https://www.srf.ch/play/tv/sport-clip/video/marco-schällibaum-über-das-leben-in-der-westschweiz?id=308fbc0d-bf59-468e-b98e-ad0a46aa08ba
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_Wetter__14179469__o__1352200311__s15396817_7__ORF2HD_08061903P_08075119P_Q8C.mp4/playlist.m3u8
+ +RYf583S6AQ+Mg/xv76WY+MbYPTHNhlYr22p36IUavc=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 92
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230517_110634_18884700_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ oeUfOJZS2lieTUJQRxtZ4qF9nC3EiaEiQeBTuS21TZw=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 104
+ https://www.srf.ch/play/tv/sport-clip/video/ella-ljustina-«mittlerweile-ist-der-fcz-nicht-mehr-der-klare-favorit»?id=745fc7d6-f906-48e0-b967-7cc72d0fad39
+
+ -
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_Signation---Beg__14179469__o__4314052416__s15396809_9__ORF2HD_08000206P_08001507P_Q8C.mp4/playlist.m3u8
+ A44CBvKon6DazVktFTZOXJy12ywC2wNYJDQct1icPJ8=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 13
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_Lars-Eidinger-e__14179469__o__1100752148__s15396816_6__ORF2HD_08051019P_08061903P_Q8C.mp4/playlist.m3u8
+ CpOHqC2AG3n7IDMfjeRebRJrY0o++uE+2r+2GC+sysc=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 68
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230517_190451_18887601_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ 9Mn7J03EH+CNrJPY7CXwXA9xEtQ7HimqgF3JQNp10Q4=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 154
+ https://www.srf.ch/play/tv/sport-clip/video/noch-ein-punkt-fehlt-zum-yverdoner-fussball-märchen?id=0d180c39-4b4b-4e8d-b29a-5f9fadef3d82
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230517_154737_18888184_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ 1yRosaHDJ5DFn04I7b8PftJPWFTocc+j03nhEQSspVY=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 217
+ https://www.srf.ch/play/tv/sport-clip/video/rutishauser-«ganz-klar-–-wir-sind-reif-um-den-fcz-zu-schlagen»?id=611b7a0b-b20f-4912-88a3-4d71c5acba98
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_Italien--14-Tot__14179469__o__1699827467__s15396815_5__ORF2HD_08040709P_08051019P_Q8C.mp4/playlist.m3u8
+ 09TcOUpj7k6yGOo6221kFP3PewZvXTrvkHRXur6zGVQ=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 63
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230518_125328_18899861_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ HzHLoeRdFbHhAJS0ZbE0fBbwIB3PROXiMjYmyh4P2vs=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 126
+ https://www.srf.ch/play/tv/sport-clip/video/schällibaum-«haben-das-unmögliche-möglich-gemacht»?id=968563ef-6bd8-4aab-899b-4438814f7077
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_233-Millionen-E__14179469__o__1440944071__s15396811_1__ORF2HD_08014701P_08020503P_Q8C.mp4/playlist.m3u8
+ DtoE9XBxoau74HFwhRveZWaIAS7PiwS+d1eZ37E8MQY=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 18
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide_episodes/14179469_0010_Q8C.mp4/playlist.m3u8
+ Ir+VqsFhiJEUEgd8+KaWgeBBHtWiouGUVITWTG3lKwo=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 470
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_Beginn-der-Klim__14179469__o__1932509066__s15396812_2__ORF2HD_08020503P_08030316P_Q8C.mp4/playlist.m3u8
+ lANtCBlQnHVMvWSGTCO6u1S4tgNEeTajOqnPc8bx1vw=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 58
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0800_tl_02_ZIB-8-00_Autolenker-rast__14179469__o__1038921552__s15396814_4__ORF2HD_08033607P_08040709P_Q8C.mp4/playlist.m3u8
+ q7G4YR0xb65iygZtZ4VJOVvO9VzU2c+BOQL3f19StMg=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 31
+ https://tvthek.orf.at/profile/ZIB-800/12288249/ZIB-800/14179469
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230518_125431_18897498_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ pcTRIQjST2EEIUyC5d2Trh7M+LYTPlcXZWiTdMy82dk=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 215
+ https://www.srf.ch/play/tv/sport-clip/video/schällibaum-über-die-bedeutung-des-aufstiegs-für-yverdon-und-sich-selber?id=49f44dba-a4ad-467d-b002-4c58517a5e38
+
+ -
+
+
+ https://srf-vod-amd.akamaized.net/world/hls/sport_clip/2023/05/sport_clip_20230518_120814_18898797_v_webcast_h264_,q40,q10,q20,q30,q50,q60,.mp4.csmil/index-f6-v1-a1.m3u8
+ /yxpu9qdxxISZprRjDA2+ddTkazJsMadtylz2Ex1gXs=
+
+
+ Fri, 19 May 2023 06:00:00 GMT
+
+ 137
+ https://www.srf.ch/play/tv/sport-clip/video/schällibaum-«das-leben-ist-wie-eine-visitenkarte»?id=e6594f87-8987-4a80-b59c-dcab8c5004f3
+
+ -
+
+
+ https://pmdonlinekika-a.akamaihd.net/mp4dyn/f/FCMS-fff449e6-86d1-4f2a-bebd-533bba3f4661-087bde46997e_ff.mp4
+ OjBZmyrA3w95qfeoW0hGGElaE6iPRCOKGhQ7SJCVF5Q=
+
+
+ Fri, 19 May 2023 05:59:43 GMT
+
+ 119
+ https://www.kika.de/kikaninchen/videos/video92660
+
+ -
+
+
+ https://wdrmedien-a.akamaihd.net/medp/ondemand/weltweit/fsk0/292/2924997/2924997_51617797.mp4
+ OjQWj84Ta3r78AiDdxYqgmNjV6E/xv2hL20ddMb5B+k=
+
+
+ Fri, 19 May 2023 05:55:00 GMT
+
+ 1463
+ https://www.ardmediathek.de/video/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTJkYTllYTVkLTIwMmUtNGM0MC1hNzQ0LTY0ODA1MTUyMWNjOA
+
+ -
+
+
+ https://wdrmedien-a.akamaihd.net/medp/ondemand/weltweit/fsk0/292/2924997/2924997_51617797.mp4
+ P5qNVfEp+81E7Uebc2uYyyvfDlzc8Qx4DcafNOe7OcU=
+
+
+ Fri, 19 May 2023 05:55:00 GMT
+
+ 1463
+ https://www.ardmediathek.de/video/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTJkYTllYTVkLTIwMmUtNGM0MC1hNzQ0LTY0ODA1MTUyMWNjOA
+
+ -
+
+
+ https://pmdonlinekika-a.akamaihd.net/mp4dyn/6/FCMS-6521ec12-0dfb-422f-893e-028cebeef3f6-5a2c8da1cdb7_65.mp4
+ Xf31SQAbGjbQZcAZUVTrJL1yG7lmsBJLENkJormcbxU=
+
+
+ Fri, 19 May 2023 05:54:01 GMT
+
+ 210
+ https://www.kika.de/kikaninchen/videos/video44742
+
+ -
+
+
+ https://wdrmedien-a.akamaihd.net/medp/ondemand/de/fsk0/285/2853987/2853987_49892473.mp4
+ md6XdJezeYwyySNvdL/Z+MSY3lSct4gplkI6ULAe/k0=
+
+
+ Fri, 19 May 2023 05:50:00 GMT
+
+ 1843
+ https://www.ardmediathek.de/video/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTY5OTg3NWE4LTk1NmQtNGQ3Zi05NWYzLWRjNDFhOWI3NTJiZQ
+
+ -
+
+
+ https://wdrmedien-a.akamaihd.net/medp/ondemand/de/fsk0/285/2853987/2853987_49892473.mp4
+ vFOhXXBvHBLjaA5e8o2gW7pcMP+ALNaCfYUWxWheYhw=
+
+
+ Fri, 19 May 2023 05:50:00 GMT
+
+ 1843
+ https://www.ardmediathek.de/video/Y3JpZDovL3dkci5kZS9CZWl0cmFnLTY5OTg3NWE4LTk1NmQtNGQ3Zi05NWYzLWRjNDFhOWI3NTJiZQ
+
+ -
+
+
+ https://mediandr-a.akamaihd.net/progressive_geo/2021/0319/TV-20210319-1358-0200.hd.mp4
+ j1OlFq3n/W5JV003A1MTPZ7sJ/MAg/EgMKm/o2e8zTw=
+
+
+ Fri, 19 May 2023 05:45:00 GMT
+
+ 1291
+ https://www.kika.de/sesamstrasse/videos/zweitausendachthunderteinundneunzig-die-monster-ampel-100
+
+ -
+
+
+ https://nrodlzdf-a.akamaihd.net/none/zdf/23/05/230519_sendung_faf/1/230519_sendung_faf_3328k_p36v14.mp4
+ 9p+K2xHpOqh6HH1qCTb+Sl/5qeeqvOu56avJ4zpysZ8=
+
+
+ Fri, 19 May 2023 05:40:00 GMT
+
+ 802
+ https://www.zdf.de/kultur/forum-am-freitag/forum-am-freitag-vom-19-mai-2023-100.html
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0739_tl_01_Tolle-Tiere_Tolle-Tiere__14179450__o__7636877206__s15396808_8__ORF1HD_07395717P_07521207P_Q8C.mp4/playlist.m3u8
+ FvNipLqB5ZjNHsoHyCh7T4/Jk8G/iXOkxfVa1ec0gxA=
+
+
+ Fri, 19 May 2023 05:39:37 GMT
+
+ 735
+ https://tvthek.orf.at/profile/Tolle-Tiere/13764575/Tolle-Tiere/14179450
+
+ -
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_01_Kasperlueberras_Kasperlueberras__14179449__o__5784603666__s15396806_6__ORF1HD_07310600P_07341913P_Q8C.mp4/playlist.m3u8
+ /Ow0Kb1prAFoW62Wntj1HzG9IyeEwDN6Gs5aDlExTb4=
+
+
+ Fri, 19 May 2023 05:30:45 GMT
+
+ 194
+ https://tvthek.orf.at/profile/Kasperlueberraschung/13894271/Kasperlueberraschung/14179449
+
+ -
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_02_Guten-Morgen-Oe_Hitpanorama__14179564__o__1960068511__s15396746_6__ORF2HD_08263922P_08300100P_Q8C.mp4/playlist.m3u8
+ UoJSs00WAQ7UKnb74mzFxylOg/7ClEYT9AfWVTUDOJ8=
+
+
+ Fri, 19 May 2023 05:30:00 GMT
+
+ 201
+ https://tvthek.orf.at/profile/Guten-Morgen-Oesterreich-0730/13887644/Guten-Morgen-Oesterreich-0730/14179564
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_02_Guten-Morgen-Oe_Signation---Beg__14179564__o__1473020531__s15396730_0__ORF2HD_07331506P_07340024P_Q8C.mp4/playlist.m3u8
+ s3eE42VPBlWLPZ+/vZJQu2iDdm/tOr67S0F7RkSTBi0=
+
+
+ Fri, 19 May 2023 05:30:00 GMT
+
+ 2872
+ https://tvthek.orf.at/profile/Guten-Morgen-Oesterreich-0730/13887644/Guten-Morgen-Oesterreich-0730/14179564
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_02_Guten-Morgen-Oe_Leseleistung-de__14179564__o__7445758076__s15396741_1__ORF2HD_08075121P_08104421P_Q8C.mp4/playlist.m3u8
+ Yp3hHEQea+99aX1n1t6RF0Jfd881NNi4VgtWKu9uSBM=
+
+
+ Fri, 19 May 2023 05:30:00 GMT
+
+ 173
+ https://tvthek.orf.at/profile/Guten-Morgen-Oesterreich-0730/13887644/Guten-Morgen-Oesterreich-0730/14179564
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_02_Guten-Morgen-Oe_Tag-der-Bienen__14179564__o__1407418028__s15396739_9__ORF2HD_07521201P_07554101P_Q8C.mp4/playlist.m3u8
+ HNclvnXz3YMwYu5cC3BJtCB5ZmJ/WOEcoBBVeUZ3Iug=
+
+
+ Fri, 19 May 2023 05:30:00 GMT
+
+ 209
+ https://tvthek.orf.at/profile/Guten-Morgen-Oesterreich-0730/13887644/Guten-Morgen-Oesterreich-0730/14179564
+
+ -
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_02_Guten-Morgen-Oe_Hitpanoarama__14179564__o__1686228492__s15396740_0__ORF2HD_07554101P_07585704P_Q8C.mp4/playlist.m3u8
+ pPDQQG/di/lFBfJBA6GuP6/JGIfc0Orq3N16G1YW7pk=
+
+
+ Fri, 19 May 2023 05:30:00 GMT
+
+ 196
+ https://tvthek.orf.at/profile/Guten-Morgen-Oesterreich-0730/13887644/Guten-Morgen-Oesterreich-0730/14179564
+
+ -
+
+
+ https://apasfiis.sf.apa.at/ipad/cms-worldwide/2023-05-19_0730_tl_02_Guten-Morgen-Oe_Vorschau-auf-da__14179564__o__1468606094__s15396742_2__ORF2HD_08104421P_08170817P_Q8C.mp4/playlist.m3u8
+ TTXJL8fHmrcI8OB10ZYr2iN5tbYKEF51dzK54xgxJL4=
+
+
+ Fri, 19 May 2023 05:30:00 GMT
+
+ 383
+ https://tvthek.orf.at/profile/Guten-Morgen-Oesterreich-0730/13887644/Guten-Morgen-Oesterreich-0730/14179564
+
+
+
\ No newline at end of file
From 9b62e210923c71e46345e8f674937951fb39614a Mon Sep 17 00:00:00 2001
From: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>
Date: Sun, 21 May 2023 08:29:01 +0200
Subject: [PATCH 2/2] Try GitLab pipeline with openjdk-19-jre-headless instead
of 11
---
.gitlab-ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 712de4a2d5..d2bd1bb70b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,7 @@ default:
- mvrunner1
before_script:
- apt-get update -qq
- - apt-get install -y -qq openjdk-11-jre-headless ssh lib32ncurses6 lib32z1 wget tar file gnupg2 git-lfs > /dev/null
+ - apt-get install -y -qq openjdk-19-jre-headless ssh lib32ncurses6 lib32z1 wget tar file gnupg2 git-lfs > /dev/null
- source /private/ENVS
- whoami
- mkdir ~/.ssh