{"id":42281973,"url":"https://github.com/nnstreamer/nnstreamer-edge","last_synced_at":"2026-01-27T08:22:08.453Z","repository":{"id":40688918,"uuid":"218922948","full_name":"nnstreamer/nnstreamer-edge","owner":"nnstreamer","description":"Remote source nodes for NNStreamer pipelines without GStreamer dependencies","archived":false,"fork":false,"pushed_at":"2025-04-01T05:31:21.000Z","size":1078,"stargazers_count":17,"open_issues_count":0,"forks_count":17,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-04-01T06:28:05.436Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nnstreamer.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-01T06:01:54.000Z","updated_at":"2025-04-01T05:31:25.000Z","dependencies_parsed_at":"2023-02-10T13:15:18.066Z","dependency_job_id":"3d2b8feb-79ad-4a63-b619-1afff6ae00b6","html_url":"https://github.com/nnstreamer/nnstreamer-edge","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/nnstreamer/nnstreamer-edge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nnstreamer%2Fnnstreamer-edge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nnstreamer%2Fnnstreamer-edge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nnstreamer%2Fnnstreamer-edge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nnstreamer%2Fnnstreamer-edge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nnstreamer","download_url":"https://codeload.github.com/nnstreamer/nnstreamer-edge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nnstreamer%2Fnnstreamer-edge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28809461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T07:41:26.337Z","status":"ssl_error","status_checked_at":"2026-01-27T07:41:08.776Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-27T08:22:07.902Z","updated_at":"2026-01-27T08:22:08.443Z","avatar_url":"https://github.com/nnstreamer.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Code Coverage](https://nnstreamer.github.io/testresult/nnstreamer-edge/coverage_badge.svg)](https://nnstreamer.github.io/testresult/nnstreamer-edge/index.html)\n\n# nnstreamer-edge\nRemote source nodes for NNStreamer pipelines without GStreamer dependencies\n\nDevelopers may provide stream inputs to NNStreamer pipelines from remote nodes with nnstreamer-edge.\nNNStreamer-edge is designed not to depend on GStreamer and targets to be adopted by general RTOS as well.\n\nIf your system can afford running nnstreamer (gstreamer), don't use nnstreamer-edge. Use nnstreamer and gstreamer.\n\n## Requirements\n- This should not depend on glib, gstreamer, or nnstreamer\n- This should not depend on other heavy-weighted libraries.\n- This should be compatible not only with Linux, but also with RTOS and other OS; thus, this should try to stick with C basic libraries and POSIX libraries.\n    - However, it may leave empty spaces that can be filled with \"wrapper/plugin\" for the portability. E.g., I may get too lazy to write communication layers; then, I'll leave it to the users to write down their own communication plugins.\n    - This should not rely on Tizen, either. However, Tizen-RT might be considered as the primary target.\n- Communication Layers includes:\n    - Primary Targets: TCP, User Plugins.\n    - Secondary Targets: Flatbuffers\n\n# Quick start guide for NNStreamer-edge (Ubuntu 20.04 LTS or 22.04 LTS)\n - Note: This simple guide explains how to use NNStreamer-edge on the Ubuntu, but NNStreamer-edge is also available on Tizen, Android and TizenRT.\n## Install via PPA\n### Download nnstreamer-edge\n```\n$ sudo add-apt-repository ppa:nnstreamer/ppa\n$ sudo apt-get install nnstreamer-edge\n# Download nnstreamer for sample application\n(optional) $ sudo apt-get install nnstreamer\n```\n### Run nnstreamer and nnstreamer-edge sample application\n - See pub/sub example: [Link](https://nnstreamer.github.io/tutorial3_pubsub_mqtt.html)\n - See query example: [Link](https://nnstreamer.github.io/tutorial4_query.html)\n\n## How to build (Ubuntu 20.04 LTS or 22.04 LTS)\n\n### Download prerequisite\n```\n$ sudo apt-get install cmake systemctl build-essential pkg-config mosquitto-dev libmosquitto-dev libgtest-dev libgmock-dev\n# Run MQTT broker\n$ sudo systemctl start mosquitto\n```\n\n### Build and Run test\n```\n# cd $NNST_EDGE_ROOT\n$ cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DENABLE_TEST=ON -DMQTT_SUPPORT=ON\n$ make -C build install\n\n# Run test\n$ cd /usr/bin\n$ ./unittest_nnstreamer-edge\n$ ./unittest_nnstreamer-edge-mqtt\n```\n\n## License\n- Apache 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnnstreamer%2Fnnstreamer-edge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnnstreamer%2Fnnstreamer-edge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnnstreamer%2Fnnstreamer-edge/lists"}