Sidmaz666 / streamo

A simple Bash Script to Stream/Download TV-Series and Movies.
GNU General Public License v3.0
9 stars 0 forks source link
bashscript downlaoder movies netflix scraper streaming tv-series

streamo

A Simple Bash Script to Stream/Download TV-Series and Movies. 🥷🏽

Preview

preview

Dependencies

  1. curl
  2. mpv
  3. jq
  4. fzf

Installation

Basic

    sudo cp streamo /usr/bin/

Without Cloning

    sudo curl -s "https://raw.githubusercontent.com/Sidmaz666/streamo/main/streamo" -O > /usr/bin/streamo

Usage

    streamo ["search-query"]

    Example:
    streamo "mr robot" , streamo mr robot

Misc

  1. The script scrapes from Fmovies.

  2. Download Directory : $HOME/Video/Streamo

  3. Use Rofi instead, change the MENU Variable.

    MENU="rofi -show -dmenu -theme gruvbox-dark -i"
  4. Example Rofi Wrapper Script (Useful when using streamo with a keybinding).

    #!/bin/bash
    QUERY="$(rofi -show -dmenu -p "Search " -theme dmenu)"
    [[ -z "$QUERY" ]] && exit
    /usr/bin/streamo $QUERY

Note

There are no flags associated with the script even the -h or --help flags are not available.