Forum › Forums › General › Tips and Tricks › Listening to music on youtube › Reply To: Listening to music on youtube
I use this to listen to music from terminal, try it if it works for you. You need yt-dlp (latest version from github), dmenu (with sudo apt install) and mpv. Create a new file in your /home/user/.local/bin with the name music and copy the following:
#!/bin/bash
query=”$*”
results=$(yt-dlp “ytsearch10:$query” –flat-playlist –print “%(duration_string)s | %(title)s | %(url)s” 2>/dev/null)
selection=$(echo “$results” | dmenu -i -l 10 -p “Music search:”)
[ -z “$selection” ] && exit
url=”${selection##*| }”
mpv –ytdl-format=bestaudio “$url”
Then give permissions to the file with chmod+x. Now you can use it, open a terminal, type music followed by what you want and choose.
If the latest yt-dlp doesn’t work you could try to use its nightly version. You can also change the bestaudio to another code if you want, for example: “bestvideo[height<=480]+bestaudio”
Here I leave an image you can not pass the double dashes
- This reply was modified 1 year, 3 months ago by fantasIA05.
