{"id":16564015,"url":"https://github.com/brndnmtthws/doge-streamer","last_synced_at":"2026-04-13T17:33:29.713Z","repository":{"id":150990556,"uuid":"168786017","full_name":"brndnmtthws/doge-streamer","owner":"brndnmtthws","description":"Stream Doge","archived":false,"fork":false,"pushed_at":"2019-03-08T14:54:31.000Z","size":7502,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-03T16:50:31.350Z","etag":null,"topics":["ffmpeg","live-streaming","opencv","stream","twitch","x264","youtube-stream"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brndnmtthws.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-02-02T02:32:41.000Z","updated_at":"2024-04-24T12:52:35.000Z","dependencies_parsed_at":"2023-04-19T23:28:38.249Z","dependency_job_id":null,"html_url":"https://github.com/brndnmtthws/doge-streamer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brndnmtthws/doge-streamer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brndnmtthws%2Fdoge-streamer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brndnmtthws%2Fdoge-streamer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brndnmtthws%2Fdoge-streamer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brndnmtthws%2Fdoge-streamer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brndnmtthws","download_url":"https://codeload.github.com/brndnmtthws/doge-streamer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brndnmtthws%2Fdoge-streamer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31762580,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: 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":["ffmpeg","live-streaming","opencv","stream","twitch","x264","youtube-stream"],"created_at":"2024-10-11T20:43:00.383Z","updated_at":"2026-04-13T17:33:29.686Z","avatar_url":"https://github.com/brndnmtthws.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/brndnmtthws/doge-streamer.svg?branch=master)](https://travis-ci.org/brndnmtthws/doge-streamer)\n\n# Doge Streamer 🦊\n\n`doge-streamer` is a tool for Doge live streaming, which you can find at:\n\n- [YouTube](https://www.youtube.com/channel/UCg4HoZlSlRGvyPtcInkIQvQ), or\n- [Twitch](https://www.twitch.tv/live_doge)\n\nThis tool is based on OpenCV and FFmpeg.\n\nOpenCV is used for capturing images from cameras, processing video, performing Doge detection, image processing, and overlaying text/images.\n\nFFmpeg is used to encode the stream with x264, AAC, and flv. The stream is sent out to [castr.io](castr.io) using RTMP.\n\nFeatures:\n\n- background subtraction based motion detection (using `BackgroundSubtractorMOG2`)\n- automatically switches to active camera\n- displays an image when cameras are inactive\n- stream can be controlled remotely using [doge-stream-helper](https://github.com/brndnmtthws/doge-stream-helper)\n- sound from one audio source\n\nTODO:\n\n- better audio input handling\n- add delightful background music\n- train a TensorFlow model to detect Doge? perhaps use a combination of motion detection and an RNN model?\n\n## Quickstart\n\n### Install dependencies\n\nOn macOS:\n\n```ShellSession\n$ brew install cmake ffmpeg opencv\n...\n```\n\nOn Debian based distros:\n\n```ShellSession:\n$ apt-get install -yqq \\\n    cmake             \\\n    build-essential   \\\n    libavcodec-dev    \\\n    libavdevice-dev   \\\n    libopencv-dev     \\\n    libavformat-dev   \\\n    libavutil-dev     \\\n    libswresample-dev \\\n    libswscale-dev    \\\n    libopencv-dev\n...\n```\n\n### Compile\n\nTo compile source code just run:\n\n```ShellSession\n$ mkdir build\n$ cd build\n$ cmake .. -DCMAKE_BUILD_TYPE=Debug\n$ make -j4\n```\n\n### Run RTMP Server\n\n```ShellSession\n$ docker run -p 1935:1935 tiangolo/nginx-rtmp\n...\n```\n\n### Run `doge-streamer`\n\n```ShellSession\n$ ./doge-streamer\n```\n\n### Watch \u0026 Enjoy\n\nUse VLC or `ffplay` to connect to live video stream:\n\n```ShellSession\n$ ffplay -sync ext rtmp://localhost/live/stream\n...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrndnmtthws%2Fdoge-streamer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrndnmtthws%2Fdoge-streamer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrndnmtthws%2Fdoge-streamer/lists"}