Replace references to installed tutorials

Replace them with a link to gst-docs on cgit.freedesktop.org
This commit is contained in:
Olivier Crête 2016-10-25 16:16:42 -04:00
parent 0340cb6c97
commit c1ded8c01b
7 changed files with 32 additions and 27 deletions

View file

@ -11,8 +11,7 @@ linkage problems.
## Hello GStreamer \[Java code\] ## Hello GStreamer \[Java code\]
At **FIXME: add path** folder you should find an `android-tutorial-1` directory, The tutorial code is in the [gst-docs](https://cgit.freedesktop.org/gstreamer/gst-docs/) in the `tutorials/android-tutorial-1` subdirectory. This directories contains the usual Android NDK structure: a `src` folder for the Java code,
with the usual Android NDK structure: a `src` folder for the Java code,
a `jni` folder for the C code and a `res` folder for UI resources. a `jni` folder for the C code and a `res` folder for UI resources.
We recommend that you open this project in Eclipse (as explained We recommend that you open this project in Eclipse (as explained

View file

@ -70,10 +70,14 @@ interact through [JNI][Java Native Interface].
### Building the tutorials ### Building the tutorials
There are a few Android-specific tutorials in the The tutorials code are in the
`$GSTREAMER_ROOT_ANDROID/share/gst-sdk/tutorials` folder. Each [gst-docs](https://cgit.freedesktop.org/gstreamer/gst-docs/) in the
tutorial is a folder containing source code (in Java and C) and the `tutorials/` folder.
resource files required to build a complete Android application.
There are a few Android-specific tutorials in the `tutorials/`
folder. Each tutorial is a folder containing source code (in Java and
C) and the resource files required to build a complete Android
application.
The rest of the GStreamer tutorials (basic and playback tutorials) The rest of the GStreamer tutorials (basic and playback tutorials)
cannot be run on Android without modification. cannot be run on Android without modification.

View file

@ -49,12 +49,12 @@ example.
#### Building the tutorials #### Building the tutorials
GStreamer provides a few tutorials in the `xcode iOS` folder inside The tutorials code are in the
the `.dmg` file. Copy them out of the package and into a more suitable [gst-docs](https://cgit.freedesktop.org/gstreamer/gst-docs/) in the
place. We recommend that you open the project in Xcode, take a look `tutorials/xcode iOS` folder. We recommend that you open the project
at the sources and build them. This should confirm that the installation in Xcode, take a look at the sources and build them. This should
works and give some insight on how simple it is to mix Objective-C and C confirm that the installation works and give some insight on how
code. simple it is to mix Objective-C and C code.
#### Creating new projects #### Creating new projects

View file

@ -46,13 +46,13 @@ the `configure` script from inside the `gst-sdk-shell` environment.
#### Getting the tutorial's source code #### Getting the tutorial's source code
The source code for the tutorials can be copied and pasted from the The source code for the tutorials can be copied and pasted from the
tutorial pages into a text file, but, for convenience, it is also tutorial pages into a text file, but, for convenience, it is also available
available in a GIT repository and distributed with the SDK. in a GIT repository in the `tutorials` subdirectory.
The GIT repository can be cloned with: The GIT repository can be cloned with:
``` ```
git clone git://anongit.freedesktop.org/gstreamer/gst-sdk-tutorials git clone git://anongit.freedesktop.org/gstreamer/gst-docs
``` ```
#### Building the tutorials #### Building the tutorials

View file

@ -75,10 +75,10 @@ following [link](https://developer.apple.com/library/mac/#documentation/MacOSX/C
### Building the tutorials ### Building the tutorials
The tutorial's code, along with project files and a solution file for The tutorials code, along with project files and a solution file for
them all are included in the SDK. The source code and the XCode project them all, are in the
files are located [gst-docs](https://cgit.freedesktop.org/gstreamer/gst-docs/) in the
in `/Library/Frameworks/GStreamer.framework/Current/share/gst-sdk/tutorials.` `tutorials` subdirectory.
To start building the tutorials, create a new folder in your Documents To start building the tutorials, create a new folder in your Documents
directory and copy the directory and copy the

View file

@ -56,7 +56,7 @@ There are 3 sets of files in GStreamer binaries:
Get **the Runtime and Development files** installers appropriate for Get **the Runtime and Development files** installers appropriate for
your architecture from here: your architecture from here:
**FIXME: Add links ** [https://gstreamer.freedesktop.org/data/pkg/windows/](https://gstreamer.freedesktop.org/data/pkg/windows/)
Execute the installers and choose an installation folder. The suggested Execute the installers and choose an installation folder. The suggested
default is usually OK. default is usually OK.
@ -95,12 +95,11 @@ plugins are located.
### Building the tutorials ### Building the tutorials
The tutorial's code, along with project files and a solution file for
Visual Studio 2010 are all included in the GStreamer binaries, in
the `%GSTREAMER_ROOT_X86%``\share\gst-sdk\tutorials` folder.
`%GSTREAMER_ROOT_X86%` is an environment variable that the installer The tutorials code, along with project files and a solution file for
defined for you, and points to the installation folder of GStreamer binaries. Visual Studio 2010, are in the
[gst-docs](https://cgit.freedesktop.org/gstreamer/gst-docs/) in the
`tutorials` folder.
In order to prevent accidental modification of the original code, and to In order to prevent accidental modification of the original code, and to
make sure Visual Studio has the necessary permissions to write the make sure Visual Studio has the necessary permissions to write the

View file

@ -10,8 +10,11 @@ GStreamer library from Xcode using objective-C.
## Hello GStreamer! ## Hello GStreamer!
The code for this project can be found in the tutorials folder of The tutorials code are in the
**FIXME: where**. It was created using the GStreamer Single View [gst-docs](https://cgit.freedesktop.org/gstreamer/gst-docs/) in the
`tutorials/xcode iOS` folder.
It was created using the GStreamer Single View
Application template. The view contains only a `UILabel` that will be Application template. The view contains only a `UILabel` that will be
used to display the GStreamer's version to the user. used to display the GStreamer's version to the user.