all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
@ 2009-08-11 20:41 rpd
  2009-08-12  9:55 ` Tassilo Horn
  0 siblings, 1 reply; 5+ messages in thread
From: rpd @ 2009-08-11 20:41 UTC (permalink / raw)
  To: Help-gnu-emacs


Hi

I am trying to use EMMS to play .mp3 & have had this error message appear:

<<
EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
>>

Can someone tell me what it is & how to fix it please?

I look forward to replies, many thanks
-- 
View this message in context: http://www.nabble.com/Emms-error-msg%3AEMMS%3A-Handshake-failed%3A-FAILED-Invalid-Missing-Parameter%28s%29-tp24925384p24925384.html
Sent from the Emacs - Help mailing list archive at Nabble.com.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
       [not found] <mailman.4423.1250023286.2239.help-gnu-emacs@gnu.org>
@ 2009-08-11 23:13 ` Pascal J. Bourguignon
  2009-08-12  0:39   ` rpd
  0 siblings, 1 reply; 5+ messages in thread
From: Pascal J. Bourguignon @ 2009-08-11 23:13 UTC (permalink / raw)
  To: help-gnu-emacs

rpd <richard@dickinson350.freeserve.co.uk> writes:
> I am trying to use EMMS to play .mp3 & have had this error message appear:
>
> <<
> EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
>>>
>
> Can someone tell me what it is & how to fix it please?

I don't know exactly, but

> I look forward to replies, many thanks

It's probably an error in configuring the mp3 player. EMMS doesn't
play itself, it forks another command to play the mp3.

Here is what I have in my ~/.emacs

(when (require 'emms-setup nil t)
  (require 'emms-player-simple)
  (require 'emms-source-file)
  (require 'emms-source-playlist)
  (emms-standard)
  (emms-default-players)        ; do you have this line in your ~/.emacs ?
  (defalias 'np 'emms-show))

and it works ok,  I've got mplayer in the PATH.


-- 
__Pascal Bourguignon__


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
  2009-08-11 23:13 ` Pascal J. Bourguignon
@ 2009-08-12  0:39   ` rpd
  0 siblings, 0 replies; 5+ messages in thread
From: rpd @ 2009-08-12  0:39 UTC (permalink / raw)
  To: Help-gnu-emacs


Hi Pascal

Thanks for your helpful reply.

I have tried the code you give from your .emacs {I changed (emms-standard)
to (emms-all)}
and it works fine (no longer getting the error msg: EMMS: Handshake failed:
FAILED Invalid/Missing Parameter(s)).

I am not sure if it is using mplayer or mpg123 as I have both set-up (I
think!!).

I have a bit more code that seems to save the playlist & autoload it every
time I start emacs which is convenient ie
<<<<
;; save playlist and load at emacs start
(require 'emms-history)
(emms-history-load)
(setq emms-repeat-playlist 1)
>>>>

However I have a lot of excess emms code in my .emacs file all added from
various sources from the internet & commented out! This will need tidying up
which I will do as my experience with emms increases & I find which features
I like & how they are best implemented!

Many thanks & best wishes
-- 
View this message in context: http://www.nabble.com/Emms-error-msg%3AEMMS%3A-Handshake-failed%3A-FAILED-Invalid-Missing-Parameter%28s%29-tp24925384p24928188.html
Sent from the Emacs - Help mailing list archive at Nabble.com.





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
  2009-08-11 20:41 Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s) rpd
@ 2009-08-12  9:55 ` Tassilo Horn
  2009-08-13 11:31   ` rpd
  0 siblings, 1 reply; 5+ messages in thread
From: Tassilo Horn @ 2009-08-12  9:55 UTC (permalink / raw)
  To: help-gnu-emacs

rpd <richard@dickinson350.freeserve.co.uk> writes:

> I am trying to use EMMS to play .mp3 & have had this error message
> appear:
>
> <<
> EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
>>>
>
> Can someone tell me what it is & how to fix it please?

Seems that emms tries to use the last.fm capabilities, but you didn't
set your username/password.  Most probably, you don't want to use that
feature.  So put

  (emms-lastfm-disable)

into your ~/.emacs.  (I'm not 100% sure this is the correct name of the
function, but `apropos-command' will help you to figure it out.)

Bye,
Tassilo





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
  2009-08-12  9:55 ` Tassilo Horn
@ 2009-08-13 11:31   ` rpd
  0 siblings, 0 replies; 5+ messages in thread
From: rpd @ 2009-08-13 11:31 UTC (permalink / raw)
  To: Help-gnu-emacs



Hi Tassilo Horn-5

Thanks for your helpful feedback. 
I didn't know that error was due to the Last.fm username & password
(Thanks for your code suggestion. I would like to be able to listen to
Last.fm & presume I can get to put my username & password when I want to
connect-I will look into the code for that). Many thanks & best wishes



> 
>> I am trying to use EMMS to play .mp3 & have had this error message
>> appear:
>>
>> <<
>> EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s)
>>>>
>>
>> Can someone tell me what it is & how to fix it please?
> 
> Seems that emms tries to use the last.fm capabilities, but you didn't
> set your username/password.  Most probably, you don't want to use that
> feature.  So put
> 
>   (emms-lastfm-disable)
> 
> into your ~/.emacs.  (I'm not 100% sure this is the correct name of the
> function, but `apropos-command' will help you to figure it out.)
> 
> Bye,
> Tassilo
> 
> 

-- 
View this message in context: http://www.nabble.com/Emms-error-msg%3AEMMS%3A-Handshake-failed%3A-FAILED-Invalid-Missing-Parameter%28s%29-tp24925384p24953291.html
Sent from the Emacs - Help mailing list archive at Nabble.com.





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-08-13 11:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-11 20:41 Emms error msg:EMMS: Handshake failed: FAILED Invalid/Missing Parameter(s) rpd
2009-08-12  9:55 ` Tassilo Horn
2009-08-13 11:31   ` rpd
     [not found] <mailman.4423.1250023286.2239.help-gnu-emacs@gnu.org>
2009-08-11 23:13 ` Pascal J. Bourguignon
2009-08-12  0:39   ` rpd

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.