summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* README: Fix typo in test sectionEva Pace2023-03-251-1/+1
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4267>
* README: Add note about updating subprojectsZhao, Gang2023-02-191-0/+7
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3993>
* README: Several updates to sync with status quoNirbheek Chauhan2022-12-221-59/+73
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3595>
* README: Add section how to build and visualize documentationXavier Claessens2022-12-021-0/+16
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3442>
* meson: Improve certifi documentation on macOSNirbheek Chauhan2022-07-181-4/+4
| | | | | | | | | | | | First, just installing certifi doesn't install the ca-cert in the right location. The `Install Certificates.command` script also symlinks the openssl cert.pem to the certifi ca cert file Second, we can make it more likely that users will notice this if we make it a warning. If we ever get a bug report about this despite these measures, we can try to make this an error. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2707>
* README: update documentation for macOSStéphane Cerveau2022-03-231-0/+14
| | | | | | | | | Give hints regarding the certificates needed by Python. urllib.error.URLError: urlopen error [SSL .. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1794>
* docs: Fix typos in documentationSebastian Fricke2022-03-011-1/+1
| | | | | | | | | | In building-from-source-using-meson.md: s/implicitely/implicitly/ In README.md: s/uncompatible/incompatible/ Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1743>
* docs: Extend documentation for the GStreamer development environmentSebastian Fricke2022-03-011-0/+3
| | | | | | | Add more extensive documentation for the development environment. Document how the tool works, how to use it and common use cases. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1743>
* Remove the uninstalled termSebastian Fricke2022-03-011-2/+2
| | | | | | | | | | | | Remove the symbolic link `gst-uninstalled` which points to `gst-env`. The `uninstalled` is the old name and the project should stick to a single name for the procedure. Remove the term from all the files, exceptions are variables from dependencies like `uninstalled_variables` from pkgconfig and `meson-uninstalled`. Adjust mentions of the script in the documentation and README. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1743>
* README: Remove outdated Windows ARM64 related commentSeungha Yang2021-10-211-6/+0
| | | | | | | We bumped required meson version which contains the mentioned meson patch already. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1221>
* doc: update meson version in README.mdBrad Hards2021-10-201-3/+1
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1209>
* meson: add 'gpl' option and only build plugins with (A)GPL deps if ↵Tim-Philipp Müller2021-10-181-0/+24
| | | | | | | | | | explicitly enabled Require explicit opt-in to build plugins with (A)GPL dependencies. Keep ugly/bad options on 'auto' for now so cerbero doesn't fail. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1084>
* core: remove outdated mention to gst-buildStéphane Cerveau2021-09-301-1/+1
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/956>
* doc: update IRC links to OFTCBrad Hards2021-09-281-1/+1
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/945>
* Update README.md now that all modules have been merged in `gstreamer`Thibault Saunier2021-09-241-51/+35
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/891>
* gst-full: add 'gst-full-' features optionsStéphane Cerveau2020-12-111-0/+27
| | | | | | | | | | | | | | | | | | | These options allow to select a set of features from a given plugin with the following syntax: -Dgst-full-plugins=plugin1;plugin10 -Dgst-full-elements=plugin2:element1,element2 -Dgst-full-typefind-functions=plugins3:func -Dgst-full-device-providers=plugin4,dp1 -Dgst-full-dynamic-types=plugin5:dt1 By default all the enabled plugin are registered and gst-full-plugins will allow to include only a set of plugin If a feature(element, typefind etc.) is selected from a plugin, the plugin is removed from the plugins list. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199>
* gst-full: use a default version scriptStéphane Cerveau2020-10-141-1/+2
| | | | | | | | | | | | Use a default version script instead of Bsymbolic to get rid of x264 and ffmpeg symbol relocation issue. https://gitlab.freedesktop.org/gstreamer/gst-build/-/issues/108 Export only glib and gstreamer symbols. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/204>
* meson: add gst-full-version-script optionGuillaume Desmottes2020-10-061-0/+6
| | | | | | | | | | | | Can be used to control the exact symbols exported, or not, in libgstreamer-full. This is useful when building a tailored libgstreamer-full aimed to be run with some specific binaries. By using such version script one can reduce the size of the generated lib by letting the linker garbage collect all the unused APIs. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/195>
* README: Document gstreamer-full-1.0Xavier Claessens2020-10-051-0/+23
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/191>
* README: Document ARM64 native build on WindowsSeungha Yang2020-07-151-0/+9
| | | | | | Add some guide for native ARM64 build on Windows Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/175>
* README: document updated meson requirementTim-Philipp Müller2020-06-181-1/+3
|
* README: Add a screenshot showing how to run meson on windowsNirbheek Chauhan2020-06-151-2/+11
| | | | Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/161>
* README: Document which dependencies are availableNirbheek Chauhan2020-04-161-5/+53
| | | | | | | Also document how to build the Intel MSDK plugins, and how to enable/disable plugins in general. Closes https://gitlab.freedesktop.org/gstreamer/gst-build/-/issues/90
* README: Document gst-worktree, remove checkout-branch-worktreeNirbheek Chauhan2020-04-161-7/+7
| | | | Closes https://gitlab.freedesktop.org/gstreamer/gst-build/-/issues/72
* README: Use 'builddir' instead of 'build/'Nirbheek Chauhan2020-04-161-14/+14
| | | | | | `/` was added to make it clear that `build` is a directory and not a meson sub-command. However, this can be confusing for Windows users. use `builddir` which does the same job.
* dev environment: allow printing only env without starting a shellCharlie Turner2020-01-061-0/+10
| | | | | | | | | allow for workflows that don't want the gst scripts to start shells, this can be awkward for higher-level scripts setting up shells themselves. this is especially useful in combination with eval, and mimics the sort of thing you can do with ssh-agent -s.
* gst-env: Automatically set the prompt for zsh tooNirbheek Chauhan2019-12-221-9/+0
|
* README: Remove now-useless Fish prompt setup docsPhilippe Normand2019-12-201-10/+0
| | | | | After commit e13e6758e343d8012a2b15a9621d02f57fcbab93 there's no need to manually configure the prompt.
* dev environment: update documentationStéphane Cerveau2019-11-251-4/+14
| | | | Add gst-dev.py usage with an external script.
* Add support for wine+mingw environmentsThibault Saunier2019-10-011-0/+52
|
* Rename 'uninstalled' to development environmentThibault Saunier2019-09-241-7/+7
| | | | | | | | | | In the case of wine, the env can not be uninstalled, also developers do not necessiraly care about the fact that it is "uninstalled", the important thing is that it is a development environment, meaning that they can work on GStreamer or with GStreamer in the environment. I still keep the `uninstalled` target to avoid changing people's habits for now.
* Fix link to meson "subprojects" documentation Thibault Saunier2019-04-251-1/+1
|
* README: minor clarificationTim-Philipp Müller2019-04-251-4/+8
| | | | Fixes #30.
* README: Add instructions for Windows with screenshotsNirbheek Chauhan2019-04-171-12/+88
| | | | Also add a note about installation
* README.md: Document how to build the qt5 pluginNirbheek Chauhan2019-04-021-0/+11
|
* README: small updatesTim-Philipp Müller2019-03-291-0/+7
|
* gst-uninstalled: make the bash prompt override optionalAntonio Ospite2019-03-171-1/+13
| | | | | | | | | When using a custom prompt the automatic override may not look good, so provide a mechanism to disable it. Document that the user will have to use GST_ENV manually when setting the prompt to have a visual indicator of the gst-uninstalled environment.
* README: Warn about not using the Meson MSINirbheek Chauhan2018-10-281-2/+5
|
* Add a script to checkout a worktree of gst-build and its subprojectsThibault Saunier2018-03-201-0/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=794519
* README.md: explain how to run a specific test from a specific fileGuillaume Desmottes2018-02-051-1/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=793190
* README.md: update specific test exampleGuillaume Desmottes2018-02-051-1/+1
| | | | | | Tests naming scheme has changed. https://bugzilla.gnome.org/show_bug.cgi?id=793190
* README.md: use 'meson test' instead of 'mesontest'Guillaume Desmottes2018-02-051-4/+4
| | | | | | The latter has been deprecated. https://bugzilla.gnome.org/show_bug.cgi?id=793190
* README: Document fish shell prompt customizationPhilippe Normand2017-12-011-0/+10
|
* Handle a prefix in prefix/Thibault Saunier2017-09-061-0/+3
| | | | | This is usefull to use external libs and tool not buildable with meson inside our environment
* Enable custom subprojects optionMathieu Duponchelle2017-03-081-0/+17
|
* README: update tests sectionGuillaume Desmottes2017-01-301-1/+13
| | | | | | | | | - Add example to list all tests - Add example to run all tests of a specific component - Update example running one specific test to avoid test name clashes with other components. https://bugzilla.gnome.org/show_bug.cgi?id=776718
* README: document how to run testsGuillaume Desmottes2017-01-021-0/+13
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=776710
* Add 'update' and `git-update` targets to update git reposThibault Saunier2016-11-081-6/+28
|
* Fix setting $PS1 for bashThibault Saunier2016-11-021-0/+29
| | | | | And let user know how to set prompt for zsh and powerline in our README.
* README: Enhance and updateThibault Saunier2016-10-261-13/+27
|