Get youtube video format/quality list
youtube-dl -F '<YOUTUBE_VIDEO_URL>'
Download an specific format/quality trought it ID
youtube-dl -f 136 '<YOUTUBE_VIDEO_URL>'
| package main | |
| import ( | |
| "fmt" | |
| "syscall/js" | |
| ) | |
| func main() { | |
| fmt.Println("Hello WASM") | |
| js.Global().Set("runChecker", js.FuncOf(runCheck)) |
Get youtube video format/quality list
youtube-dl -F '<YOUTUBE_VIDEO_URL>'
Download an specific format/quality trought it ID
youtube-dl -f 136 '<YOUTUBE_VIDEO_URL>'
| #!/bin/bash | |
| echo "" | |
| tput setaf 6; | |
| echo "Write the version of Go that you want:" | |
| tput sgr0; | |
| # Asks for the desired golang version to be installed | |
| read goversion |