diff --git a/.github_build/Build.bundle.cuda.env b/.github_build/Build.bundle.cuda.env index 808b4583..be91c889 100644 --- a/.github_build/Build.bundle.cuda.env +++ b/.github_build/Build.bundle.cuda.env @@ -1,3 +1,3 @@ # CORE NVIDIA CUDA BUNDLE -FFMPEG_VERSION=5.1.2 +FFMPEG_VERSION=5.1.3 CUDA_VERSION=11.7.1 diff --git a/.github_build/Build.bundle.env b/.github_build/Build.bundle.env index 060a458e..6758f80d 100644 --- a/.github_build/Build.bundle.env +++ b/.github_build/Build.bundle.env @@ -1,2 +1,2 @@ # CORE BUNDLE -FFMPEG_VERSION=5.1.2 +FFMPEG_VERSION=5.1.3 diff --git a/.github_build/Build.bundle.rpi.env b/.github_build/Build.bundle.rpi.env index 781096cd..3dbe35a9 100644 --- a/.github_build/Build.bundle.rpi.env +++ b/.github_build/Build.bundle.rpi.env @@ -1,2 +1,2 @@ # CORE RASPBERRY-PI BUNDLE -FFMPEG_VERSION=5.1.2 +FFMPEG_VERSION=5.1.3 diff --git a/.github_build/Build.bundle.vaapi.env b/.github_build/Build.bundle.vaapi.env index 060a458e..6758f80d 100644 --- a/.github_build/Build.bundle.vaapi.env +++ b/.github_build/Build.bundle.vaapi.env @@ -1,2 +1,2 @@ # CORE BUNDLE -FFMPEG_VERSION=5.1.2 +FFMPEG_VERSION=5.1.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9baa0480..848e3740 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - Add support for input framerate data from jsonstats patch - Add number of keyframes and extradata size to process progress data - Fix placeholder parameter parsing +- Mod bumps FFmpeg to v5.1.3 (datarhei/core:tag bundles) - Fix better naming for storage endpoint documentation - Fix freeing up S3 mounts - Fix URL validation if the path contains FFmpeg specific placeholders diff --git a/net/url/url_test.go b/net/url/url_test.go index dff373b8..1ad33409 100644 --- a/net/url/url_test.go +++ b/net/url/url_test.go @@ -55,7 +55,7 @@ func TestScheme(t *testing.T) { require.False(t, r) } -func TestPars(t *testing.T) { +func TestParse(t *testing.T) { u, err := Parse("http://localhost/foobar") require.NoError(t, err) require.Equal(t, &URL{ diff --git a/restream/fs/fs_test.go b/restream/fs/fs_test.go index c95f38c9..d34872ff 100644 --- a/restream/fs/fs_test.go +++ b/restream/fs/fs_test.go @@ -78,7 +78,7 @@ func TestMaxAge(t *testing.T) { require.Eventually(t, func() bool { return cleanfs.Files() == 0 - }, 5*time.Second, time.Second) + }, 10*time.Second, time.Second) cleanfs.WriteFileReader("/chunk_3.ts", strings.NewReader("chunk_3")) @@ -96,7 +96,7 @@ func TestMaxAge(t *testing.T) { require.ElementsMatch(t, []string{"/chunk_3.ts"}, names) return true - }, 2*time.Second, time.Second) + }, 5*time.Second, time.Second) cleanfs.Stop() }