{"id":20466738,"url":"https://github.com/tastyep/pi-opencast","last_synced_at":"2025-04-13T09:10:44.983Z","repository":{"id":37105240,"uuid":"152967329","full_name":"Tastyep/Pi-OpenCast","owner":"Tastyep","description":":tv: Transform your Raspberry Pi into an awesome streaming device.","archived":false,"fork":false,"pushed_at":"2023-09-16T11:56:55.000Z","size":42687,"stargazers_count":40,"open_issues_count":21,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-09-16T21:37:37.608Z","etag":null,"topics":["cast","chromecast","media-player","media-server","playlist","raspberry-pi","raspberrypi","youtube"],"latest_commit_sha":null,"homepage":"","language":"Python","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/Tastyep.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.md","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":"2018-10-14T11:36:22.000Z","updated_at":"2023-09-08T17:46:08.000Z","dependencies_parsed_at":"2024-11-15T13:27:14.389Z","dependency_job_id":"fdc33d95-1576-4e70-ae3e-0dfbc7b2ce76","html_url":"https://github.com/Tastyep/Pi-OpenCast","commit_stats":null,"previous_names":[],"tags_count":14,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tastyep%2FPi-OpenCast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tastyep%2FPi-OpenCast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tastyep%2FPi-OpenCast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tastyep%2FPi-OpenCast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tastyep","download_url":"https://codeload.github.com/Tastyep/Pi-OpenCast/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248688565,"owners_count":21145766,"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":["cast","chromecast","media-player","media-server","playlist","raspberry-pi","raspberrypi","youtube"],"created_at":"2024-11-15T13:25:19.996Z","updated_at":"2025-04-13T09:10:44.960Z","avatar_url":"https://github.com/Tastyep.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://raw.githubusercontent.com/Tastyep/Pi-OpenCast/master/assets/images/banner.webp\n   :scale: 80 %\n   :align: center\n   :alt: Banner\n\n|\n\n========\nOpenCast\n========\n\n.. image:: https://github.com/Tastyep/Pi-OpenCast/workflows/Test/badge.svg\n   :target: https://github.com/Tastyep/Pi-OpenCast/actions?query=workflow%3ATest\n   :alt: Test status for master branch\n\n.. image:: https://codecov.io/gh/Tastyep/Pi-OpenCast/branch/develop/graph/badge.svg\n   :target: https://codecov.io/gh/Tastyep/Pi-OpenCast\n   :alt: codecov.io status for master branch\n\n.. image:: https://github.com/Tastyep/Pi-OpenCast/workflows/Sanitize/badge.svg\n   :target: https://github.com/Tastyep/Pi-OpenCast/actions?query=workflow%3ASanitize\n   :alt: Sanitizing status for master branch\n\n.. image:: https://github.com/Tastyep/Pi-OpenCast/workflows/Documentation/badge.svg\n   :target: https://tastyep.github.io/Pi-OpenCast/\n   :alt: OpenCast generated documentation\n\nOpenCast is a home theater application whose goal is to transform a computer as small as a Raspberry Pi into\nan awesome streaming device.\n\nKey Features\n============\n\n - Lightweight fast media server, able to run on raspberry-pi.\n - Tons of `supported sites \u003chttps://ytdl-org.github.io/youtube-dl/supportedsites.html\u003e`_.\n - Stream support (Youtube, Twitch ...)\n - Playlist support\n - Local library.\n - VLC under the hood.\n\nHow To\n======\nInstall\n-------\n\n.. code-block:: bash\n\n   $ git clone https://github.com/Tastyep/Pi-OpenCast.git\n   $ cd Pi-OpenCast \u0026\u0026 ./setup.sh\n\n⚠️ Because the web application has grown in size over time, it is possible that building on a raspberry-pi with \u003c= 1giga of RAM will fail as it will run out of memory. In that case, you will have to build it manually on your computer by running the following command:\n\n.. code-block:: bash\n\n   $ ./OpenCast.sh build webapp\n\nThen transfer the generated ``./webapp/build`` directory into the ``webapp`` directory on your raspberry-pi (filezilla is your friend).\n\n\nUse\n-------\n\nAfter successfully installing OpenCast, you should note the IP address of your raspberry-pi:\n\n\n.. code-block:: bash\n\n   $ hostname -I\n\nYou can then access the webpage from any device on the same local network at ``\u003cip-addr\u003e:8081``\n\nMonitor\n-------\n\nOpenCast is managed as a systemd service and loaded automatically at startup time.\nTo interact with the service, two options are available:\n\n- Using systemctl (**recommended**)\n\n.. code-block:: bash\n\n   $ systemctl --user [start|stop|restart|status] opencast\n\n- Using the shell entry-point (**advanced**):\n\n.. code-block:: bash\n\n   $ ./OpenCast.sh service [start|stop|restart|status]\n\nLogs can be accessed running:\n\n.. code-block:: bash\n\n   $ journalctl --user -u opencast\n   $ ./OpenCast.sh service back log\n\nConfigure\n-------\n\nThe backend and the web application can be configured through their configuration file:\n\n- Backend: ``config.yml``\n- Webapp: ``webapp/.env``\n\nSource Code\n===========\n\nThe project is hosted on `Github \u003chttps://github.com/Tastyep/Pi-OpenCast\u003e`_.\n\nPlease feel free to file an issue on the `bug tracker \u003chttps://github.com/Tastyep/Pi-OpenCast/issues\u003e`_\nif you have found a bug or have suggestions to improve OpenCast.\n\nLicense\n-------\n\nOpenCast is distributed under the `MIT License \u003chttps://raw.githubusercontent.com/Tastyep/Pi-OpenCast/master/LICENSE\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftastyep%2Fpi-opencast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftastyep%2Fpi-opencast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftastyep%2Fpi-opencast/lists"}