如何将 youtube-dl 文件下载进度百分比添加到 zenity 进度条
示例代码(仅为示例,不可运行)
#!/bin/sh
(
progress=$(youtube-dl --extract-audio --audio-quality 0 --newline --audio-format mp3 https://www.youtube.com/playlist?list=PL1C815DB73EC2678E)
per=$(awk '{print perc}' <<<$progress)
time=$(awk '{print time}' <<<$progress)
file_no=$(awk '{print file_no}' <<<$progress) #only for playlist, example=Downloading video 1 of 4
echo "$per" ; sleep 1
echo "# $file_no \n Time Left: $time" ; sleep 1
) |
zenity --progress \
--title="Download" \
--text="Downloading..." \
--percentage=0
if [ "$?" = -1 ] ; then
zenity --error \
--text="Download cancelled."
fi
我已经使用此代码来获取下载进度
youtube-dl --extract-audio --audio-quality 0 --newline --audio-format mp3 https://www.youtube.com/playlist?list=PL1C815DB73EC2678E
这是输出
[youtube:playlist] PL1C815DB73EC2678E: Downloading webpage
[download] Downloading playlist: Less than 1 minute
[youtube:playlist] playlist Less than 1 minute: Collected 4 video ids (downloading 4 of them)
[download] Downloading video 1 of 4
[youtube] KNLwsqzFfNg: Downloading webpage
[youtube] KNLwsqzFfNg: Extracting video information
[youtube] KNLwsqzFfNg: Downloading DASH manifest
download] Destination: _1 min. - Amendes pour les particules du LHC-KNLwsqzFfNg.m4a
[download] 0.4% of 231.51KiB at 6.10KiB/s ETA 00:30
[download] 1.1% of 231.51KiB at 27.07KiB/s ETA 00:10
[download] 4.0% of 231.51KiB at 19.24KiB/s ETA 00:04
[download] 6.5% of 231.51KiB at 75.06KiB/s ETA 00:03
[download] 13.4% of 231.51KiB at 98.22KiB/s ETA 00:03
[download] 28.7% of 231.51KiB at 81.40KiB/s ETA 00:02
[download] 61.7% of 231.51KiB at 91.56KiB/s ETA 00:01
[download] 86.2% of 231.51KiB at 82.96KiB/s ETA 00:00
[download] 100.0% of 231.51KiB at 73.21KiB/s ETA 00:00
[download] 100% of 231.51KiB in 00:02
[ffmpeg] Correcting container in "_1 min. - Amendes pour les particules du LHC-KNLwsqzFfNg.m4a"
WARNING: Your copy of avconv is outdated, update avconv to version 10-0 or newer if you encounter any errors.
[avconv] Destination: _1 min. - Amendes pour les particules du LHC-KNLwsqzFfNg.mp3
WARNING: Your copy of avconv is outdated, update avconv to version 10-0 or newer if you encounter any errors.
Deleting original file _1 min. - Amendes pour les particules du LHC-KNLwsqzFfNg.m4a (pass -k to keep)
[download] Downloading video 2 of 4
[youtube] wTvXkMpJflk: Downloading webpage
[youtube] wTvXkMpJflk: Extracting video information
[youtube] wTvXkMpJflk: Downloading DASH manifest
etc..
etc..
.
.
我只想要
Downloading video 1 of 4 [download] Downloading video 2 of 4
作为 $files_no
第一份文件
file_no= Downloading video 1 of 4
per time rate
0.40% 00:30:00 6.10KiB/s
1.10% 00:10:00 27.07KiB/s
4.00% 00:04:00 19.24KiB/s
6.50% 00:03:00 75.06KiB/s
13.40% 00:03:00 98.22KiB/s
28.70% 00:02:00 81.40KiB/s
61.70% 00:01:00 91.56KiB/s
86.20% 00:00:00 82.96KiB/s
100.00% 00:00:00 231.51KiB/s
第二、第三...文件
作为单独的变量 $file, $per, $time 我知道我们可以使用awk
但是对于这个复杂的输出我应该如何使用它。如果所有参数都不可能,至少可以提取百分比和 file_no。
答案1
是的,这是可能的。你需要
- 确保输出是非缓冲的,收到后立即打印。管道默认是缓冲的。
- 解析下载器的输出,以便仅打印百分比;
- 解析输出,以便在行首打印文件编号
#
。Zenity 将自动使用以 开头的行更新其对话框的文本#
。
结合以上内容,并实现一些正则表达式魔法,我们得到:
#!/bin/bash
youtube-dl --extract-audio --audio-quality 0 --newline --audio-format mp3 \
https://www.youtube.com/playlist?list=PL1C815DB73EC2678E |
grep --line-buffered -oP '^\[download\].*?\K([0-9.]+\%|#\d+ of \d)' |
zenity --progress \
--title="Download" \
--text="Downloading..." \
--percentage=0
解释
选项--line-buffered
使它grep
立即打印输出,关闭默认缓冲。使它-o
只打印行的匹配部分,并-P
打开 Perl 兼容正则表达式。
这个正则表达式有点复杂,让我们分解一下:
^\[download\]
: 匹配以 开头的行[download]
。.*?
:0 个或多个字符,但?
会使其在最短的匹配处停止。\K
:这基本上是一个向后看,意思是“忽略迄今为止匹配的任何内容”。(...|...)
:|
表示“或”。因此,(A|B)
将匹配 A 或 B。[0-9.]+\%
:1 个或多个数字,或.
后跟%
。这将打印百分比。#\d+ of \d
:a#
后跟一个或多个数字,of
然后又跟一个或多个数字。这与“Video X of Y”行匹配。
综合起来,该grep
命令将打印:
#1 of 4
0.1%
0.3%
0.8%
1.7%
3.4%
7.0%
14.0%
28.2%
56.5%
99.5%
100.0%
100%
#2 of 4
0.1%
0.3%
0.8%
1.6%
3.4%
6.9%
13.9%
27.8%
55.8%
[...]
等等,这正是所需的输出zenity
。最后,您可以通过实现从命令行指定多个 URL 的功能,使整个事情更有用:
#!/bin/bash
for url in "$@"
do
youtube-dl --extract-audio --audio-quality 0 --newline --audio-format mp3 \
https://www.youtube.com/playlist?list=PL1C815DB73EC2678E |
grep --line-buffered -oP '^\[download\].*?\K([0-9.]+\%|#\d+ of \d)' |
zenity --progress \
--title="Download" \
--text="Downloading..." \
--percentage=0
done
然后,您可以像这样调用您的脚本:
myscript.sh "http://url1.com" "http://url2.com" "http://urlN.com