{"id":25632927,"url":"https://github.com/migueltc13/noflix","last_synced_at":"2025-04-14T18:09:39.095Z","repository":{"id":148709342,"uuid":"607995781","full_name":"migueltc13/noflix","owner":"migueltc13","description":"Stream or download movies from the command line.","archived":false,"fork":false,"pushed_at":"2023-04-05T01:20:37.000Z","size":23,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-14T18:09:33.484Z","etag":null,"topics":["github","learn"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/migueltc13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"migueltc13","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2023-03-01T05:06:39.000Z","updated_at":"2024-05-17T06:42:04.000Z","dependencies_parsed_at":"2023-05-28T17:30:23.273Z","dependency_job_id":null,"html_url":"https://github.com/migueltc13/noflix","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/migueltc13%2Fnoflix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/migueltc13%2Fnoflix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/migueltc13%2Fnoflix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/migueltc13%2Fnoflix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/migueltc13","download_url":"https://codeload.github.com/migueltc13/noflix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248933340,"owners_count":21185460,"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":["github","learn"],"created_at":"2025-02-22T21:19:17.965Z","updated_at":"2025-04-14T18:09:39.086Z","avatar_url":"https://github.com/migueltc13.png","language":"Shell","funding_links":["https://github.com/sponsors/migueltc13"],"categories":[],"sub_categories":[],"readme":"# Noflix\n\nA simple bash script to stream movies from terminal using peerflix and VLC player.\n\n## Features\n\n- Search for movies using the title on command line\n- Linux and macOS compatible (currently working on Windows version)\n- Option of downloading the movie instead of streaming\n\n## Cons\n\n- Websites that provide magnet links are not always reliable, so you may not find the movie you want to stream.\n- Some torrents are not available for streaming due to the lack of seeders.\n- Requires a reliable internet connection.\n- Torrents may expose your IP address to the world.\n\n## Requirements\n\n- peerflix\n- VLC video player (optional[*](#video-player))\n- bash (\u003e=4.0.0)\n\n## Installation\n\n```bash\ngit clone https://github.com/noflix/noflix \u0026\u0026 cd noflix\nchmod +x install.sh noflix\n./install.sh\n```\n\n```bash\nln -s noflix /usr/local/bin/noflix # optional (to use noflix anywhere in terminal)\n```\n\nThe install script will install npm, curl, peerflix and VLC player, works both on Linux (apt) and macOS (brew).\n\n## Usage:\n\n```\n./noflix title of movie \n```\n\n## Example:\n\n```\nnoflix \"The Matrix 1999\"\n```\n\n*Hints:*\n\n- Add the launch year of the movie to increase search precision\n- Add noflix to /usr/local/bin dir to use it anywhere in terminal\n\n### Peerflix\n\n\u003c!-- Collapsible section - TODO add this to install.sh --\u003e\n\u003cdetails\u003e\n\u003csummary\u003eAlternative peerflix installation with snap\u003c/summary\u003e\n\n```\nsudo apt install snapd\n```\n\n```\nsudo snap install peerflix --edge\n```\n\n\u003c/details\u003e\n\nYou can check peerflix repository [here](). A special thanks to all contributors.\n\n### Video player\n\n(\\*) You can edit the last line in noflix to open with other video player of your choice.\n\n```bash\npeerflix ${magnet} --vlc -- -f # -- passes the argument -f to vlc\n```\n\n```\n-v, --vlc          autoplay in vlc*                             \n-s, --airplay      autoplay via AirPlay                         \n-m, --mplayer      autoplay in mplayer*                         \n-g, --smplayer     autoplay in smplayer*                        \n--mpchc            autoplay in MPC-HC player*                   \n--potplayer        autoplay in Potplayer*                       \n-k, --mpv          autoplay in mpv*                             \n-o, --omx          autoplay in omx**                            \n-w, --webplay      autoplay in webplay                          \n-j, --jack         autoplay in omx** using the audio jack\n```\n\n### Download\n\nYou can download the movie instead of streaming it by removing the player flag.\n\nChange this line in the end of the noflix script:\n\n```bash\npeerflix ${magnet} --vlc -- -f # -- passes the argument -f to vlc\n```\n\nTo:\n\n```bash\npeerflix ${magnet}\n```\n\nRun the script again and the movie will be downloaded to the current directory.\n\n### TODO\n\n- [ ] Add support for Windows\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmigueltc13%2Fnoflix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmigueltc13%2Fnoflix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmigueltc13%2Fnoflix/lists"}