Re: Playing music (was: Re: [dev] mret)

2011-05-28 Thread Bjartur Thorlacius
On 5/26/11, hiro <23h...@googlemail.com> wrote: > Hmm. How do you "buffer linewise"? I knew that everything worked fine on sane ttys, but I just don't understand how FIFOs are buffered and thus not what happened if you tried to read from a pipe with less than 512 bytes written to it. I'm back on Li

Re: Playing music (was: Re: [dev] mret)

2011-05-27 Thread hiro
I still don't get the whole idea. http://sqweek.dnsdojo.org/code/m9u/

Re: Playing music (was: Re: [dev] mret)

2011-05-27 Thread Andrew Hills
On Thu, May 26, 2011 at 2:22 PM, hiro <23h...@googlemail.com> wrote: > Hmm. How do you "buffer linewise"? I'm 99% sure that means the songs file is a line-delimited list of filenames. --Andrew Hills

Re: Playing music (was: Re: [dev] mret)

2011-05-26 Thread hiro
Hmm. How do you "buffer linewise"? I think sqweek did some nice playlist file system, I can't find it right now.

Playing music (was: Re: [dev] mret)

2011-05-26 Thread Bjartur Thorlacius
On 5/26/11, hiro <23h...@googlemail.com> wrote: > mplayer has the -quiet flag at least, I'm quite sure you can disable > it's interactive features, too. I just don't want to read the man > "page". This. I'm on Windows ATM, but if I recall correctly: xargs -n0 mplayer -slave -quiet &>/dev/null Where