add info_json fn
This commit is contained in:
parent
816b023e71
commit
564e956ba4
1 changed files with 6 additions and 0 deletions
|
@ -16,3 +16,9 @@ alias downloadYT="yt-dlp --write-thumbnail \
|
||||||
function downloadList() {
|
function downloadList() {
|
||||||
cat $1 |xargs -I _ yt-dlp --downloader aria2c _
|
cat $1 |xargs -I _ yt-dlp --downloader aria2c _
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# info_json VIDEO_FILE
|
||||||
|
# View info.json from video file
|
||||||
|
function info_json() {
|
||||||
|
mkvextract -q attachments "$1" "1:/proc/self/fd/1"|jq .
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue