Age | Commit message (Collapse) | Author |
|
Redoing with tabulated-list makes yeetube-buffer obsolete
|
|
|
|
There is no need for more specific error messages (via pcase).
|
|
Compat allows to use defvar-keymap and still support older versions of
emacs.
|
|
|
|
|
|
|
|
|
|
Replay history entry
|
|
|
|
Report back value in quotes
|
|
- Keep track of played urls with video-titles by pushing them to
yeetube-history.
|
|
Variable to track recently played content
|
|
|
|
|
|
- Function that fixes scraped titles
- Use in yeetube-get-content to push correct title values to
yeetube-content
|
|
Add variable to track unicode character replacements
|
|
|
|
Rewrite yeetube-get-content to push content with keywords, retriving
values easier
|
|
Rewrite yeetube-get-url to use (yeetube-get :videoid), as well as
using yeetube-url variable instead of hardcoding youtube value
|
|
yeetube-get function accepts a keyword argument. Retrieves information
for keyword from yeetube-content.
|
|
Avoid hardcoding youtube.com, user can change this to an invidious
instance if they desire so
|
|
This function is not specific to just playing urls. User may make
custom functions to play local files with it, thus the change of name.
|
|
- Bug fixes with yeetube-buffer
- Fix autoload issues
- Set result-limit to 20
- Add ffmpeg dowmload functionality skeleton
- Add browse-video url, using invidious
|
|
|
|
|
|
|
|
Setting up feature to use yeetube-download with ffmpeg
|
|
Function to browse video URL at point, using an invidious instance.
|
|
List with popular invidious instances, which is going to be used with
yeetube-browse-url function.
|
|
- Add function to download URL using ffmpeg
- Make commands that are used as shell-processes hidden ("--")
|
|
|
|
Rewrite keymap to use make-sparse-keymap & require version 27.2.
defvar-keymap which was previously used requires emacs version 29.1
This change was suggested by emacs-devel mailing list, to make this
package available to users that have not updated to the latest emacs version.
|
|
|
|
|
|
This function is used as the default value of yeetube-player.
Renaming it to yeetube-mpv-play-url will hopefully reduce confusion
by making the name more specific.
|
|
No need to have an interactive funciton.
|
|
|
|
- Add error handling e.g if mpv or yt-dlp is missing
- Fix shell argument issues
- Rewrite yeetube-download functions
- Update doc strings
- Fix faces issues
|
|
yeetube-download-ytdlp is not meant to be used interactively.
|
|
|
|
Rewrite yeetube-download-ytdlp to use shell-quote-argument. Avoiding
bugs from obscure shells.
Pointed out by progofolio https://github.com/melpa/melpa/pull/8625
|
|
Add yeetube-download-ytdlp
- Checks if yt-dlp is installed
- Runs shell command with yt-dlp with url, name & audio format
Rewrite yeetube-download functions to use yeetube-download-yt-dlp
Rewrite yeetube-download-videos to start downloading content
immediately after each loop and not wait for the user to quit the loop
to start yt-dlp process.
|
|
|
|
Since we are using :type this is not needed.
Pointed it out by Protesilaos Stavrou(Prot)
|
|
This package uses defvar-keymap, which requires/is available at emacs
29.1 version.
defvar-keymap is not a must have, we could use the old way to define a
keymap but since this a more elegant way, and emacs-29.1 is the
default release version that's available on all distros I don't think
it'd be an issue.
|
|
This command has been moved to yeetube-buffer
|
|
Removing
- yeetube-results-prefix
- yeetube-display-info-keys
- yeetube-display-view-count
these variables where used previously when the results would have been
displayed in an org-mode buffer.
|
|
|
|
- Fix issues with yeetube-mode & yeetube-faces
|