Ааааа!!! У меня роутер работает как релей для радио. 
Тестово запустил как релей для NRJ. Работает отлично. Сейчас буду тестировать ices и осваивать.
ices не захотел кушать mp3, и жутко ругался на ogg. Или я ogg как-то неправильно закодировал.
Ни у кого не получалось связать mpd и icecast?
Делал всё по инструкции, которой море в интернете, но сорс в вебморде icecast так и не появился.
База mpd при этом заполнилась успешно.
Конфиг icecast
Code:
<icecast>
<limits>
<clients>100</clients>
<sources>2</sources>
<threadpool>5</threadpool>
<queue-size>524288</queue-size>
<client-timeout>30</client-timeout>
<header-timeout>15</header-timeout>
<source-timeout>10</source-timeout>
<!-- If enabled, this will provide a burst of data when a client
first connects, thereby significantly reducing the startup
time for listeners that do substantial buffering. However,
it also significantly increases latency between the source
client and listening client. For low-latency setups, you
might want to disable this. -->
<burst-on-connect>1</burst-on-connect>
<!-- same as burst-on-connect, but this allows for being more
specific on how much to burst. Most people won't need to
change from the default 64k. Applies to all mountpoints -->
<burst-size>65535</burst-size>
</limits>
<authentication>
<!-- Sources log in with username 'source' -->
<source-password>hackme</source-password>
<!-- Relays log in username 'relay' -->
<relay-password>hackme</relay-password>
<!-- Admin logs in with the username given below -->
<admin-user>admin</admin-user>
<admin-password>p4ssw0rd</admin-password>
</authentication>
<!-- set the mountpoint for a shoutcast source to use, the default if not
specified is /stream but you can change it here if an alternative is
wanted or an extension is required -->
<!-- Uncomment this if you want directory listings -->
<!--
<directory>
<yp-url-timeout>15</yp-url-timeout>
<yp-url>http://dir.xiph.org/cgi-bin/yp-cgi</yp-url>
</directory>
-->
<!-- This is the hostname other people will use to connect to your server.
It affects mainly the urls generated by Icecast for playlists and yp
listings. -->
<hostname>localhost</hostname>
<!-- You may have multiple <listener> elements -->
<listen-socket>
<port>8000</port>
</listen-socket>
<listen-socket>
<port>8001</port>
<bind-address>127.0.0.1</bind-address>
</listen-socket>
<!-- setting this makes all relays on-demand unless overridden, this is
useful for master relays which do not have <relay> definitions here.
The default is 0 -->
<!--<relays-on-demand>1</relays-on-demand>-->
<relay>
<server>94.23.147.7</server>
<port>8000</port>
<mount>/v1_1</mount>
<local-mount>/nrj.mp3</local-mount>
<on-demand>1</on-demand>
<relay-shoutcast-metadata>1</relay-shoutcast-metadata>
</relay>
<fileserve>1</fileserve>
<paths>
<!-- basedir is only used if chroot is enabled -->
<basedir>/opt/share/icecast</basedir>
<!-- Note that if <chroot> is turned on below, these paths must both
be relative to the new root, not the original root -->
<logdir>/opt/var/log/icecast</logdir>
<webroot>/opt/share/icecast/web</webroot>
<adminroot>/opt/share/icecast/admin</adminroot>
<!-- <pidfile>/opt/share/icecast/icecast.pid</pidfile> -->
<!-- Aliases: treat requests for 'source' path as being for 'dest' path
May be made specific to a port or bound address using the "port"
and "bind-address" attributes.
-->
<!--
<alias source="/foo" dest="/bar"/>
-->
<!-- Aliases: can also be used for simple redirections as well,
this example will redirect all requests for http://server:port/ to
the status page
-->
<alias source="/" dest="/status.xsl"/>
</paths>
<logging>
<accesslog>access.log</accesslog>
<errorlog>error.log</errorlog>
<!-- <playlistlog>playlist.log</playlistlog> -->
<loglevel>3</loglevel> <!-- 4 Debug, 3 Info, 2 Warn, 1 Error -->
<logsize>10000</logsize> <!-- Max size of a logfile -->
<!-- If logarchive is enabled (1), then when logsize is reached
the logfile will be moved to [error|access|playlist].log.DATESTAMP,
otherwise it will be moved to [error|access|playlist].log.old.
Default is non-archive mode (i.e. overwrite)
-->
<!-- <logarchive>1</logarchive> -->
</logging>
<security>
<chroot>0</chroot>
<changeowner>
<user>nobody</user>
<group>nobody</group>
</changeowner>
</security>
</icecast>
Конфиг mpd
Code:
music_directory "/tmp/mnt/data/radio"
playlist_directory "/opt/var/mpd/playlists"
db_file "/opt/var/mpd/database"
log_file "/opt/var/log/mpd.log"
pid_file "/opt/var/run/mpd.pid"
state_file "/opt/var/mpd/state"
user "nobody"
group "nobody"
bind_to_address "127.0.0.1"
port "6600"
metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
auto_update "yes"
audio_output {
type "shout"
encoding "ogg" # optional
name "Mikuradio"
host "192.168.1.1"
port "8000"
mount "/miku.ogg"
password "hackme"
# quality "5.0"
bitrate "128"
format "44100:16:2"
# protocol "icecast2" # optional
# user "source" # optional
description "VOCALOID Music" # optional
## genre "jazz" # optional
# public "no" # optional
# timeout "2" # optional
mixer_type "software" # optional
}
filesystem_charset "UTF-8"
id3v1_encoding "UTF-8"
В каком месте я дурак?