{"id":19000305,"url":"https://github.com/fuse-modules/fuse-gstreamer","last_synced_at":"2026-04-19T05:30:16.401Z","repository":{"id":57243278,"uuid":"210514739","full_name":"fuse-modules/fuse-gstreamer","owner":"fuse-modules","description":"GStreamer package for Uno and Fuse apps","archived":false,"fork":false,"pushed_at":"2022-04-19T18:29:51.000Z","size":91076,"stargazers_count":7,"open_issues_count":2,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-24T09:35:40.174Z","etag":null,"topics":["app","desktop","fuse","gstreamer","mobile","uno"],"latest_commit_sha":null,"homepage":"https://gstreamer.freedesktop.org/","language":"Uno","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fuse-modules.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-24T04:53:15.000Z","updated_at":"2023-06-04T23:54:19.000Z","dependencies_parsed_at":"2022-09-15T08:50:34.728Z","dependency_job_id":null,"html_url":"https://github.com/fuse-modules/fuse-gstreamer","commit_stats":null,"previous_names":["mortend/fuse-gstreamer"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuse-modules%2Ffuse-gstreamer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuse-modules%2Ffuse-gstreamer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuse-modules%2Ffuse-gstreamer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuse-modules%2Ffuse-gstreamer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fuse-modules","download_url":"https://codeload.github.com/fuse-modules/fuse-gstreamer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240018706,"owners_count":19734874,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["app","desktop","fuse","gstreamer","mobile","uno"],"created_at":"2024-11-08T18:06:52.778Z","updated_at":"2026-04-19T05:30:16.320Z","avatar_url":"https://github.com/fuse-modules.png","language":"Uno","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fuse-gstreamer\n\n[![AppVeyor build status](https://img.shields.io/appveyor/ci/mortend/fuse-gstreamer/master.svg?logo=appveyor\u0026logoColor=silver\u0026style=flat-square)](https://ci.appveyor.com/project/mortend/fuse-gstreamer/branch/master)\n[![NPM package](https://img.shields.io/npm/v/fuse-gstreamer.svg?style=flat-square)](https://www.npmjs.com/package/fuse-gstreamer)\n[![Slack](https://img.shields.io/badge/chat-on%20slack-blue.svg?style=flat-square)](https://slackcommunity.fusetools.com/)\n[![License: MIT](https://img.shields.io/github/license/mortend/fuse-gstreamer.svg?style=flat-square)](LICENSE)\n![Target platforms](https://img.shields.io/badge/os-Android%20%7C%20iOS%20%7C%20Linux%20%7C%20macOS%20%7C%20Windows-7F5AB6?style=flat-square)\n\n[GStreamer] package for [Fuse Open].\n\n\u003e GStreamer supports a wide variety of media-handling components, including simple audio playback, audio and video playback, recording, streaming and editing. The pipeline design serves as a base to create many types of multimedia applications such as video editors, transcoders, streaming media broadcasters and media players.\n\n[GStreamer]: https://gstreamer.freedesktop.org/\n[Fuse Open]: https://fuseopen.com/\n\n## Install\n\n```shell\n$ npm install fuse-gstreamer\n```\n\nThis will install the `GStreamer` library for [Fuse SDK](https://www.npmjs.com/package/fuse-sdk).\n\n### Requirements\n\nGStreamer development and runtime files for desired platforms must be installed on your system to use this package. More information can be found on [this page](https://gstreamer.freedesktop.org/download/).\n\n\u003e On Android, dependencies are downloaded automatically when building. You don't need to install anything manually.\n\n\u003e On Windows, make sure to install the MinGW 64-bit edition, and verify that `GSTREAMER_1_0_ROOT_X86_64` is set in your environment (to for example `C:\\gstreamer\\1.0\\x86_64\\`).\n\n\u003e Tested using GStreamer **v1.16.0** (although any recent version should work fine).\n\n## Usage\n\n```xml\n\u003cApp xmlns:gst=\"GStreamer.Controls\"\u003e\n    \u003cgst:Player Uri=\"rtsp://b1.dnsdojo.com:1935/live/sys3.stream\" /\u003e\n\u003c/App\u003e\n```\n\nThis instantiates a GStreamer control playing a live video stream over RTSP. Many common transport protocols, container formats and media codecs are supported out-of-the-box. If you want to play local files, provide a `file:///` URI instead.\n\n\u003e To use this control in your project, you must add `\"GStreamer\"` to `\"Packages\"` in your `.unoproj` file.\n\n### Example app\n\n![Screenshot](example.png)\n\n\u003e You can play around with the included [example app](https://github.com/mortend/fuse-gstreamer/tree/master/example).\n\nFirst, make sure dependencies are installed and our library is built.\n\n```shell\nnpm install\nnpm run build\n```\n\nThen, issue one of the following commands to run the app on your desired platform.\n\n```shell\nnpm run android\nnpm run ios\nnpm run native\n```\n\n### Custom pipelines\n\nEssentially, make sure to initialize GStreamer in Uno, then write GStreamer code to do what you want... ;-)\n\n```uno\nGStreamer.Init();\n```\n\n\u003e Check out the files under [`GStreamer/`](GStreamer/) to see how GStreamer is used from Uno, most notably [`UriPipeline.uno`](GStreamer/UriPipeline.uno).\n\n\u003e Check out [`Player.uno`](GStreamer.Controls/Player.uno) to see how this stuff is wrapped up into the UX control we're using in our example app.\n\n\u003e If you add some cool functionality, remember that pull requests are very welcome. :-)\n\n## Contributing\n\nPlease [report an issue](https://github.com/mortend/fuse-gstreamer/issues) if you encounter a problem, or [open a pull request](https://github.com/mortend/fuse-gstreamer/pulls) if you make a patch.\n\n## License\n\nMIT for code in this repository, but note that GStreamer is LGPL and that some plugins may require additional licenses.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuse-modules%2Ffuse-gstreamer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffuse-modules%2Ffuse-gstreamer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuse-modules%2Ffuse-gstreamer/lists"}