tube-get VS mpv

Compare tube-get vs mpv and see what are their differences.

Scout Monitoring - Free Django app performance insights with Scout Monitoring
Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.
www.scoutapm.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
tube-get mpv
1 831
7 26,384
- 1.6%
10.0 9.9
over 1 year ago 4 days ago
Python C
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tube-get

Posts with mentions or reviews of tube-get. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-09-10.
  • YouTube-dl has a JavaScript interpreter written in 870 lines of Python
    19 projects | news.ycombinator.com | 10 Sep 2022
    To understand why, I have a far simpler tool that focuses on a subset of sites (adult content video aggregators)

    https://github.com/kristopolous/tube-get

    It too deals with this problem but does so in a way that'd be easy to maliciously sabotage

    Look right about here https://github.com/kristopolous/tube-get/blob/master/tube-ge...

    Add to why this exists, this was originally written between about 2010-2015 or so so it technically predates the yt-* ecosystem.

    The tool still works fine and it's not a strict subset of yt-dlp or YouTube-dl because being a different approach, although it's overall site coverage is smaller, I've had it be a "second try" system when yt-* fails and it comes up with success maybe about half the time

mpv

Posts with mentions or reviews of mpv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-25.
  • Safe Terminal Escape Codes
    3 projects | news.ycombinator.com | 25 May 2024
    Based on my (limited) understanding of Kitty's image protocol[0] (a.k.a the "Terminal graphics protocol") video support could be potentially implemented via multiple approaches, including at least:

    (1) Draw image repeatedly using the "don't move cursor" cursor movement policy[1a][1b].

    (2) Draw image replacing an existing image with the same id.

    (3) Use animation configured to use "loading mode"[2] ("in this mode when reaching the last frame, instead of looping, the terminal will wait for the arrival of more frames").

    An actual terminal graphics/image protocol enables some IMO[3] pretty cool possibilities:

    * A while back I implemented a proof-of-concept that displayed a simple interactive egui (a Rust immediate mode GUI project) GUI within WezTerm via the protocol.

    * Later I discovered someone had gone as far as making a port[5] of the OpenGL gears demo to kitty terminal graphics protocol.

    * And there's even a "full graphical web browser for Kitty terminal with mouse and keyboard support"[6][7].

    ---- footnotes ----

    (Content advisory for links: Kitty terminal graphics protocol spec includes a sample image whose subject has requested that the image no longer be used for such purposes.)

    [0] https://sw.kovidgoyal.net/kitty/graphics-protocol/#terminal-...

    [1a] https://sw.kovidgoyal.net/kitty/graphics-protocol/#controlli...

    [1b] This approach appears to be the method used by the mpv implementation: https://github.com/mpv-player/mpv/commit/874e28f4a41a916bb56...

    [2] https://sw.kovidgoyal.net/kitty/graphics-protocol/#controlli...

    [3] I'm aware that not everyone will think static or dynamic image display is something a terminal "should do" but to me it seems better to have actual image support in terminals rather than use (already currently used) existing "hacks" that provide a poor facsimile of support[4].

    [4] Then again, I'm also of the opinion[4a] that perhaps terminals should support actual graphical UIs rather than the poor facsimile of them delivered by TUIs. *cough* :D

    [4a] Motivated by the thought that at the current point in time perhaps the "essence" of a "terminal" is its linear "chronological" presentation of input/interaction/output history rather than its use of "text". (See also: "lab notebooks" & some tiling window manager features.)

    [5] https://github.com/michaeljclark/glkitty

    [6] https://github.com/chase/awrit

    [7] Which I imagine DEC is turning in its grave about. :)

  • MPV: Vulkan Video Decoding: Usage Guide and FAQ
    1 project | news.ycombinator.com | 20 Dec 2023
  • Firefox slow to load YouTube? Just another front in Google's war on ad blockers
    4 projects | news.ycombinator.com | 12 Dec 2023
    https://mpv.io/ has yt-dlp support, if yt-dlp is installed you just need to throw the URL at it and it plays the video (without download).
  • Can't save frame as JPG
    1 project | /r/mpv | 11 Dec 2023
    See https://github.com/mpv-player/mpv/issues/9053
  • Video stops on furst frame, audio continues to play,seek works
    1 project | /r/mpv | 11 Dec 2023
    I apologise for not following procedure. I am in the middle of building mpv 0.37 from source. Irrespective of the outcome I will document what I had to do in addition to the instructions on mpv.io and if the problem perststs, where it happens and where not with kernel version, mpv version taken from the screen, and the terminal output.
  • PC Gopro playback help needed
    1 project | /r/gopro | 6 Dec 2023
  • S23 8k video freezes when played on VLC computer
    1 project | /r/GalaxyS23 | 4 Dec 2023
    Use MPV. Partticularily shinchiro's builds. Extract the folder where you want its installation directory to be, if you decide to install it. Otherwise, just drag and drop files on top of its window or executable.
  • Ripgrep is faster than {grep, ag, Git grep, ucg, pt, sift}
    14 projects | news.ycombinator.com | 30 Nov 2023
    Author of ripgrep here.

    Like automatic encoding detection and transparently searching UTF-16?

    Or simple ways for composing character classes, e.g., `[\pL&&\p{Greek}]` for all codepoints in the Greek script that are letters. Another favorite of mine is `\P{ascii}`, which will search for any codepoint that isn't in the ASCII subset.

    Or more sophisticated filtering features that let you automatically respect things like gitignore rules.

    Those are all things that ripgrep does that grep does not. So I do not favor this explanation personally.

    ripgrep has just about all of the functionality that GNU grep does. I would say the two biggest missing pieces at this point are:

    * POSIX locale support. (But this might be a feature[1].)

    * Support for "basic" regexes or some equivalent that flips the escaping rules around. i.e., You need to write `\+` to match 1 or more things, where as `+` will just match `+ literally.

    Otherwise, ripgrep has unfortunately grown just about as many flags as GNU grep.

    [1]: https://github.com/mpv-player/mpv/commit/1e70e82baa9193f6f02...

  • PCSX2 Disables Wayland Support
    7 projects | news.ycombinator.com | 26 Nov 2023
    - https://github.com/mpv-player/mpv/issues/8692
  • C Locales
    1 project | news.ycombinator.com | 4 Nov 2023

What are some alternatives?

When comparing tube-get and mpv you can also consider the following projects:

PyMiniRacer - PyMiniRacer is a V8 bridge in Python.

GStreamer - GStreamer open-source multimedia framework

mini_racer - Minimal embedded v8

yt-dlp - A feature-rich command-line audio/video downloader

pyduktape - Embed the Duktape JS interpreter in Python

celluloid - A simple GTK+ frontend for mpv

dukpy - Simple JavaScript interpreter for Python

FFmpeg - Mirror of https://git.ffmpeg.org/ffmpeg.git

glsl-shaders - This repo is for glsl shaders converted by hand from libretro's common-shaders repo, since some don't play nicely with the cg2glsl script.

VideoLAN Client (VLC) - VLC media player - All pull requests are ignored, please follow https://wiki.videolan.org/Sending_Patches_VLC/

mpv.net - 🎞 mpv.net is a modern media player for Windows that works just like mpv. [Moved to: https://github.com/mpvnet-player/mpv.net]

Anime4K - A High-Quality Real Time Upscaler for Anime Video

Scout Monitoring - Free Django app performance insights with Scout Monitoring
Get Scout setup in minutes, and let us sweat the small stuff. A couple lines in settings.py is all you need to start monitoring your apps. Sign up for our free tier today.
www.scoutapm.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured