@[email protected] to Ask [email protected] • edit-212 days agoWhat app/program do you wish existed and what does it do that you've not found elsewhere?message-square137fedilinkarrow-up196
arrow-up196message-squareWhat app/program do you wish existed and what does it do that you've not found elsewhere?@[email protected] to Ask [email protected] • edit-212 days agomessage-square137fedilink
I wish there was a good looping software that good take any song and cut the perfect infinite loop of it automatically.
minus-square@[email protected]linkfedilink17•12 days agoMusic software that shuffles entire albums and plays them end to end before switching to another random album.
minus-squareBurgerBaronlinkfedilinkEnglish3•12 days agoWACUP should too then: https://getwacup.com/ Modern winamp fork of sorts.
minus-square@[email protected]linkfedilink4•12 days agoThat is like a 10 5 line bash script? Well a little more but not much.
minus-square@[email protected]linkfedilink4•12 days agoOk 6 lines (untested): while true; do album=$(ls albums | shuf -n 1) for song in $(ls albums/$album/*.mp3 | shuf); do mplayer $song done done
minus-square@[email protected]linkfedilinkEnglish1•12 days agoMinus that second pipe to shuf, it seems exactly what the person wanted.
minus-square@[email protected]linkfedilink3•12 days agoThe first pipe to shuf chooses a random album and the second randomizes the order of the songs on that album. I thought that is what OP had asked for.
minus-square@[email protected]linkfedilinkEnglish4•12 days agoI read it as play a random album straight through, first song to last song, but re-reading what they wrote, you may be right.
Music software that shuffles entire albums and plays them end to end before switching to another random album.
Quodlibet has a Random Album Playback plugin
Winamp used to do this.
WACUP should too then:
https://getwacup.com/
Modern winamp fork of sorts.
That is like a
105 line bash script? Well a little more but not much.Ok 6 lines (untested):
Minus that second pipe to shuf, it seems exactly what the person wanted.
The first pipe to shuf chooses a random album and the second randomizes the order of the songs on that album. I thought that is what OP had asked for.
I read it as play a random album straight through, first song to last song, but re-reading what they wrote, you may be right.