Skip to main content
Topic: What are some of the best music players? (Read 3259 times) previous topic - next topic

What are some of the best music players?

A long time ago I used Winamp.
https://www.winamp.com



Is it still worth downloading or is there something better?
What are your suggestions?
For Linux and Windows. Por favor. Muchas gracias.

Re: What are some of the best music players?

Reply #1
I will add. I have used mpv
https://mpv.io

Code: [Select]
#!/bin/bash
# Sanitize input for mpv
echo "Enter a YouTube URL"
read varname
if [[ $varname =~ .*start_radio.* ]]; then
echo "That is NOT a supported URL"
exit 1
fi
  if [[ $varname =~ .*www.youtube.com/watch.* ]]; then
   echo "YouTube.com Link"
   result=$(sed -e 's/\(watch\).*\(list\)/\playlist?list/' <<< "$varname")
   myResult=$(sed "s/\&index.*//" <<< $result)
   echo $myResult
   mpv.exe "$myResult"
  elif [[ $varname =~ .*https://music* ]]; then
   echo "YouTube Music"
   replace=$(sed -e "s/\music/www/g" <<< $varname)
   echo $replace
   myResult=$(sed "s/\&.*//" <<< $replace)
   echo $myResult
   mpv.exe $myResult
  elif [[ $varname =~ .*youtu.be.* ]]; then
   echo "Youtu.be Link"
   mpv.exe "$varname"
  elif [[ $varname =~ .*www.youtube.com/playlist* ]]; then
   mpv.exe "$varname"
  else
   echo "That is NOT a supported URL"
  fi

This is an mpv sanitize script to play youtube playlists and things from youtube music.

Re: What are some of the best music players?

Reply #2
https://weboas.is/faq/#collapseFiveHundred47

    foobar2000
    MediaMonkey
    MusicBee
    Amarok
    Volumio
    Clementine
    Guayadeque
    DeaDBeeF
    Strawberry
    Goggles
    gmusicbrowser
    Audacious
    Sayonara
    Exaile
    FunkWhale
    Nuclear

Top 3 are for Windows. Rest are mainly for Linux.

Re: What are some of the best music players?

Reply #3
I remember when I was about 14 maybe, WinAmp was maybe three years old at that point, so year 2000.  There used to be an option to live stream things, and some of the content at the time was XXX.  Was a dope workaround for not getting caught via history etc. LOL.   I haven't used WinAmp in literally 20 years now probably.  I am really liking Media Monkey as of late.  Give that shot is your using Windows.