Watch Movies and Series in Terminal
Ever wanted to watch a movie without leaving the comfort of your command line? Meet Lobster, the surprising tool that makes it possible. Learn how to turn your terminal into a media player in our latest guide.
POSTS
Ever wanted to watch a movie without leaving the comfort of your command line? Meet Lobster, the surprising tool that makes it possible. Learn how to turn your terminal into a media player in our latest guide.
Author:
Llewellyn Paintsil
Date:
Read:
5 mins
Scripts
Imagine this: you're deep in a coding session, a massive script is running, and you've suddenly got a few minutes to spare. Your first instinct might be to Alt+Tab away to a browser, breaking your focus. But what if you didn't have to? What if you could just open a new tab in your terminal, run a simple command, and instantly dive into your favorite movies or series?
That's the magic of Lobster, a script that transforms your command line into an entertainment hub. In this guide, I'll show you exactly how to install and run it on almost any platform you can think of—from Windows and Linux to Android, Chromebooks, and even a Raspberry Pi.
Lobster is an open-source, command-line script that lets you search for and stream movies and series directly in your terminal. Created by the developer justchokingaround on GitHub, it uses the powerful media player mpv for playback, offering a lightweight, browser-free, and distraction-free viewing experience. No ads, no pop-ups, just pure command-line entertainment.
To be honest, the Windows setup is the most involved, but if you follow these steps carefully, you'll be up and running in no time.
Git Bash: You'll get this by installing Git.
Windows Terminal: Recommended for the best experience.
Scoop: A command-line installer for Windows.
mpv & fzf: Essential components for playback and searching.
Install Git: Go to git-scm.com/downloads, download the installer, and run it. This will install both Git and Git Bash.
Install Windows Terminal: Open the Microsoft Store, search for "Windows Terminal," and install the app.
Install Scoop: Open PowerShell (not Git Bash yet) and run the following two commands one after the other to install the Scoop package manager.
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex
scoop bucket add extras
scoop install mpv fzf
You can now close PowerShell and open Windows Terminal as an admin.

curl to download the script.curl -O "https://raw.githubusercontent.com/justchokingaround/lobster/main/lobster.sh"
chmod +x lobster.sh
lobster command from anywhere, move the script to a directory in your system's PATH.cp lobster.sh /usr/bin/lobster
lobster in your Git Bash terminal to start watching.lobster

I initially thought this wouldn't work, but after enabling the Linux environment on ChromeOS, it worked surprisingly well, despite a few bumps along the way.
Enable the Linux Environment: Go to Settings > Advanced > Developers. Turn on the "Linux development environment." This may take a few minutes to install.
Install Prerequisites: Once the Linux terminal is ready, you need to install mpv and fzf. I ran into errors until I installed both.
sudo apt update
sudo apt install mpv fzf -y
sudo curl -sL https://github.com/justchokingaround/lobster/raw/main/lobster.sh -o /usr/local/bin/lobster && sudo chmod +x /usr/local/bin/lobster
lobster in the terminal to launch the script. When I first attempted this, I encountered a bug that was reported on GitHub on the same day. Thankfully, the developer fixed it quickly. It now works perfectly.Getting this to work on Android is quite simple with the help of Termux.
Termux: Download the APK from F-Droid. The Play Store version is outdated.
mpv-android: Available on the Google Play Store.
pkg update && pkg upgrade -y
curl and fzf.pkg install curl fzf -y
pkg install termux-am
curl -sLO https://github.com/justchokingaround/lobster/raw/main/lobster.sh && chmod +x lobster.sh && mv lobster.sh /data/data/com.termux/files/usr/bin/lobster
lobster to run it. It will automatically use the mpv-android app for playback.For desktop Linux users, the process is as straightforward as it was on the Chromebook. These instructions are for Debian-based distributions, such as Ubuntu or Pop!_OS.
(Hey, Arch users! I know you'll figure it out. Drop your one-liner install command in the comments on the video!)
mpv and fzf.sudo apt update
sudo apt install mpv fzf -y
sudo curl -sL https://github.com/justchokingaround/lobster/raw/main/lobster.sh -o /usr/local/bin/lobster && sudo chmod +x /usr/local/bin/lobster
lobster and hit enter!Can a tiny Raspberry Pi handle this? Let's find out! I tested this on a Raspberry Pi 4 running Raspberry Pi OS, and the answer is a resounding yes. Since Raspberry Pi OS is based on Debian, the process is nearly identical to the Linux installation.
sudo apt update && sudo apt upgrade -y
sudo apt install mpv fzf -y
sudo curl -sL https://github.com/justchokingaround/lobster/raw/main/lobster.sh -o /usr/local/bin/lobster && sudo chmod +x /usr/local/bin/lobster
lobster and enjoy. It runs perfectly! The power of Linux compatibility is on full display here.The developer is actively working on the script. If you installed Lobster previously and are running into errors (like the bug I mentioned), you can easily update it to the latest version. Just run the script with the -u flag.
lobster -u
This simple command will fetch the newest version and fix any patched bugs.
There you have it! You're now equipped to turn your terminal into a lean, mean, movie-streaming machine. You can sit back, stay in your workflow, and enjoy your favorite shows without ever touching a browser.
In a future post, I'll explore other configurations you can use to improve your experience even more. Keep an eye out for that! Thanks for reading, and happy watching.
Tutorial
Did your PC crash mid recording? Don't delete that corrupted file. This guide explains exactly how to restore broken recordings and fix audio sync issues using free tools like Untrunc and FFmpeg.
Author
Llewellyn Paintsil
Duration
5 mins
Tutorial
Tired of reading manga on websites that drain your battery and spam you with ads? There’s a better way. Meet Komikku: the clean, ad-free, and open-source alternative that every manga fan needs. Here is exactly how to set it up and start reading in minutes.
Author
Llewellyn Paintsil
Duration
6 mins
Tutorial
Too lazy to reach for the mouse? Discover how to use your phone's gyroscope to control your computer from a distance in this quick, beginner-friendly guide.
Author
Llewellyn Paintsil
Duration
5 min