WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: looking for a gui audio player  (Read 16225 times)

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
looking for a gui audio player
« on: March 24, 2013, 10:45:03 PM »
I have tried xmms but there is no way to change volume & navigate in time stream using keyboard .
I am fond of mplayer which has right & left arrow for 10 seconds ,up & down arrow for a minute increase/decrease in time axis.
I am using gmplayer which is fine except it shows a video window not needed while playing audio files.

aus9

  • Guest
Re: looking for a gui audio player
« Reply #1 on: March 24, 2013, 10:53:21 PM »
Hi

you asked for a gui audio player

vlc

but me thinks you mean cli audio player

try
Code: [Select]
vlc -h

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: looking for a gui audio player
« Reply #2 on: March 25, 2013, 03:10:24 AM »
By my understanding, that window of gmplayer is present to serve as an XDND GUI interface, which of course needs to be visible before one could use it.
Using pure mplayer, windows are only created upon need and automatically torn down when no longer required.

xine-ui has an option
Code: [Select]
-H, --hide-video             hide video windowand besides from that features a key binding editor.
I couldn't exclude such features might also be available in some mplayer GUI frontends.

If you are interested in a console GUI audio player, I could suggest looking into mp3blaster which is fully keyboard controlled.
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline hiro

  • Hero Member
  • *****
  • Posts: 1217
Re: looking for a gui audio player
« Reply #3 on: March 25, 2013, 03:36:28 AM »
from the confused text you wrote I can only assume you want everything at once.

you can use mpd with multiple clients
mpc to control stuff from cli, ncmpc as a comfortable ncurses client and gmpc or so as a graphical client for windows users.

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
Re: looking for a gui audio player
« Reply #4 on: March 25, 2013, 05:37:54 AM »
trying to make myself clearer
I will create a desktop entry whose exec will be 'application-name %f' so that when I double click on audiofiles in my file manager I should get a window looking like mp3player showing time & volume scale . It would be nice if I can navigate in time using keyboard as I am habitual in mplayer . gmplayer is nice except it shows the additional video window which is not needed .

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: looking for a gui audio player
« Reply #5 on: March 25, 2013, 06:14:01 AM »
I should get a window looking like mp3player showing time & volume scale .

Any reference? Google doesn't seem to know this...
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline AmatCoder

  • Full Member
  • ***
  • Posts: 179
    • AmatCoder Projects
Re: looking for a gui audio player
« Reply #6 on: March 25, 2013, 07:26:40 AM »
I have tried xmms but there is no way to change volume & navigate in time stream using keyboard .
I am fond of mplayer which has right & left arrow for 10 seconds ,up & down arrow for a minute increase/decrease in time axis.
I am using gmplayer which is fine except it shows a video window not needed while playing audio files.

With gnome-mplayer you can use those keys (right & left arrow for 10 seconds, up & down arrow for a minute increase/decrease) and '9' & '0' keys for volume change. (like mplayer).
And it does not show video window when playing audio files.

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
Re: looking for a gui audio player
« Reply #7 on: March 28, 2013, 07:55:48 AM »
I tried 'gmplayer -nofs %f' in my desktop file & all went well . I guess fs=yes in ~/.mplayer/config was the culprit.
Thank You all.

There is a small problem though.
In mplayer you can cycle through subtitle tracks using j & J .
I thought that the fontsize is big causing '...something.srt' to be seen on screen instead of full subtitle path
So I added in ~/.mplayer/config
subfont-autoscale=0
subfont-osd-scale=10
subfont-text-scale=10
Now I still see ... though there is lot of space on screen to write text in that line.
Does anybody know a way in which whole filename appears on screen ?
« Last Edit: March 28, 2013, 08:13:26 AM by manit123 »

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: looking for a gui audio player
« Reply #8 on: March 28, 2013, 09:28:38 AM »
Did you try if "-subwidth 100" does what you want?
(not having any subtitles here to test)
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
Re: looking for a gui audio player
« Reply #9 on: March 30, 2013, 07:08:44 AM »
i wil try subwidth option & report here.

Another thing is - if I double click on multiple mp3 files then all of them start playing simultaneously in mulltiple windows . I want only one instance of mplayer so that recently clicked file only gets played.

I tried to write a script as follows
userapp-gmplayer.desktop in has in exec '/mnt/sdb1/one-instance-only.sh %f'
and /mnt/sdb1/one-instance-only.sh contains
!#/bin/sh
pkill gmplayer
gmplayer "$1"
Now on double clicking audio files nothing happens.
Where am I going wrong ?
« Last Edit: March 30, 2013, 07:23:38 AM by manit123 »

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
Re: looking for a gui audio player
« Reply #10 on: March 31, 2013, 11:58:20 PM »
to tinypoodle
-subwidth=100 did not help.
ALso you can get subtitles of any arbitrary movie from www.opensubtitles.org to verify what i am talking about.


Another problem remains about allowing only one instance of mplayer as mentioned above .

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: looking for a gui audio player
« Reply #11 on: April 01, 2013, 12:12:50 PM »
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
Re: looking for a gui audio player
« Reply #12 on: April 01, 2013, 11:34:22 PM »
Sorry , that was my typo .
I am looking for way in which only one instance of an audio-video player runs.
It would be a better if I am additionally able to queue another file in current player.

Offline AmatCoder

  • Full Member
  • ***
  • Posts: 179
    • AmatCoder Projects
Re: looking for a gui audio player
« Reply #13 on: April 02, 2013, 02:24:12 AM »
I am looking for way in which only one instance of an audio-video player runs.
It would be a better if I am additionally able to queue another file in current player.

I do not want to be insistent but gnome-mplayer has an option for that...( Edit->Preferences->Interface->Only allow one instance of Gnome Mplayer )

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: looking for a gui audio player
« Reply #14 on: April 02, 2013, 04:07:57 AM »
Sorry , that was my typo .
I am looking for way in which only one instance of an audio-video player runs.
It would be a better if I am additionally able to queue another file in current player.

FWIW, I find using mplayer from console most simple for such purpose:

Code: [Select]
mplayer 1.mp3 2.mp3 3.mp3
or even

Code: [Select]
mplayer *.mp3
Jumping between tracks is easily achieved with < > keys.
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)