Some small bits
This commit is contained in:
parent
ababcae988
commit
bc942a3432
21
invyt.nu
21
invyt.nu
|
@ -1,18 +1,27 @@
|
|||
#!/usr/bin/env nu
|
||||
|
||||
def get_url [url: string] {
|
||||
def main [url: string, --return(-r)] {
|
||||
let parsed_url = $url | url parse
|
||||
if ($parsed_url.path | str contains '/watch') {
|
||||
|
||||
let yt_url = if ($parsed_url.path | str contains '/watch') {
|
||||
if $parsed_url.host != "youtube.com" {
|
||||
$url | str replace $parsed_url.host "youtube.com"
|
||||
} else {
|
||||
$url
|
||||
}
|
||||
} else {
|
||||
"Not a YouTube/Invidious/Piped URL"
|
||||
error make {
|
||||
msg: "Not a YouTube/Invidious/Piped URL"
|
||||
label: {
|
||||
text: "Expects a YouTube/Invidious/Piped URL"
|
||||
span: (metadata $url).span
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
match $return {
|
||||
true => $yt_url
|
||||
false => { yt-dlp --embed-chapters --embed-metadata --embed-subs $yt_url }
|
||||
}
|
||||
}
|
||||
|
||||
def main [--url: string] {
|
||||
yt-dlp --embed-chapters --embed-metadata --embed-subs (get_url $url)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue