From c4ff523cf4881c2536f29b23589d6c46bbc5e635 Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Thu, 26 Feb 2026 10:06:03 +0300 Subject: [PATCH] Test video url refresh. --- modules/videoio/test/test_ffmpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/videoio/test/test_ffmpeg.cpp b/modules/videoio/test/test_ffmpeg.cpp index a8fdc39f8c..85c1cd5457 100644 --- a/modules/videoio/test/test_ffmpeg.cpp +++ b/modules/videoio/test/test_ffmpeg.cpp @@ -851,7 +851,7 @@ TEST(videoio_ffmpeg, DISABLED_open_from_web) if (!videoio_registry::hasBackend(CAP_FFMPEG)) throw SkipTestException("FFmpeg backend was not found"); - string video_file = "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"; + string video_file = "https://dl.opencv.org/data/BigBuckBunny.mp4"; VideoCapture cap(video_file, CAP_FFMPEG); int n_frames = -1; EXPECT_NO_THROW(n_frames = (int)cap.get(CAP_PROP_FRAME_COUNT));