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
2番目、3番目...ファイル
個別の変数$ file、$ per、$ timeとしてawk
を使用できることはわかっていますが、この複雑な出力では、どのように使用すればよいでしょうか。すべてのパラメーターが使用できない場合は、少なくともpercentおよびfile_noを抽出できます。
はい、可能です。必要がある
#
が付いたファイル番号が出力されるようにします。 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
:これは基本的に lookbehind であり、「これまでに一致したものはすべて無視する」という意味です。(...|...)
:|
はORを意味します。したがって、(A|B)
はAまたはBのいずれかに一致します。[0-9.]+\%
:1つ以上の数字、または.
に続く%
。これにより、割合が出力されます。#\d+ of \d
:#
の後に1つ以上の数字、of
、さらに1つ以上の数字が続きます。これは「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