From 1cabfebd2ff38ff599fa0c7dfd5683be561da82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Jim=C3=A9nez=20Moreno?= Date: Tue, 8 Jun 2021 11:51:29 +0200 Subject: [PATCH] docs: fix gst-validate-launch test suite example. According to gst-validate-1.0 --list-scenarios, play_5s is not a valid scenario. Runnning the test suite example with it ends up raising an AttributeError. Switching to play_15s makes it work. Part-of: --- subprojects/gst-devtools/docs/gst-validate-launcher.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-devtools/docs/gst-validate-launcher.md b/subprojects/gst-devtools/docs/gst-validate-launcher.md index 59d655d49e..2937189c0a 100644 --- a/subprojects/gst-devtools/docs/gst-validate-launcher.md +++ b/subprojects/gst-devtools/docs/gst-validate-launcher.md @@ -116,7 +116,7 @@ def setup_tests(test_manager, options): # Add scenarios scenarios = [] - scenarios.append("play_5s") + scenarios.append("play_15s") scenarios.append("seek_backward") test_manager.set_scenarios(scenarios) @@ -145,7 +145,7 @@ def setup_tests(test_manager, options): Once this is done, you've got a testsuite that will: - Run playbin pipelines on `file.mp4`, `file1.mkv` and `file2.ogv`> - executing `play_5s` and `seek_backward` scenarios + executing `play_15s` and `seek_backward` scenarios - Transcode `file.mp4,` `file1.mkv` and `file2.ogv` to h264 and mp3 in a MP4 container