I've been having troubles running my playlist with mplayer over ssh. This used to work without any issues for me with the following:
I'm not really sure when this changed, but I have upgraded the server and my desktop that it plays from several times since I last used it for music. What happens is it just plays back static on my desktop. I've managed to get bits of the music by removing the
Can anybody offer suggestions on what else I might be able to change in order to get the stream to move without any static? I'm at a bit of a loss at this point and any suggestions would be greatly appreciated.
ssh -i .ssh/user_key.id_rsa user@host "mplayer -shuffle -playlist /path/to/playlist.txt -af resample=44100,channels=2,format=s16le -ao pcm:file=/dev/stdout -quiet -really-quiet" | aplay -t raw -c 2 -f S16_LE -r 44100
I'm not really sure when this changed, but I have upgraded the server and my desktop that it plays from several times since I last used it for music. What happens is it just plays back static on my desktop. I've managed to get bits of the music by removing the
-quiet -really-quiet
flags, but I get a second of music followed by a second of static and it just repeats like that.Can anybody offer suggestions on what else I might be able to change in order to get the stream to move without any static? I'm at a bit of a loss at this point and any suggestions would be greatly appreciated.