diff options
author | thinca <thinca@gmail.com> | 2013-06-04 21:05:51 +0900 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-06-04 12:23:49 -0400 |
commit | 0391d2443829ee0d92943c80ffcd918eafe53a6b (patch) | |
tree | 5c5e3a3b4324fca603583f2a156032364b909065 /lib | |
parent | a90c66680145a0502f452ccd6d743e77159a4837 (diff) | |
download | ampache-0391d2443829ee0d92943c80ffcd918eafe53a6b.tar.gz ampache-0391d2443829ee0d92943c80ffcd918eafe53a6b.tar.bz2 ampache-0391d2443829ee0d92943c80ffcd918eafe53a6b.zip |
Set Encoding parameter in ASX files
http://msdn.microsoft.com/library/windows/desktop/dd563989%28v=vs.85%29.aspx
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/stream_playlist.class.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/class/stream_playlist.class.php b/lib/class/stream_playlist.class.php index ca9c01cb..572b7605 100644 --- a/lib/class/stream_playlist.class.php +++ b/lib/class/stream_playlist.class.php @@ -289,6 +289,7 @@ class Stream_Playlist { echo '<ASX VERSION="3.0" BANNERBAR="auto">' . "\n"; echo "<TITLE>Ampache ASX Playlist</TITLE>\n"; + echo '<PARAM NAME="Encoding" VALUE="utf-8" />' . "\n"; foreach ($this->urls as $url) { echo "<ENTRY>\n"; |