|
List Info
Thread: NEW: audio/cmus
|
|
| NEW: audio/cmus |

|
2007-07-24 16:57:30 |
cmus is a small ncurses-based music player. It supports
various output
methods by output plugins. It has got completely
configurable key
bindings and it can be controlled from the outside via
cmus-remote(1).
Tested on amd64 and i386. Please test and comment.
Regards,
Tim
|
|
|
| Re: NEW: audio/cmus |
  Europe |
2007-07-25 05:27:16 |
On Tue, Jul 24, 2007 at 11:57:30PM +0200, Tim van der Molen
wrote:
> cmus is a small ncurses-based music player. It supports
various output
> methods by output plugins. It has got completely
configurable key
> bindings and it can be controlled from the outside via
cmus-remote(1).
>
> Tested on amd64 and i386. Please test and comment.
Builds and installs fine.
But why can't I see anything when I start cmus?
It looks like this here:
http://blarzwur
st.de/openbsd/cmus.png
If I type ':' I see it that char, but I don't see the
command behind it.
If I type :bla I can see the red 'Error: unknown command'
message.
I typed and :a ~/music and :player-play, this works, but
without seeing
anything...
Don't know if this is normal or if it's my own fault?
--
simon
|
|
| Re: NEW: audio/cmus |

|
2007-07-25 13:08:48 |
On Wed, 25 Jul 2007 12:27:16 +0200, Simon Kuhnle wrote:
> On Tue, Jul 24, 2007 at 11:57:30PM +0200, Tim van der
Molen wrote:
> > cmus is a small ncurses-based music player. It
supports various output
> > methods by output plugins. It has got completely
configurable key
> > bindings and it can be controlled from the outside
via cmus-remote(1).
> >
> > Tested on amd64 and i386. Please test and
comment.
>
> Builds and installs fine.
>
> But why can't I see anything when I start cmus?
> It looks like this here:
> http://blarzwur
st.de/openbsd/cmus.png
>
> If I type ':' I see it that char, but I don't see the
command behind it.
> If I type :bla I can see the red 'Error: unknown
command' message.
>
> I typed and :a ~/music and :player-play, this works,
but without seeing
> anything...
>
> Don't know if this is normal or if it's my own fault?
It certainly isn't normal. (The screenshots at
http://onion
.dynserv.net/~timo/cmus.html will give you an idea of
what
it should look like.)
Does pressing ^L (refresh screen) help?
What terminal emulator are you using? Does it make any
difference if you
start cmus in an xterm or on the console?
Thanks for testing.
Regards,
Tim
|
|
| Re: NEW: audio/cmus |
  Europe |
2007-07-25 15:25:18 |
On Wed, Jul 25, 2007 at 08:08:48PM +0200, Tim van der Molen
wrote:
> It certainly isn't normal. (The screenshots at
> http://onion
.dynserv.net/~timo/cmus.html will give you an idea of
what
> it should look like.)
Yes, I saw that.
Does it look like that for you?
> Does pressing ^L (refresh screen) help?
No, it doesn't.
> What terminal emulator are you using? Does it make any
difference if you
> start cmus in an xterm or on the console?
I tried it in xterm, rxvt and in console. The same
everywhere.
The only thing I see is the error message if I type in a
wrong command
or the ':'-character when typing a command.
If I hit key 5 (which is the file browser) I can see
directory entries
and change directories but it doesn't remove entries from
the direcotry
before (that means entries of the current dir and the one
displayed
before are shown).
Pretty strange, if you ask me...
--
simon
|
|
| Re: NEW: audio/cmus |

|
2007-07-25 15:56:23 |
On 25/07/07, Simon Kuhnle <simon blarzwurst.de> wrote:
> On Tue, Jul 24, 2007 at 11:57:30PM +0200, Tim van der
Molen wrote:
> > cmus is a small ncurses-based music player. It
supports various output
> > methods by output plugins. It has got completely
configurable key
> > bindings and it can be controlled from the outside
via cmus-remote(1).
> >
> > Tested on amd64 and i386. Please test and
comment.
>
> Builds and installs fine.
>
> But why can't I see anything when I start cmus?
> It looks like this here:
> http://blarzwur
st.de/openbsd/cmus.png
>
> If I type ':' I see it that char, but I don't see the
command behind it.
> If I type :bla I can see the red 'Error: unknown
command' message.
>
> I typed and :a ~/music and :player-play, this works,
but without seeing
> anything...
>
> Don't know if this is normal or if it's my own fault?
>
> --
> simon
Looks like I'm seeing the same behaviour.
--
viq
|
|
| Re: NEW: audio/cmus |

|
2007-07-27 06:23:05 |
On Wed, 25 Jul 2007 22:25:18 +0200, Simon Kuhnle wrote:
> On Wed, Jul 25, 2007 at 08:08:48PM +0200, Tim van der
Molen wrote:
> > It certainly isn't normal. (The screenshots at
> > http://onion
.dynserv.net/~timo/cmus.html will give you an idea of
what
> > it should look like.)
>
> Yes, I saw that.
> Does it look like that for you?
>
> > Does pressing ^L (refresh screen) help?
>
> No, it doesn't.
>
> > What terminal emulator are you using? Does it make
any difference if you
> > start cmus in an xterm or on the console?
>
> I tried it in xterm, rxvt and in console. The same
everywhere.
> The only thing I see is the error message if I type in
a wrong command
> or the ':'-character when typing a command.
>
> If I hit key 5 (which is the file browser) I can see
directory entries
> and change directories but it doesn't remove entries
from the direcotry
> before (that means entries of the current dir and the
one displayed
> before are shown).
>
> Pretty strange, if you ask me...
It appears cmus uses nl_langinfo(3) to get the locale's
character set.
In the C locale, nl_langinfo() returns `646' (ASCII).
libiconv does not
support `646', which causes the problems you described. I
have patched
cmus so that it uses locale_charset() from libiconv
instead.
Could you test the new port (which I'll send separately to
ports ) and
see if cmus now looks as it is supposed to?
Regards,
Tim
|
|
| Re: NEW: audio/cmus |

|
2007-07-27 06:25:37 |
On Fri, 27 Jul 2007 13:23:05 +0200, Tim van der Molen
wrote:
> Could you test the new port (which I'll send separately
to ports ) and
> see if cmus now looks as it is supposed to?
And here it is.
|
|
|
| Re: NEW: audio/cmus |
  Europe |
2007-07-27 06:50:45 |
On Fri, Jul 27, 2007 at 01:23:05PM +0200, Tim van der Molen
wrote:
> It appears cmus uses nl_langinfo(3) to get the locale's
character set.
> In the C locale, nl_langinfo() returns `646' (ASCII).
libiconv does not
> support `646', which causes the problems you described.
I have patched
> cmus so that it uses locale_charset() from libiconv
instead.
>
> Could you test the new port (which I'll send separately
to ports ) and
> see if cmus now looks as it is supposed to?
Yes, now it looks as it is supposed to look!
I can see everything and it looks good and usable.
Works for me on i386.
--
simon
|
|
[1-8]
|
|