Myflix alternatives and similar software solutions
Based on the "Video Streaming" category.
Alternatively, view Myflix alternatives based on common mentions on social networks and blogs.
-
VideoLAN Client (VLC)
VLC media player - All pull requests are ignored, please use MRs on https://code.videolan.org/videolan/vlc -
Owncast
Take control over your live stream video by running it yourself. Streaming + chat out of the box. -
Zoneminder
ZoneMinder is a free, open source Closed-circuit television software application developed for Linux which supports IP, USB and Analog cameras. -
Restreamer
The Restreamer is a complete streaming server solution for self-hosting. It has a visually appealing user interface and no ongoing license costs. Upload your live stream to YouTube, Twitch, Facebook, Vimeo, or other streaming solutions like Wowza. Receive video data from OBS and publish it with the RTMP and SRT server. -
MediaCMS
MediaCMS is a modern, fully featured open source video and media CMS, written in Python/Django and React, featuring a REST API. -
Shinobi
:peace_symbol: :palestinian_territories: Shinobi CE - The Free Open Source CCTV platform written in Node.JS (Camera Recorder - Security Surveillance Software - Restreamer -
Rapidbay
Self-hosted torrent video streaming service compatible with Chromecast, AppleTV & Kodi deployable in the cloud -
Darwin Streaming Server
Darwin Streaming Server is Apple's open source version of the QuickTime Streaming Server technology allowing you to send streaming media across the Internet using the industry standard RTP and RTSP protocols. -
Hellowlol HTPC Manager fork
A fully responsive interface to manage all your favorite software on your Htpc. -
Radium
Synced stream and video playback with VOD capabilities utilizing HLS. Developed for movie nights but has many use cases. -
Oblecto
Oblecto is a media server, which streams media you already own, and is designed to be at the heart of your entertainment experience. It runs on your home server to index and analyze your media such as Movies and TV Shows and presents them in an interface tailored for your media consupmtion needs. -
Tube
📺 tube is a Youtube-like (without censorship and features you don't need!) Video Sharing App written in Go which also supports automatic transcoding to MP4 H.265 AAC, multiple collections and RSS feed. -
Open Streaming Platform
Self-Hosted alternative to Twitch and Youtube Live for live and on-demand video streaming -
uWave
üWave is a self-hosted collaborative listening platform. Users take turns playing media-songs, talks, gameplay videos, or anything else-from a variety of media sources like YouTube and SoundCloud. -
ReadyMedia
A simple media server software, with the aim of being fully compliant with DLNA/UPnP-AV clients.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Myflix or a related project?
README
PLEASE NOTE, THIS SOFTWARE HAS BEEN REPLACED!
For more information, see
Myflix
A Netflix clone!
Myflix tries to be a somewhat simple and lightweight "DIY Netflix", similar to Plex, streama or Emby, for your DIY NAS, especially aimed at the Raspberry Pi/Odroid/etc ecosystem. It's not meant or designed to be fancy (if you have the hardware and want a ton of functionality, go for other solutions :) ), but the bare minimum to be somewhat pretty, fast and usable. The scripts create json databases that store the files location and metadata, these databases are then used to create static web pages that can be served from any web server!
I still have some commenting to do, I swear I will do it when I have time...
If you want to password protect your myflix files, you might want to look at !
You like my work? Feel free to donate :)
Sreenshots:
TV shows page
TV show season/episode modal
TV show episode player
Movies page
Movies player
Shitty temporary tutorial:
You will need jq, imagemagick, ffmpeg and a ton of coffee to understand whatthef#ck I did.
Download all the files, look around in buildDBs.cgi and config.cfg, set the path of your media files folders and run buildDBs...
Pray to a deity of your choice!
Requirements:
jq, sponge, imagemagick, ffmpeg, xmllint and a TMDB api key. See the wiki for a tutorial and more detailed information on the scripts.
Features :
- uses BASH for everything... at least so far!
- Movie and TV show databases are saved in an user friendly database
- Lightweight and highly customisable, just open a script and edit it!
- Once you have built the database and the webpage, it's done. No streaming server or anything of the like...
- Since there is no real service, you could build the database and webpages on another machine, moving the webpage to the actual web server afterwards. ( keep in mind that the webserver must have access to the files etc...)
- Automatically converts srt's into vtt and makes them available in the video player
- Press f to fullscreen player, left to rewind 15 secs, right to skip forward 15 secs, space to play/pause
Issues :
- "Slow" file scanning, scanning 1200+ TV shows files while getting all kinds of metadata (so show id, posters for the show and the name of every episode...) took almost 20 minutes on an old odroid-c1... Skipping some metadata speeds up the process a lot ( episode name is the biggest culprit, as it adds a 2-3 seconds to every episode in the database). If I skip it, the time comes down to around 2-3 minutes. Note that this doesn't happen with movies as there is a lot less metadata to be fetched and my nas can perform this task in 30 seconds or so with 40+ movies.
- "Slow" html generation, the 1200+ tv show files end up creating a html page with 25700 lines of code...
Which generates in around 10 minutes...It now is x2 faster thanks to threading! ;) Database creation is the same though, since it's sequential. - html5 video player keeps buffering in the background if you play/pause a video. At the moment I have yet to implement a way to stop buffering
- not really an issue imho, but it's html5 reliant, so all video files HAVE to be h264 mp4's, no transcoding is going to happen. If you want transcoding, use something fancier like Emby
( transcoding might happen. We will see)It won't happen, it would require rtmp streaming, rtmp server etc... Getting too complicated, KISS! (keep It Simple, Stupid!) ;)
TO-DO:
A "fix database" script, that fixes the metadata of a specific file (say, for example, that the script obtained the wrong id or wrong cover for your movie/tv show, this file should just just receive the file path of the file to fix and the correct id for it, and then it will simple overwrite the correct metadata to the database, thus sparing you from searching in the database and manually having to edit/download stuff)DONEMulti language, multi subtitle supportDONE-
Currently working on parallelization of the html building process, it's almost working ;DDONE ~~