commit 746ad7c36fe0cb4f9806ef2f6db726b467a56e2d
parent 68eb18254a90dd3697fba0fd8af459ce8294f8c1
Author: Alex Balgavy <alex@balgavy.eu>
Date: Mon, 13 Jun 2022 13:18:29 +0200
Update submodules
Diffstat:
2 files changed, 17 insertions(+), 9 deletions(-)
diff --git a/.gitmodules b/.gitmodules
@@ -51,18 +51,18 @@
[submodule "tools/pipe-viewer"]
path = tools/pipe-viewer
url = https://github.com/trizen/pipe-viewer.git
-[submodule "tools/go-readability"]
- path = tools/go-readability
- url = https://github.com/go-shiori/go-readability
[submodule "shell/osx-zsh-completions"]
path = shell/osx-zsh-completions
url = https://github.com/nilsonholger/osx-zsh-completions
-[submodule "tools/translate-shell"]
- path = tools/translate-shell
- url = https://github.com/soimort/translate-shell
[submodule "tools/speedread"]
path = tools/speedread
url = https://github.com/pasky/speedread.git
[submodule "tools/radio"]
path = tools/radio
url = https://github.com/thezeroalpha/radio
+[submodule "tools/go-readability"]
+ path = tools/go-readability
+ url = https://github.com/go-shiori/go-readability
+[submodule "tools/translate-shell"]
+ path = tools/translate-shell
+ url = https://github.com/soimort/translate-shell
diff --git a/pipe-viewer/pipe-viewer.conf b/pipe-viewer/pipe-viewer.conf
@@ -1,11 +1,12 @@
#!/usr/bin/perl
-# CLI Pipe Viewer 0.1.3 - configuration file
+# CLI Pipe Viewer 0.2.2 - configuration file
our $CONFIG = {
api_host => "auto",
auto_captions => 0,
autoplay_mode => 0,
+ bypass_age_gate_with_proxy => 0,
cache_dir => "$ENV{HOME}/.cache/pipe-viewer",
colors => 1,
comments_order => "top",
@@ -44,10 +45,12 @@ our $CONFIG = {
debug => 0,
download_and_play => 0,
download_with_wget => 1,
+ download_with_ytdl => 1,
downloads_dir => ".",
env_proxy => 1,
fat32safe => 0,
ffmpeg_cmd => "/usr/local/bin/ffmpeg",
+ force_fallback => 0,
fullscreen => 0,
get_captions => 1,
get_term_width => 1,
@@ -62,6 +65,7 @@ our $CONFIG = {
ignored_projections => [],
interactive => 1,
keep_original_video => 0,
+ local_playlist_limit => -1,
maxResults => 20,
merge_into_mkv => 1,
merge_into_mkv_args => "-loglevel warning -c:s srt -c:v copy -c:a copy -disposition:s forced",
@@ -75,12 +79,14 @@ our $CONFIG = {
region => undef,
remove_played_file => 0,
resolution => "best",
+ saved_channels_file => "$ENV{HOME}/.config/pipe-viewer/users.txt",
show_video_info => 1,
skip_if_exists => 1,
skip_watched => 0,
split_videos => 1,
srt_languages => ["en", "es"],
subscribed_channels_file => "$ENV{HOME}/.config/pipe-viewer/subscribed_channels.txt",
+ subscriptions_lifetime => 600,
subscriptions_limit => 10000,
thousand_separator => ",",
timeout => undef,
@@ -111,10 +117,12 @@ our $CONFIG = {
videoDuration => undef,
videoLicense => undef,
watch_history => 1,
- watched_file => "$ENV{HOME}/.config/pipe-viewer/watched.txt",
+ watch_history_file => "$ENV{HOME}/.config/pipe-viewer/watched.txt",
wget_cmd => "/usr/local/bin/wget",
- youtube_users_file => "$ENV{HOME}/.config/pipe-viewer/users.txt",
youtube_video_url => "https://www.youtube.com/watch?v=%s",
ytdl => 1,
ytdl_cmd => "/usr/local/bin/youtube-dl",
+ ytdlp_comments => 0,
+ ytdlp_max_comments => 10,
+ ytdlp_max_replies => 3,
}