diff options
author | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-08-29 15:26:33 -0300 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-08-29 22:20:46 -0300 |
commit | e89446b2f68b01da85c0292e04057596a8293832 (patch) | |
tree | 877f9a0b034578abdb730926c2d3e4f4232a4fc0 /samples | |
parent | 893169175d1e0e69c0fe511975cc5b73ffd55cbd (diff) |
samples: Fix broken media uris
Diffstat (limited to 'samples')
-rw-r--r-- | samples/PlaybackTutorial1.cs | 2 | ||||
-rw-r--r-- | samples/PlaybackTutorial2.cs | 4 | ||||
-rw-r--r-- | samples/PlaybackTutorial4.cs | 2 | ||||
-rw-r--r-- | samples/PlaybackTutorial5.cs | 2 | ||||
-rw-r--r-- | samples/PlaybackTutorial7.cs | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/samples/PlaybackTutorial1.cs b/samples/PlaybackTutorial1.cs index b6b5b43..c0a9ba3 100644 --- a/samples/PlaybackTutorial1.cs +++ b/samples/PlaybackTutorial1.cs @@ -33,7 +33,7 @@ namespace GstreamerSharp } // Set the URI to play - Playbin ["uri"] = "http://docs.freedesktop.org/software/gstreamer-sdk/data/media/sintel_cropped_multilingual.webm"; + Playbin ["uri"] = "http://freedesktop.org/software/gstreamer-sdk/data/media/sintel_cropped_multilingual.webm"; // Set flags to show Audio and Video but ignore Subtitles var flags = (uint)Playbin ["flags"]; diff --git a/samples/PlaybackTutorial2.cs b/samples/PlaybackTutorial2.cs index f543515..20ff29d 100644 --- a/samples/PlaybackTutorial2.cs +++ b/samples/PlaybackTutorial2.cs @@ -33,10 +33,10 @@ namespace GstreamerSharp } // Set the URI to play - Playbin ["uri"] = "http://docs.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.ogv"; + Playbin ["uri"] = "http://freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.ogv"; // Set the subtitle URI to play and some font description - Playbin ["suburi"] = "http://docs.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer_gr.srt"; + Playbin ["suburi"] = "http://freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer_gr.srt"; Playbin ["subtitle-font-desc"] = "Sans, 18"; // Set flags to show Audio and Video and Subtitles diff --git a/samples/PlaybackTutorial4.cs b/samples/PlaybackTutorial4.cs index 985dbfc..c31e99d 100644 --- a/samples/PlaybackTutorial4.cs +++ b/samples/PlaybackTutorial4.cs @@ -33,7 +33,7 @@ namespace GstreamerSharp BufferingLevel = 100; // Build the pipeline - Pipeline = Parse.Launch ("playbin uri=http://docs.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm"); + Pipeline = Parse.Launch ("playbin uri=http://freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm"); var bus = Pipeline.Bus; // Set the download flag diff --git a/samples/PlaybackTutorial5.cs b/samples/PlaybackTutorial5.cs index 166dcba..8fd17b2 100644 --- a/samples/PlaybackTutorial5.cs +++ b/samples/PlaybackTutorial5.cs @@ -102,7 +102,7 @@ namespace GstreamerSharp Console.WriteLine (" 'Q' to quit"); // Build the pipeline - Pipeline = Parse.Launch ("playbin uri=http://docs.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm"); + Pipeline = Parse.Launch ("playbin uri=http://freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm"); // Add a keyboard watch so we get notified of keystrokes diff --git a/samples/PlaybackTutorial7.cs b/samples/PlaybackTutorial7.cs index 75bb1e0..c717602 100644 --- a/samples/PlaybackTutorial7.cs +++ b/samples/PlaybackTutorial7.cs @@ -16,7 +16,7 @@ namespace GstreamerSharp Application.Init (ref args); // Build the pipeline - var pipeline = Parse.Launch ("playbin uri=http://docs.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm"); + var pipeline = Parse.Launch ("playbin uri=http://freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm"); // Create the elements inside the sink bin var equalizer = ElementFactory.Make ("equalizer-3bands", "equalizer"); |