all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <incal@dataswamp.org>
To: help-gnu-emacs@gnu.org
Subject: Re: A way to watch (some) videos about Emacs with wget and mpv
Date: Tue, 27 Dec 2022 15:13:44 +0100	[thread overview]
Message-ID: <87o7rp0w9z.fsf@dataswamp.org> (raw)
In-Reply-To: 87ilhxyq0x.fsf@posteo.net

Philip Kaludercic wrote:

> All you need is "mpv https://some.host/path/to/video.file" or "mpv
> https://a.service/that/doesnt/host/video/files.directly", assuming
> you have youtube-dl installed.

Some say yt-dlp is better ...

#! /bin/zsh
#
# this file:
#   https://dataswamp.org/~incal/conf/.zsh/yt-dlp

dl-upgrade-3 () {
    yt-dlp -U
    yt-dlp --version
}

dl-upgrade-2 () {
    local gz=https://github.com/yt-dlp/yt-dlp/archive/master.tar.gz
    python3 -m pip install --force-reinstall $gz
    yt-dlp --version
}

dl-upgrade () {
    local url=https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp
    local bin=/usr/local/bin/yt-dlp
    sudo curl -L $url -o $bin
    sudo chmod a+rx $bin
    yt-dlp --version
}

-- 
underground experts united
https://dataswamp.org/~incal




  reply	other threads:[~2022-12-27 14:13 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-27 11:55 A way to watch (some) videos about Emacs with wget and mpv Eduardo Ochs
2022-12-27 12:00 ` Philip Kaludercic
2022-12-27 12:08   ` Eduardo Ochs
2022-12-27 12:13     ` Emanuel Berg
2022-12-28  1:56       ` Eduardo Ochs
2022-12-28  2:03         ` Emanuel Berg
2022-12-29 22:47           ` Eduardo Ochs
2022-12-31 20:49             ` Emanuel Berg
2022-12-27 12:44     ` Philip Kaludercic
2022-12-27 14:13       ` Emanuel Berg [this message]
2022-12-28  0:43       ` Eduardo Ochs
2022-12-28  1:03         ` Emanuel Berg
2022-12-28  5:46         ` Yuri Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87o7rp0w9z.fsf@dataswamp.org \
    --to=incal@dataswamp.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.