cheese_greater@lemmy.world to Ask Lemmy@lemmy.world · edit-24 months agoWhat app/program do you wish existed and what does it do that you've not found elsewhere?message-squaremessage-square126linkfedilinkarrow-up11arrow-down10file-text
arrow-up11arrow-down1message-squareWhat app/program do you wish existed and what does it do that you've not found elsewhere?cheese_greater@lemmy.world to Ask Lemmy@lemmy.world · edit-24 months agomessage-square126linkfedilinkfile-text
I wish there was a good looping software that good take any song and cut the perfect infinite loop of it automatically.
minus-squarech00f@lemmy.worldlinkfedilinkarrow-up0·4 months agoMusic software that shuffles entire albums and plays them end to end before switching to another random album.
minus-squareBurgerBaron@piefed.sociallinkfedilinkEnglisharrow-up0·4 months agoWACUP should too then: https://getwacup.com/ Modern winamp fork of sorts.
minus-squaresolrize@lemmy.mllinkfedilinkarrow-up0·4 months agoThat is like a 10 5 line bash script? Well a little more but not much.
minus-squaresolrize@lemmy.mllinkfedilinkarrow-up0·4 months 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-squaresin_free_for_00_days@sopuli.xyzlinkfedilinkEnglisharrow-up0·4 months agoMinus that second pipe to shuf, it seems exactly what the person wanted.
minus-squaresolrize@lemmy.mllinkfedilinkarrow-up0·4 months 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-squaresin_free_for_00_days@sopuli.xyzlinkfedilinkEnglisharrow-up0·4 months 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.
minus-squareRheumatoidArthritis@mander.xyzlinkfedilinkarrow-up0·4 months agoQuodlibet has a Random Album Playback plugin
Music software that shuffles entire albums and plays them end to end before switching to another random album.
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.
Quodlibet has a Random Album Playback plugin