AvataR <[email protected]> writes:
> Ignore regex looks better. But even with this regex
>
> (setq emms-player-mpd-supported-regexp
>    (concat "\\`http://\\|"
>               (emms-player-simple-regexp
>                "m3u" "ogg" "flac" "mp3" "wav" "mod" "au" "aiff")))
>
> setted, i couldn't play anything, if some video added to playlist.

Sorry, I should have tested this before posting. I forgot you also have
to set this regexp in the player structure. The following should work:

    (require 'emms-player-mpd)

    (setq emms-player-mpd-supported-regexp
          (concat "\\`http://\\|"
                  (emms-player-simple-regexp
                   "m3u" "ogg" "flac" "mp3" "wav" "mod" "au" "aiff")))
    
    (emms-player-set emms-player-mpd
                     'regex
                     emms-player-mpd-supported-regexp)


-David


_______________________________________________
Emms-help mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emms-help

Reply via email to