From vanderlinden at culturalservices.nl Sat May 2 23:59:58 2015 From: vanderlinden at culturalservices.nl (Klaas van der Linden) Date: Sun, 3 May 2015 01:59:58 +0200 Subject: [Icecast] Current Listeners count wrong for HTML Audio on Android? Message-ID: <001e01d08534$182584d0$48708e70$@culturalservices.nl> Dear all, The problem I am facing, is that one of my clients is concerned about data usage. My client monitors the current number of listeners in the Mount Point list streams.greenhost.nl:8080. The case is, when I start a stream from an HTML app on an Android device, I can see two listeners being added to "Current Listeners". This peculiar behaviour only occurs on Android, not on laptops or iPhones. The code I use concerns a simple HTML Audio object: var audioObj = new Audio(); audioObj.src = aValidMountpoint; audioObj.play(); I tested these lines and it appears that for Android a "Current Listener" is added on both the second and the third line. I can't imagine there really are two streams streaming at the same time, as it is only one object that arranges this. Is this a known issue? Any workaround or any way to prove my client that there is only one stream playing? Regards, Klaas van der Linden -------------- next part -------------- An HTML attachment was scrubbed... URL: From brad at audiopump.co Sun May 3 00:46:08 2015 From: brad at audiopump.co (Brad Isbell) Date: Sat, 2 May 2015 19:46:08 -0500 Subject: [Icecast] Current Listeners count wrong for HTML Audio on Android? In-Reply-To: <001e01d08534$182584d0$48708e70$@culturalservices.nl> References: <001e01d08534$182584d0$48708e70$@culturalservices.nl> Message-ID: Klaas, You will find that there often are multiple connections, particularly for HTML5 audio elements in WebKit browsers as they probe to see if the media is seekable or not. The multiple connections die out soon after starting though, leaving you one connection for actually streaming the audio. You can verify this yourself with a packet sniffer such as Wireshark. It wouldn't hurt to double check to make sure your application isn't really using all that data. *Brad Isbell // AudioPump, Inc.* brad at audiopump.co Skype: bradisbell Phone: +1 312-488-4680 On Sat, May 2, 2015 at 6:59 PM, Klaas van der Linden < vanderlinden at culturalservices.nl> wrote: > Dear all, > > The problem I am facing, is that one of my clients is concerned about data > usage. > > My client monitors the current number of listeners in the Mount Point > list streams.greenhost.nl:8080. > > > > The case is, when I start a stream from an HTML app on an Android device, > I can see two listeners being added to ?Current Listeners?. This peculiar > behaviour only occurs on Android, not on laptops or iPhones. > > > > The code I use concerns a simple HTML Audio object: > > var audioObj = new Audio(); > > audioObj.src = aValidMountpoint; > > audioObj.play(); > > > > I tested these lines and it appears that for Android a ?Current Listener? > is added on both the second and the third line. > > > > I can?t imagine there really are two streams streaming at the same time, > as it is only one object that arranges this. > > > > Is this a known issue? Any workaround or any way to prove my client that > there is only one stream playing? > > > > Regards, > > > > Klaas van der Linden > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vanderlinden at culturalservices.nl Tue May 5 01:10:55 2015 From: vanderlinden at culturalservices.nl (Klaas van der Linden) Date: Tue, 5 May 2015 03:10:55 +0200 Subject: [Icecast] Current Listeners count wrong for HTML Audio on Android? In-Reply-To: References: <001e01d08534$182584d0$48708e70$@culturalservices.nl> Message-ID: <000c01d086d0$56d16f30$04744d90$@culturalservices.nl> Thanks for this information, but the two connections do not die out when using my player in the Android browser. In fact they even stay when the Audio.src is set to some invalid string. You can observe this here: http://concertzender.nl/wp-content/themes/cz-theme/App/test/ , by clicking one of the large icons - and then monitor the corresponding stream here: http://streams.greenhost.nl:8080/ (The player doesn?t work on safari (windows/mac) or firefox, probably because mp3 is not supported they fail to register the ?canplay? event or something like that ? I?m not sure. I got it to work on IE, Opera, Chrome and iPhone Safari and on Android.) Any suggestions as to how to debug this? From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Brad Isbell Sent: zondag 3 mei 2015 2:46 To: Icecast streaming server user discussions Subject: Re: [Icecast] Current Listeners count wrong for HTML Audio on Android? Klaas, You will find that there often are multiple connections, particularly for HTML5 audio elements in WebKit browsers as they probe to see if the media is seekable or not. The multiple connections die out soon after starting though, leaving you one connection for actually streaming the audio. You can verify this yourself with a packet sniffer such as Wireshark. It wouldn't hurt to double check to make sure your application isn't really using all that data. Brad Isbell // AudioPump, Inc. brad at audiopump.co Skype: bradisbell Phone: +1 312-488-4680 On Sat, May 2, 2015 at 6:59 PM, Klaas van der Linden wrote: Dear all, The problem I am facing, is that one of my clients is concerned about data usage. My client monitors the current number of listeners in the Mount Point list streams.greenhost.nl:8080. The case is, when I start a stream from an HTML app on an Android device, I can see two listeners being added to ?Current Listeners?. This peculiar behaviour only occurs on Android, not on laptops or iPhones. The code I use concerns a simple HTML Audio object: var audioObj = new Audio(); audioObj.src = aValidMountpoint; audioObj.play(); I tested these lines and it appears that for Android a ?Current Listener? is added on both the second and the third line. I can?t imagine there really are two streams streaming at the same time, as it is only one object that arranges this. Is this a known issue? Any workaround or any way to prove my client that there is only one stream playing? Regards, Klaas van der Linden _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast -------------- next part -------------- An HTML attachment was scrubbed... URL: From 0turn1 at gmail.com Tue May 5 07:41:29 2015 From: 0turn1 at gmail.com (Scott Winters) Date: Tue, 5 May 2015 09:41:29 +0200 Subject: [Icecast] Current Listeners count wrong for HTML Audio on Android? In-Reply-To: <000c01d086d0$56d16f30$04744d90$@culturalservices.nl> References: <001e01d08534$182584d0$48708e70$@culturalservices.nl> <000c01d086d0$56d16f30$04744d90$@culturalservices.nl> Message-ID: Hello I always have had best results encoding the stream .mp3 it works on all devices. I also suggest the source to be the same or better than your stream.. this saves in many areas. it sounds like you are possibly debugging a time lapsed source/ stream.. i did not read all so if this is not so i apologize On May 5, 2015 3:11 AM, "Klaas van der Linden" < vanderlinden at culturalservices.nl> wrote: > Thanks for this information, but the two connections do not die out when > using my player in the Android browser. In fact they even stay when the > Audio.src is set to some invalid string. > > > > You can observe this here: > http://concertzender.nl/wp-content/themes/cz-theme/App/test/ , by > clicking one of the large icons - and then monitor the corresponding stream > here: http://streams.greenhost.nl:8080/ > > > > (The player doesn?t work on safari (windows/mac) or firefox, probably > because mp3 is not supported they fail to register the ?canplay? event or > something like that ? I?m not sure. I got it to work on IE, Opera, Chrome > and iPhone Safari and on Android.) > > > > Any suggestions as to how to debug this? > > > > > > *From:* icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] *On > Behalf Of *Brad Isbell > *Sent:* zondag 3 mei 2015 2:46 > *To:* Icecast streaming server user discussions > *Subject:* Re: [Icecast] Current Listeners count wrong for HTML Audio on > Android? > > > > Klaas, > > You will find that there often are multiple connections, particularly for > HTML5 audio elements in WebKit browsers as they probe to see if the media > is seekable or not. The multiple connections die out soon after starting > though, leaving you one connection for actually streaming the audio. > > > > You can verify this yourself with a packet sniffer such as Wireshark. It > wouldn't hurt to double check to make sure your application isn't really > using all that data. > > > *Brad Isbell // AudioPump, Inc.* > brad at audiopump.co > Skype: bradisbell > Phone: +1 312-488-4680 > > > > On Sat, May 2, 2015 at 6:59 PM, Klaas van der Linden < > vanderlinden at culturalservices.nl> wrote: > > Dear all, > > The problem I am facing, is that one of my clients is concerned about data > usage. > > My client monitors the current number of listeners in the Mount Point > list streams.greenhost.nl:8080. > > > > The case is, when I start a stream from an HTML app on an Android device, > I can see two listeners being added to ?Current Listeners?. This peculiar > behaviour only occurs on Android, not on laptops or iPhones. > > > > The code I use concerns a simple HTML Audio object: > > var audioObj = new Audio(); > > audioObj.src = aValidMountpoint; > > audioObj.play(); > > > > I tested these lines and it appears that for Android a ?Current Listener? > is added on both the second and the third line. > > > > I can?t imagine there really are two streams streaming at the same time, > as it is only one object that arranges this. > > > > Is this a known issue? Any workaround or any way to prove my client that > there is only one stream playing? > > > > Regards, > > > > Klaas van der Linden > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vanderlinden at culturalservices.nl Tue May 5 10:47:17 2015 From: vanderlinden at culturalservices.nl (Klaas van der Linden) Date: Tue, 5 May 2015 12:47:17 +0200 Subject: [Icecast] Current Listeners count wrong for HTML Audio on Android? In-Reply-To: References: <001e01d08534$182584d0$48708e70$@culturalservices.nl> <000c01d086d0$56d16f30$04744d90$@culturalservices.nl> Message-ID: <36DE256B-60BA-45D4-AC02-82D72624D8D6@culturalservices.nl> Thanks, but I have no control over the streams. And I don't mind the mp3's not playing on Firefox or non-mobile Safari, as the app is supposed to play on android and iphone/ipad only. It's all about the two listeners being registered/two streams being opened when playing on Android. I don't know about time-lapsed sources/streams. How could I find out this is the case? Regards, Klaas > On 05 May 2015, at 09:41, Scott Winters <0turn1 at gmail.com> wrote: > > Hello > > I always have had best results encoding the stream .mp3 it works on all devices. I also suggest the source to be the same or better than your stream.. this saves in many areas. it sounds like you are possibly debugging a time lapsed source/ stream.. i did not read all so if this is not so i apologize > >> On May 5, 2015 3:11 AM, "Klaas van der Linden" wrote: >> Thanks for this information, but the two connections do not die out when using my player in the Android browser. In fact they even stay when the Audio.src is set to some invalid string. >> >> >> >> You can observe this here: http://concertzender.nl/wp-content/themes/cz-theme/App/test/ , by clicking one of the large icons - and then monitor the corresponding stream here: http://streams.greenhost.nl:8080/ >> >> >> >> (The player doesn?t work on safari (windows/mac) or firefox, probably because mp3 is not supported they fail to register the ?canplay? event or something like that ? I?m not sure. I got it to work on IE, Opera, Chrome and iPhone Safari and on Android.) >> >> >> >> Any suggestions as to how to debug this? >> >> >> >> >> >> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Brad Isbell >> Sent: zondag 3 mei 2015 2:46 >> To: Icecast streaming server user discussions >> Subject: Re: [Icecast] Current Listeners count wrong for HTML Audio on Android? >> >> >> >> Klaas, >> >> You will find that there often are multiple connections, particularly for HTML5 audio elements in WebKit browsers as they probe to see if the media is seekable or not. The multiple connections die out soon after starting though, leaving you one connection for actually streaming the audio. >> >> >> >> You can verify this yourself with a packet sniffer such as Wireshark. It wouldn't hurt to double check to make sure your application isn't really using all that data. >> >> >> >> >> >> Brad Isbell // AudioPump, Inc. >> brad at audiopump.co >> Skype: bradisbell >> Phone: +1 312-488-4680 >> >> >> >> On Sat, May 2, 2015 at 6:59 PM, Klaas van der Linden wrote: >> >> Dear all, >> >> The problem I am facing, is that one of my clients is concerned about data usage. >> >> My client monitors the current number of listeners in the Mount Point list streams.greenhost.nl:8080. >> >> >> >> The case is, when I start a stream from an HTML app on an Android device, I can see two listeners being added to ?Current Listeners?. This peculiar behaviour only occurs on Android, not on laptops or iPhones. >> >> >> >> The code I use concerns a simple HTML Audio object: >> >> var audioObj = new Audio(); >> >> audioObj.src = aValidMountpoint; >> >> audioObj.play(); >> >> >> >> I tested these lines and it appears that for Android a ?Current Listener? is added on both the second and the third line. >> >> >> >> I can?t imagine there really are two streams streaming at the same time, as it is only one object that arranges this. >> >> >> >> Is this a known issue? Any workaround or any way to prove my client that there is only one stream playing? >> >> >> >> Regards, >> >> >> >> Klaas van der Linden >> >> >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast >> >> >> >> >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast -------------- next part -------------- An HTML attachment was scrubbed... URL: From brad at audiopump.co Tue May 5 01:45:17 2015 From: brad at audiopump.co (Brad Isbell) Date: Mon, 4 May 2015 20:45:17 -0500 Subject: [Icecast] Current Listeners count wrong for HTML Audio on Android? In-Reply-To: <000c01d086d0$56d16f30$04744d90$@culturalservices.nl> References: <001e01d08534$182584d0$48708e70$@culturalservices.nl> <000c01d086d0$56d16f30$04744d90$@culturalservices.nl> Message-ID: Klaas, Using Wireshark, I see that two TCP connections are initially made to your streaming server, but one is closed after 10 seconds. The other is used for the actual stream. I suspect that Icecast reports both connections two you, but for the purposes of bandwidth consumption you are probably safe. Do double check with your own devices though, with a packet sniffer. I only tested one device. Browsers vary quite a bit in how they handle media. Thanks, *Brad Isbell // AudioPump, Inc.* brad at audiopump.co Skype: bradisbell Phone: +1 312-488-4680 On Mon, May 4, 2015 at 8:10 PM, Klaas van der Linden < vanderlinden at culturalservices.nl> wrote: > Thanks for this information, but the two connections do not die out when > using my player in the Android browser. In fact they even stay when the > Audio.src is set to some invalid string. > > > > You can observe this here: > http://concertzender.nl/wp-content/themes/cz-theme/App/test/ , by > clicking one of the large icons - and then monitor the corresponding stream > here: http://streams.greenhost.nl:8080/ > > > > (The player doesn?t work on safari (windows/mac) or firefox, probably > because mp3 is not supported they fail to register the ?canplay? event or > something like that ? I?m not sure. I got it to work on IE, Opera, Chrome > and iPhone Safari and on Android.) > > > > Any suggestions as to how to debug this? > > > > > > *From:* icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] *On > Behalf Of *Brad Isbell > *Sent:* zondag 3 mei 2015 2:46 > *To:* Icecast streaming server user discussions > *Subject:* Re: [Icecast] Current Listeners count wrong for HTML Audio on > Android? > > > > Klaas, > > You will find that there often are multiple connections, particularly for > HTML5 audio elements in WebKit browsers as they probe to see if the media > is seekable or not. The multiple connections die out soon after starting > though, leaving you one connection for actually streaming the audio. > > > > You can verify this yourself with a packet sniffer such as Wireshark. It > wouldn't hurt to double check to make sure your application isn't really > using all that data. > > > *Brad Isbell // AudioPump, Inc.* > brad at audiopump.co > Skype: bradisbell > Phone: +1 312-488-4680 > > > > On Sat, May 2, 2015 at 6:59 PM, Klaas van der Linden < > vanderlinden at culturalservices.nl> wrote: > > Dear all, > > The problem I am facing, is that one of my clients is concerned about data > usage. > > My client monitors the current number of listeners in the Mount Point > list streams.greenhost.nl:8080. > > > > The case is, when I start a stream from an HTML app on an Android device, > I can see two listeners being added to ?Current Listeners?. This peculiar > behaviour only occurs on Android, not on laptops or iPhones. > > > > The code I use concerns a simple HTML Audio object: > > var audioObj = new Audio(); > > audioObj.src = aValidMountpoint; > > audioObj.play(); > > > > I tested these lines and it appears that for Android a ?Current Listener? > is added on both the second and the third line. > > > > I can?t imagine there really are two streams streaming at the same time, > as it is only one object that arranges this. > > > > Is this a known issue? Any workaround or any way to prove my client that > there is only one stream playing? > > > > Regards, > > > > Klaas van der Linden > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From karasiov at gmail.com Tue May 12 01:45:48 2015 From: karasiov at gmail.com (karasiov at gmail.com) Date: Mon, 11 May 2015 20:45:48 -0500 Subject: [Icecast] karasiov@gmail.com has indicated you're a friend. Accept? Message-ID: <0.0.10E.33F.1D08C547FC5FA08.36F6@mail2.flipmailer.com> Hi, karasiov at gmail.com wants to follow you. ****** Is karasiov at gmail.com you friend? ****** If Yes please follow the link below: http://invites.flipmailer.com/signup_e.html?fullname=&email=icecast at xiph.org&invitername=Ivan&inviterid=37867437&userid=0&token=0&emailmasterid=5cd76554-a834-4a73-88a1-7a1dc00c15a2&from=karasiov at gmail.com&template=invite_reg_b&src=txt_yes If No please follow the link below: http://invites.flipmailer.com/signup_e.html?fullname=&email=icecast at xiph.org&invitername=Ivan&inviterid=37867437&userid=0&token=0&emailmasterid=5cd76554-a834-4a73-88a1-7a1dc00c15a2&from=karasiov at gmail.com&template=invite_reg_b&src=txt_no Follow the link below to remove yourself from all such emails http://invites.flipmailer.com/uns_inviter.jsp?email=icecast at xiph.org&iid=5cd76554-a834-4a73-88a1-7a1dc00c15a2&from=karasiov at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nkd at 24hourkirtan.fm Tue May 12 06:11:30 2015 From: nkd at 24hourkirtan.fm (Nanda Kishor Dasa) Date: Tue, 12 May 2015 08:11:30 +0200 Subject: [Icecast] Checking for file /7.html Message-ID: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> Hi there, My error log is full of these 2 lines [2015-05-12 08:08:07] INFO fserve/fserve_client_create checking for file /7.html (/usr/share/icecast2/web/7.html) [2015-05-12 08:08:07] WARN fserve/fserve_client_create req for file "/usr/share/icecast2/web/7.html" No such file or directory I have checked the Icecast sources and couldn't find any file named 7.html, so I was wondering why it's looking for it and where to get it? I have installed icecast via Ubuntu package manager apt-get. Cheers Nandakishor -- Founder and Lead Developer 24 Hour Kirtan Radio Bergstrasse 54 8032 Z?rich Switzerland Tune in on http://24hourkirtan.fm 24 Hour Kirtan Radio is a Swiss non-profit organization. From hstanford1 at gmail.com Tue May 12 06:35:00 2015 From: hstanford1 at gmail.com (Holden Stanford) Date: Tue, 12 May 2015 01:35:00 -0500 Subject: [Icecast] Checking for file /7.html In-Reply-To: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> Message-ID: 7.html is a ShoutCast metadata file did you have a previous ShoutCast installation or setup a relay between IceCast and ShoutCast stream? On May 12, 2015 1:11 AM, "Nanda Kishor Dasa" wrote: > Hi there, > > My error log is full of these 2 lines > > [2015-05-12 08:08:07] INFO fserve/fserve_client_create checking for > file /7.html (/usr/share/icecast2/web/7.html) > [2015-05-12 08:08:07] WARN fserve/fserve_client_create req for file > "/usr/share/icecast2/web/7.html" No such file or directory > > I have checked the Icecast sources and couldn't find any file named > 7.html, so I was wondering why it's looking for it and where to get it? > > I have installed icecast via Ubuntu package manager apt-get. > > Cheers > Nandakishor > -- > Founder and Lead Developer > 24 Hour Kirtan Radio > Bergstrasse 54 > 8032 Z?rich > Switzerland > > Tune in on http://24hourkirtan.fm > 24 Hour Kirtan Radio is a Swiss non-profit organization. > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > -------------- next part -------------- An HTML attachment was scrubbed... URL: From geoff at QuiteLikely.com Tue May 12 20:15:40 2015 From: geoff at QuiteLikely.com (Geoff Shang) Date: Tue, 12 May 2015 23:15:40 +0300 (IDT) Subject: [Icecast] Checking for file /7.html In-Reply-To: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> Message-ID: On Tue, 12 May 2015, Nanda Kishor Dasa wrote: > My error log is full of these 2 lines > > [2015-05-12 08:08:07] INFO fserve/fserve_client_create checking for > file /7.html (/usr/share/icecast2/web/7.html) > [2015-05-12 08:08:07] WARN fserve/fserve_client_create req for file > "/usr/share/icecast2/web/7.html" No such file or directory As has been mentioned, 7.html is a standard stats file produced by Shoutcast (at least v1). It's possible to write an XSL template that can do the same, which could be aliased if you have software that needs it. I did this ina previous life. Unfortunately, I don't have convenient access to the hard drive it lives on, otherwise I'd send it. The thing I recall is that the HTML in 7.html is mal-formed. Take this example from the wild, generated by Shoutcast 1.9.8: 33,1,511,1500,32,96, You'll notice several things: 1. There is no opening tag. 2. The opening tag is written but the closing tag is written . A strict HTML parser will complain about these. Worse however is the possibility that a program expecting 7.html may *expect* these defects. There is an XSL stylesheet in the KH tree at https://github.com/karlheyes/icecast-kh/blob/master/web/7.xsl but it uses the HTML output scheme which will lack these defects, and so may not be compatible with some software that expects them. Of course, why Shoutcast decided to present what is obviously meant to be machine-parsable data in HTML is completely beyond me. Icecast's status2.xsl does a better job IMHO, though it still has some tags in it. HTH, Geoff. From jonathancandler_msa at q.com Wed May 13 13:21:12 2015 From: jonathancandler_msa at q.com (Jonathan) Date: Wed, 13 May 2015 06:21:12 -0700 Subject: [Icecast] Regarding edcast with icecast2.4 Message-ID: <55534FC8.3080601@q.com> Hello all. So I just thought I would come in here and ask you all a couple of questions regarding edcast. First off let me tell you my situation. I am managing a radio station and my icecast server the way I have it set up the source of which the broadcaster connects to has to have a username and password for a mount point that is being passed through the server. Basically these are all mountpoint level security settings. The problem that I'm seeing here is edcast does not allow a source username to be passed through. So in my mount section I do have a source username and a source password set. It goes something like this. hackme password>hackmemore If you all would like the .xml file let me know as I'm not going to do it right now, but would I just either delete the "" field, or just put it as stated above in surrounding quotes so that edcast will work happy with at least the source password that I set for such said mountpoint? From geoff at QuiteLikely.com Wed May 13 13:30:51 2015 From: geoff at QuiteLikely.com (Geoff Shang) Date: Wed, 13 May 2015 16:30:51 +0300 (IDT) Subject: [Icecast] Regarding edcast with icecast2.4 In-Reply-To: <55534FC8.3080601@q.com> References: <55534FC8.3080601@q.com> Message-ID: On Wed, 13 May 2015, Jonathan wrote: > First off let me tell you my situation. I am managing a radio station > and my icecast server the way I have it set up the source of which the > broadcaster connects to has to have a username and password for a mount > point that is being passed through the server. Basically these are all > mountpoint level security settings. The problem that I'm seeing here is > edcast does not allow a source username to be passed through. Either delete the username or comment it out like so: This will use the default username (which I believe is source), which Edcast should use. Geoff. From jonathancandler_msa at q.com Wed May 13 14:04:05 2015 From: jonathancandler_msa at q.com (Jonathan) Date: Wed, 13 May 2015 07:04:05 -0700 Subject: [Icecast] Regarding edcast with icecast2.4 In-Reply-To: References: <55534FC8.3080601@q.com> Message-ID: <555359D5.5040004@q.com> ah KK, that's what I thought but I wasn't t sure. On 5/13/2015 6:30 AM, Geoff Shang wrote: > On Wed, 13 May 2015, Jonathan wrote: > >> First off let me tell you my situation. I am managing a radio station >> and my icecast server the way I have it set up the source of which the >> broadcaster connects to has to have a username and password for a mount >> point that is being passed through the server. Basically these are all >> mountpoint level security settings. The problem that I'm seeing here is >> edcast does not allow a source username to be passed through. > Either delete the username or comment it out like so: > > > > This will use the default username (which I believe is source), which > Edcast should use. > > Geoff. > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast From un at aporee.org Wed May 13 15:58:26 2015 From: un at aporee.org (uno) Date: Wed, 13 May 2015 17:58:26 +0200 Subject: [Icecast] Regarding edcast with icecast2.4 In-Reply-To: References: <55534FC8.3080601@q.com> Message-ID: <20150513155826.GA4715@aporee.org> Geoff Shang: > On Wed, 13 May 2015, Jonathan wrote: > > mountpoint level security settings. The problem that I'm seeing here is > > edcast does not allow a source username to be passed through. > > Either delete the username or comment it out like so: > slightly OT, but you could also consider to use butt: http://butt.sourceforge.net/ i like(d) edcast, but it seems rather dead in terms of development. --u From nkd at 24hourkirtan.fm Wed May 13 20:27:06 2015 From: nkd at 24hourkirtan.fm (Nanda Kishor Dasa) Date: Wed, 13 May 2015 22:27:06 +0200 Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> Message-ID: <5145d8dd92493e4afe355b7abbae6be2@24hourkirtan.fm> On 12/05/2015 08:35, Holden Stanford wrote: > 7.html is a ShoutCast metadata file did you have a previous ShoutCast > installation or setup a relay between IceCast and ShoutCast stream? I was on ShoutCast before, but on the new server I never installed it nor did I relay anything. Very strange. Cheers, NKd From nkd at 24hourkirtan.fm Wed May 13 20:30:17 2015 From: nkd at 24hourkirtan.fm (Nanda Kishor Dasa) Date: Wed, 13 May 2015 22:30:17 +0200 Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> Message-ID: <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> On 12/05/2015 22:15, Geoff Shang wrote: > As has been mentioned, 7.html is a standard stats file produced by > Shoutcast (at least v1). > > It's possible to write an XSL template that can do the same, which > could > be aliased if you have software that needs it. I did this ina > previous > life. Unfortunately, I don't have convenient access to the hard drive > it > lives on, otherwise I'd send it. > > The thing I recall is that the HTML in 7.html is mal-formed. Take this > example from the wild, generated by Shoutcast 1.9.8: > > content="no-cache">33,1,511,1500,32,96, > > You'll notice several things: > > 1. There is no opening tag. > > 2. The opening tag is written but the closing tag is written > . > > A strict HTML parser will complain about these. > > Worse however is the possibility that a program expecting 7.html may > *expect* these defects. There is an XSL stylesheet in the KH tree at > https://github.com/karlheyes/icecast-kh/blob/master/web/7.xsl but it > uses > the HTML output scheme which will lack these defects, and so may not be > compatible with some software that expects them. > > Of course, why Shoutcast decided to present what is obviously meant to > be > machine-parsable data in HTML is completely beyond me. Icecast's > status2.xsl does a better job IMHO, though it still has some tags in > it. Thanks for the elaborations, but it still does not make sense to me that this shows up in the Icecast log, does it? The old Shoutcast server has been shut down 2 weeks ago. Cheers, NKd From jerickson at logicalnetworking.net Wed May 13 20:35:27 2015 From: jerickson at logicalnetworking.net (Jordan Erickson) Date: Wed, 13 May 2015 13:35:27 -0700 Subject: [Icecast] Checking for file /7.html In-Reply-To: <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: <5553B58F.5020605@logicalnetworking.net> Thanks for the elaborations, but it still does not make sense to me that this shows up in the Icecast log, does it? The old Shoutcast server has been shut down 2 weeks ago. Clients are still trying to get to that file for some reason. Your log says the file isn't there, so I'd just disregard it. Or am I missing something else? Cheers, Jordan From geoff at QuiteLikely.com Wed May 13 20:50:39 2015 From: geoff at QuiteLikely.com (Geoff Shang) Date: Wed, 13 May 2015 23:50:39 +0300 (IDT) Subject: [Icecast] Checking for file /7.html In-Reply-To: <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: On Wed, 13 May 2015, Nanda Kishor Dasa wrote: > Thanks for the elaborations, but it still does not make sense to me that > this shows up in the Icecast log, does it? The old Shoutcast server has > been shut down 2 weeks ago. It's showing up because something, probably your source client, is looking for it. Icecast2 is receiving a request for this file and is logging it. HTH, Geoff. From geoff at QuiteLikely.com Wed May 13 20:52:59 2015 From: geoff at QuiteLikely.com (Geoff Shang) Date: Wed, 13 May 2015 23:52:59 +0300 (IDT) Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: On Wed, 13 May 2015, Geoff Shang wrote: > It's showing up because something, probably your source client, is looking > for it. Icecast2 is receiving a request for this file and is logging it. A thought. Is this stream being sourced in Shoutcast-compatibility mode? If your source can do Icecast2 native streaming, you may want to do this and this may go away, depending on your source client. Geoff. From yahav.shasha at gmail.com Wed May 13 22:00:43 2015 From: yahav.shasha at gmail.com (Yahav Shasha) Date: Thu, 14 May 2015 01:00:43 +0300 Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: Its more likely to be some shoutcast player or any kind of script that request the file, sources don't usually request the status file. Try looking for the refer at the access log (if icecast logs 404 requests that is) to determinate the request origin, shouldn't be an hassle. ?????? 13 ???? 2015 23:53,? "Geoff Shang" ???: > On Wed, 13 May 2015, Geoff Shang wrote: > > > It's showing up because something, probably your source client, is > looking > > for it. Icecast2 is receiving a request for this file and is logging it. > > A thought. Is this stream being sourced in Shoutcast-compatibility mode? > If your source can do Icecast2 native streaming, you may want to do this > and this may go away, depending on your source client. > > Geoff. > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ross at stationplaylist.com Thu May 14 01:37:18 2015 From: ross at stationplaylist.com (Ross Levis) Date: Thu, 14 May 2015 13:37:18 +1200 Subject: [Icecast] Regarding edcast with icecast2.4 In-Reply-To: <20150513155826.GA4715@aporee.org> References: <55534FC8.3080601@q.com> <20150513155826.GA4715@aporee.org> Message-ID: <006301d08de6$8544d6a0$8fce83e0$@com> Am I correct that Butt only supports encoding 1 stream? Unlikely Edcast which supports multiple streams at different bitrates or codecs. -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of uno Sent: Thursday, 14 May 2015 3:58 a.m. To: icecast at xiph.org Subject: Re: [Icecast] Regarding edcast with icecast2.4 Geoff Shang: > On Wed, 13 May 2015, Jonathan wrote: > > mountpoint level security settings. The problem that I'm seeing here > > is edcast does not allow a source username to be passed through. > > Either delete the username or comment it out like so: > slightly OT, but you could also consider to use butt: http://butt.sourceforge.net/ i like(d) edcast, but it seems rather dead in terms of development. --u _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From nkd at 24hourkirtan.fm Thu May 14 08:04:03 2015 From: nkd at 24hourkirtan.fm (Nanda Kishor Dasa) Date: Thu, 14 May 2015 10:04:03 +0200 Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: On 14/05/2015 00:00, Yahav Shasha wrote: > Its more likely to be some shoutcast player or any kind of script that > request the file, sources don't usually request the status file. Try > looking for the refer at the access log (if icecast logs 404 requests > that is) to determinate the request origin, shouldn't be an hassle. Makes sense. If the Icecast log would also log the IP address it would be easier to say if this is our own player or someone elses. Of course I could just ignore it, but it's so prominent in the error log that it is sort of irritating. It might also be that some service we use assume we're using ShoutCast and want to extract "now playing" title and artist information. So maybe it would even make "sense" to provide the 7.html file in the expected format? Cheers, NKd From nkd at 24hourkirtan.fm Thu May 14 08:07:50 2015 From: nkd at 24hourkirtan.fm (Nanda Kishor Dasa) Date: Thu, 14 May 2015 10:07:50 +0200 Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: On 13/05/2015 22:52, Geoff Shang wrote: > A thought. Is this stream being sourced in Shoutcast-compatibility > mode? > If your source can do Icecast2 native streaming, you may want to do > this > and this may go away, depending on your source client. The shoutcast-mount node is commented out in icecast.xml, so I don't think so. Cheers, NKd From epirat07 at gmail.com Thu May 14 08:20:51 2015 From: epirat07 at gmail.com (Marvin Scholz) Date: Thu, 14 May 2015 10:20:51 +0200 Subject: [Icecast] Checking for file /7.html In-Reply-To: References: <36f820c26dd84be55feae4dbe87ee0d9@24hourkirtan.fm> <428f44d35423df437ff0941a195bc088@24hourkirtan.fm> Message-ID: <50BA1224-50DC-4009-94A6-94EDF6AF01B7@gmail.com> On 14 May 2015, at 10:04, Nanda Kishor Dasa wrote: > On 14/05/2015 00:00, Yahav Shasha wrote: >> Its more likely to be some shoutcast player or any kind of script >> that >> request the file, sources don't usually request the status file. Try >> looking for the refer at the access log (if icecast logs 404 requests >> that is) to determinate the request origin, shouldn't be an hassle. > > Makes sense. If the Icecast log would also log the IP address it would > be easier to say if this is our own player or someone elses. Icecast does log the IP address in the access.log (look out for request that caused 404) > Of course I could just ignore it, but it's so prominent in the error > log > that it is sort of irritating. Well it is not really an error, it just means that the file is not found, nothing more. It is not expected to be there. > It might also be that some service we use assume we're using ShoutCast > and want to extract "now playing" title and artist information. So > maybe > it would even make "sense" to provide the 7.html file in the expected > format? It does not. New Icecast versions have the JSON version exactly for this purpose and the 7.html is a horribly broken format, which is really crap. What services could that be that try to access that file? Maybe you can check this in access log as there is the IP of the client logged that tried to access the file. > Cheers, > NKd > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast From thatjackelliott at kpov.org Thu May 14 15:42:46 2015 From: thatjackelliott at kpov.org (Jack Elliott 541 848 7021) Date: Thu, 14 May 2015 08:42:46 -0700 Subject: [Icecast] Icecast install under Windows Message-ID: <5554C276.5080106@kpov.org> Windows 7, Icecast 2.4.1 Installer downloaded from http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe Referring to http://en.flossmanuals.net/icecast/windows/ The installation process goes as described, but doesn't offer the "Create a desktop icon" option. Nor am I offered the option to "Install Icecast as a Windows service" as shown. I can't "start Icecast by clicking on the handy icon" because of no icon. Because of that, I can't start the final window as shown on the document. (Start server, etc.) I tried installing Icecast twice, same results. -- that Jack Elliott 541 848 7021 Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High Desert Radio Audio geek From ross at stationplaylist.com Thu May 14 16:21:41 2015 From: ross at stationplaylist.com (Ross Levis) Date: Fri, 15 May 2015 04:21:41 +1200 Subject: [Icecast] Icecast install under Windows In-Reply-To: <5554C276.5080106@kpov.org> References: <5554C276.5080106@kpov.org> Message-ID: <00a701d08e62$1127bae0$337730a0$@com> Most if not all of the developers don't use the operating system 90% of the population use and don't really care. It works on Linux. I too would like to see a proper GUI with proper installers. It would get a lot more users that way. -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Jack Elliott 541 848 7021 Sent: Friday, 15 May 2015 3:43 a.m. To: icecast at xiph.org Subject: [Icecast] Icecast install under Windows Windows 7, Icecast 2.4.1 Installer downloaded from http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe Referring to http://en.flossmanuals.net/icecast/windows/ The installation process goes as described, but doesn't offer the "Create a desktop icon" option. Nor am I offered the option to "Install Icecast as a Windows service" as shown. I can't "start Icecast by clicking on the handy icon" because of no icon. Because of that, I can't start the final window as shown on the document. (Start server, etc.) I tried installing Icecast twice, same results. -- that Jack Elliott 541 848 7021 Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High Desert Radio Audio geek _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From thatjackelliott at kpov.org Thu May 14 16:36:38 2015 From: thatjackelliott at kpov.org (Jack Elliott 541 848 7021) Date: Thu, 14 May 2015 09:36:38 -0700 Subject: [Icecast] Icecast install under Windows In-Reply-To: <00a701d08e62$1127bae0$337730a0$@com> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> Message-ID: <5554CF16.8050702@kpov.org> Oh dear. Okay, can anyone suggest how to install Icecast under Windows as a service, and to be able to bring up some kind of console to start/stop it? I can launch Icecast using the installed .bat file, but it's clunky. -- that Jack Elliott 541 848 7021 Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High Desert Radio Audio geek On 05/14/2015 09:21 AM, Ross Levis wrote: > Most if not all of the developers don't use the operating system 90% > of the population use and don't really care. It works on Linux. > > I too would like to see a proper GUI with proper installers. It would get a > lot more users that way. > > -----Original Message----- > From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf > Of Jack Elliott 541 848 7021 > Sent: Friday, 15 May 2015 3:43 a.m. > To: icecast at xiph.org > Subject: [Icecast] Icecast install under Windows > > Windows 7, Icecast 2.4.1 > > Installer downloaded from > http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe > > Referring to http://en.flossmanuals.net/icecast/windows/ > > The installation process goes as described, but doesn't offer the "Create a > desktop icon" option. > > Nor am I offered the option to "Install Icecast as a Windows service" as > shown. > > I can't "start Icecast by clicking on the handy icon" because of no icon. > Because of that, I can't start the final window as shown on the document. > (Start server, etc.) > > I tried installing Icecast twice, same results. > > -- > that Jack Elliott > 541 848 7021 > Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High Desert > Radio Audio geek > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast > > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast From epirat07 at gmail.com Thu May 14 17:07:57 2015 From: epirat07 at gmail.com (Marvin Scholz) Date: Thu, 14 May 2015 19:07:57 +0200 Subject: [Icecast] Icecast install under Windows In-Reply-To: <5554CF16.8050702@kpov.org> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> Message-ID: On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: > Oh dear. > > Okay, can anyone suggest how to install Icecast under Windows as a > service, and to be able to bring up some kind of console to start/stop > it? I just wrote a Wiki page detailing how to install Icecast as service using NSSM, you can find it here http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service > I can launch Icecast using the installed .bat file, but it's clunky. > > -- > that Jack Elliott > 541 848 7021 > Producer Wednesday Point, Host, The Sunday Classics > KPOV 88.9, High Desert Radio > Audio geek > > On 05/14/2015 09:21 AM, Ross Levis wrote: >> Most if not all of the developers don't use the operating >> system 90% >> of the population use and don't really care. It works on >> Linux. Well it is not that we ignore Windows, but most servers are running Linux and we have to choose some priorities, given that we never got much feedback from windows users and we are just very few developers, a Windows Service was not one of the top priorities. But we will investigate re-adding this functionality. >> I too would like to see a proper GUI with proper installers. It would >> get a >> lot more users that way. >> >> -----Original Message----- >> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >> Behalf >> Of Jack Elliott 541 848 7021 >> Sent: Friday, 15 May 2015 3:43 a.m. >> To: icecast at xiph.org >> Subject: [Icecast] Icecast install under Windows >> >> Windows 7, Icecast 2.4.1 >> >> Installer downloaded from >> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >> >> Referring to http://en.flossmanuals.net/icecast/windows/ >> >> The installation process goes as described, but doesn't offer the >> "Create a >> desktop icon" option. >> >> Nor am I offered the option to "Install Icecast as a Windows service" >> as >> shown. >> >> I can't "start Icecast by clicking on the handy icon" because of no >> icon. >> Because of that, I can't start the final window as shown on the >> document. >> (Start server, etc.) >> >> I tried installing Icecast twice, same results. >> >> -- >> that Jack Elliott >> 541 848 7021 >> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >> Desert >> Radio Audio geek >> >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast >> >> >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast From thatjackelliott at kpov.org Thu May 14 18:40:04 2015 From: thatjackelliott at kpov.org (that Jack Elliott) Date: Thu, 14 May 2015 11:40:04 -0700 Subject: [Icecast] Icecast install under Windows In-Reply-To: References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> Message-ID: <5554EC04.6090307@kpov.org> On 05/14/2015 09:21 AM, Ross Levis wrote: >>> Most if not all of the developers don't use the operating >>> system 90% >>> of the population use and don't really care. It works on >>> Linux. > Well it is not that we ignore Windows, but most servers are running > Linux and we have to choose > some priorities, given that we never got much feedback from windows > users and we are just very few > developers, a Windows Service was not one of the top priorities. > But we will investigate re-adding this functionality. Fair enough. Perhaps in the meantime the Windows install doc could be revised to reflect how installing and launching Icecast presently works? From epirat07 at gmail.com Thu May 14 18:56:24 2015 From: epirat07 at gmail.com (Marvin Scholz) Date: Thu, 14 May 2015 20:56:24 +0200 Subject: [Icecast] Icecast install under Windows In-Reply-To: <5554EC04.6090307@kpov.org> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EC04.6090307@kpov.org> Message-ID: On 14 May 2015, at 20:40, that Jack Elliott wrote: > > > On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% >>>> of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose >> some priorities, given that we never got much feedback from windows >> users and we are just very few >> developers, a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. > > Fair enough. Perhaps in the meantime the Windows install doc could be > revised to reflect how installing and launching Icecast presently > works? The flossmanual you linked was not written by us and is not maintained by us. I will have to see if and how it is possible to update this. > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast From thatjackelliott at kpov.org Thu May 14 18:56:34 2015 From: thatjackelliott at kpov.org (that Jack Elliott) Date: Thu, 14 May 2015 11:56:34 -0700 Subject: [Icecast] Icecast install under Windows In-Reply-To: References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> Message-ID: <5554EFE2.7050305@kpov.org> Hi Marvin, I followed the wiki instructions and they went w/o any issues until C:\Users\username> nssm start Icecast Can't open service! OpenService(): Access is denied! Probably a good idea to mention that the command window needs to be Run as administrator. Then it works. Many thanks! -- Jack Elliott On 5/14/2015 10:07 AM, Marvin Scholz wrote: > On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: > >> Oh dear. >> >> Okay, can anyone suggest how to install Icecast under Windows as a >> service, and to be able to bring up some kind of console to start/stop >> it? > I just wrote a Wiki page detailing how to install Icecast as service > using NSSM, you can > find it here http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service > >> I can launch Icecast using the installed .bat file, but it's clunky. >> >> -- >> that Jack Elliott >> 541 848 7021 >> Producer Wednesday Point, Host, The Sunday Classics >> KPOV 88.9, High Desert Radio >> Audio geek >> >> On 05/14/2015 09:21 AM, Ross Levis wrote: >>> Most if not all of the developers don't use the operating >>> system 90% >>> of the population use and don't really care. It works on >>> Linux. > Well it is not that we ignore Windows, but most servers are running > Linux and we have to choose > some priorities, given that we never got much feedback from windows > users and we are just very few > developers, a Windows Service was not one of the top priorities. > But we will investigate re-adding this functionality. > >>> I too would like to see a proper GUI with proper installers. It would >>> get a >>> lot more users that way. >>> >>> -----Original Message----- >>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>> Behalf >>> Of Jack Elliott 541 848 7021 >>> Sent: Friday, 15 May 2015 3:43 a.m. >>> To: icecast at xiph.org >>> Subject: [Icecast] Icecast install under Windows >>> >>> Windows 7, Icecast 2.4.1 >>> >>> Installer downloaded from >>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>> >>> Referring to http://en.flossmanuals.net/icecast/windows/ >>> >>> The installation process goes as described, but doesn't offer the >>> "Create a >>> desktop icon" option. >>> >>> Nor am I offered the option to "Install Icecast as a Windows service" >>> as >>> shown. >>> >>> I can't "start Icecast by clicking on the handy icon" because of no >>> icon. >>> Because of that, I can't start the final window as shown on the >>> document. >>> (Start server, etc.) >>> >>> I tried installing Icecast twice, same results. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>> Desert >>> Radio Audio geek >>> >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >>> >>> >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast -------------- next part -------------- An HTML attachment was scrubbed... URL: From sm at noisynotes.com Thu May 14 20:44:03 2015 From: sm at noisynotes.com (Steve Matzura) Date: Thu, 14 May 2015 16:44:03 -0400 Subject: [Icecast] Errors when streaming with EZStream Message-ID: I get a mail message when certain files are streamed with EZStream. The mail messages consist of several copies of the following two lines: TagLib: String::copyFromUTF8() - Unicode conversion error. TagLib: ID3v2.4 no longer supports the frame type TDA. It will be discarded from the tag. How should the files be tagged to prevent these informational warnings and thus the mail messages? From epirat07 at gmail.com Thu May 14 20:46:27 2015 From: epirat07 at gmail.com (Marvin Scholz) Date: Thu, 14 May 2015 22:46:27 +0200 Subject: [Icecast] Icecast install under Windows In-Reply-To: <5554EFE2.7050305@kpov.org> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org> Message-ID: On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop >>> it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can >> find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics >>> KPOV 88.9, High Desert Radio >>> Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% >>>> of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose >> some priorities, given that we never got much feedback from windows >> users and we are just very few >> developers, a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would >>>> get a >>>> lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf >>>> Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a >>>> desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert >>>> Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast From delimbaugh21 at students.tntech.edu Thu May 21 13:55:15 2015 From: delimbaugh21 at students.tntech.edu (Donald E Limbaugh) Date: Thu, 21 May 2015 13:55:15 +0000 Subject: [Icecast] Icecast install under Windows In-Reply-To: References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org>, Message-ID: <1432216513015.95229@students.tntech.edu> Ok. I installed icecast win_32 2.4.1 with no problem. The problems arrive when I try changing things... Why are the folders for icecast write protected? I made changes to the icecast.xml file & tried saving it, but got errors saying the file is read only! Then, I scanned the sub-folders in the download folder & found another icecast.xml file! I couldn't make changes that either! I found a sleezy work-a-round: save the file as a different name in a different folder then copy it to the icecast folder, then delete the original file & rename the modified file to icecast.xml. Next: When looking at the icecast.xml, what does the IP address do? The default is http://127.0.0.1. Do I change this to match the IP address of the machine that is providing the stream source? Thanks in advance for any help!! ________________________________________ From: icecast-bounces at xiph.org on behalf of Marvin Scholz Sent: Thursday, May 14, 2015 2:46 PM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop >>> it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can >> find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics >>> KPOV 88.9, High Desert Radio >>> Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% >>>> of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose >> some priorities, given that we never got much feedback from windows >> users and we are just very few >> developers, a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would >>>> get a >>>> lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf >>>> Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a >>>> desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert >>>> Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From sindjui at sibopa.com Thu May 21 23:58:40 2015 From: sindjui at sibopa.com (Albert Sindjui) Date: Thu, 21 May 2015 19:58:40 -0400 Subject: [Icecast] Icecast install under Windows In-Reply-To: <1432216513015.95229@students.tntech.edu> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org>, <1432216513015.95229@students.tntech.edu> Message-ID: <006d01d09422$0fc87a20$2f596e60$@sibopa.com> The ip 127.0.0.1 will work; that's the default ip of any server. You can either use localhost, 127.0.0.1, the external IP, or your example.com domain name. they are all the same thing and will all work. For the file permissions, that's limitation of windows servers; Hope I've helped Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 9:55 AM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows Ok. I installed icecast win_32 2.4.1 with no problem. The problems arrive when I try changing things... Why are the folders for icecast write protected? I made changes to the icecast.xml file & tried saving it, but got errors saying the file is read only! Then, I scanned the sub-folders in the download folder & found another icecast.xml file! I couldn't make changes that either! I found a sleezy work-a-round: save the file as a different name in a different folder then copy it to the icecast folder, then delete the original file & rename the modified file to icecast.xml. Next: When looking at the icecast.xml, what does the IP address do? The default is http://127.0.0.1. Do I change this to match the IP address of the machine that is providing the stream source? Thanks in advance for any help!! ________________________________________ From: icecast-bounces at xiph.org on behalf of Marvin Scholz Sent: Thursday, May 14, 2015 2:46 PM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>> Desert Radio Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose some priorities, given that we never got >> much feedback from windows users and we are just very few developers, >> a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would get a lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From delimbaugh21 at students.tntech.edu Fri May 22 03:31:44 2015 From: delimbaugh21 at students.tntech.edu (Donald E Limbaugh) Date: Fri, 22 May 2015 03:31:44 +0000 Subject: [Icecast] Icecast install under Windows In-Reply-To: <006d01d09422$0fc87a20$2f596e60$@sibopa.com> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org>, <1432216513015.95229@students.tntech.edu>, <006d01d09422$0fc87a20$2f596e60$@sibopa.com> Message-ID: <1432265514728.53125@students.tntech.edu> Thanks, Albert, for the help on the IP address! I'm not sure what you mean about the Windows server. I'm running Windows 8.1 on my PC that runs the radio station... I figured out that the icecast.xml file in the sub-folder is the one that the icecast GUI uses for configuration. ________________________________________ From: icecast-bounces at xiph.org on behalf of Albert Sindjui Sent: Thursday, May 21, 2015 5:58 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows The ip 127.0.0.1 will work; that's the default ip of any server. You can either use localhost, 127.0.0.1, the external IP, or your example.com domain name. they are all the same thing and will all work. For the file permissions, that's limitation of windows servers; Hope I've helped Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 9:55 AM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows Ok. I installed icecast win_32 2.4.1 with no problem. The problems arrive when I try changing things... Why are the folders for icecast write protected? I made changes to the icecast.xml file & tried saving it, but got errors saying the file is read only! Then, I scanned the sub-folders in the download folder & found another icecast.xml file! I couldn't make changes that either! I found a sleezy work-a-round: save the file as a different name in a different folder then copy it to the icecast folder, then delete the original file & rename the modified file to icecast.xml. Next: When looking at the icecast.xml, what does the IP address do? The default is http://127.0.0.1. Do I change this to match the IP address of the machine that is providing the stream source? Thanks in advance for any help!! ________________________________________ From: icecast-bounces at xiph.org on behalf of Marvin Scholz Sent: Thursday, May 14, 2015 2:46 PM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>> Desert Radio Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose some priorities, given that we never got >> much feedback from windows users and we are just very few developers, >> a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would get a lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From sindjui at sibopa.com Fri May 22 04:14:25 2015 From: sindjui at sibopa.com (Albert Sindjui) Date: Fri, 22 May 2015 00:14:25 -0400 Subject: [Icecast] Icecast install under Windows In-Reply-To: <1432265514728.53125@students.tntech.edu> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org>, <1432216513015.95229@students.tntech.edu>, <006d01d09422$0fc87a20$2f596e60$@sibopa.com> <1432265514728.53125@students.tntech.edu> Message-ID: <002e01d09445$ca7f77b0$5f7e6710$@sibopa.com> I'm glad it worked. About Windows, I just think, and this is personal, that open source works better on linux. I also have some windows installation, but with virtual linux server installed. This gives me more flexibility. Good luck! Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 11:32 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows Thanks, Albert, for the help on the IP address! I'm not sure what you mean about the Windows server. I'm running Windows 8.1 on my PC that runs the radio station... I figured out that the icecast.xml file in the sub-folder is the one that the icecast GUI uses for configuration. ________________________________________ From: icecast-bounces at xiph.org on behalf of Albert Sindjui Sent: Thursday, May 21, 2015 5:58 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows The ip 127.0.0.1 will work; that's the default ip of any server. You can either use localhost, 127.0.0.1, the external IP, or your example.com domain name. they are all the same thing and will all work. For the file permissions, that's limitation of windows servers; Hope I've helped Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 9:55 AM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows Ok. I installed icecast win_32 2.4.1 with no problem. The problems arrive when I try changing things... Why are the folders for icecast write protected? I made changes to the icecast.xml file & tried saving it, but got errors saying the file is read only! Then, I scanned the sub-folders in the download folder & found another icecast.xml file! I couldn't make changes that either! I found a sleezy work-a-round: save the file as a different name in a different folder then copy it to the icecast folder, then delete the original file & rename the modified file to icecast.xml. Next: When looking at the icecast.xml, what does the IP address do? The default is http://127.0.0.1. Do I change this to match the IP address of the machine that is providing the stream source? Thanks in advance for any help!! ________________________________________ From: icecast-bounces at xiph.org on behalf of Marvin Scholz Sent: Thursday, May 14, 2015 2:46 PM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>> Desert Radio Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose some priorities, given that we never got >> much feedback from windows users and we are just very few developers, >> a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would get a lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From delimbaugh21 at students.tntech.edu Fri May 22 13:08:13 2015 From: delimbaugh21 at students.tntech.edu (Donald E Limbaugh) Date: Fri, 22 May 2015 13:08:13 +0000 Subject: [Icecast] Icecast install under Windows In-Reply-To: <002e01d09445$ca7f77b0$5f7e6710$@sibopa.com> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org>, <1432216513015.95229@students.tntech.edu>, <006d01d09422$0fc87a20$2f596e60$@sibopa.com> <1432265514728.53125@students.tntech.edu>, <002e01d09445$ca7f77b0$5f7e6710$@sibopa.com> Message-ID: <1432300091503.40716@students.tntech.edu> Yes, I think you might be on to something there. I'm tempted to switch to Linux for the streaming part of this setup... I have 2 Windows machines that I use now, 1 for the radio automation & the other for streaming & editing audio files. What Linux OS do you recommend? Ubuntu? What radio automation software do you recommend? I had Icecast working last year but when we upgraded from Window 8.0 to 8.1, the streaming stopped working. I have been fiddling with it ever since but can't get it working! ________________________________________ From: icecast-bounces at xiph.org on behalf of Albert Sindjui Sent: Thursday, May 21, 2015 10:14 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows I'm glad it worked. About Windows, I just think, and this is personal, that open source works better on linux. I also have some windows installation, but with virtual linux server installed. This gives me more flexibility. Good luck! Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 11:32 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows Thanks, Albert, for the help on the IP address! I'm not sure what you mean about the Windows server. I'm running Windows 8.1 on my PC that runs the radio station... I figured out that the icecast.xml file in the sub-folder is the one that the icecast GUI uses for configuration. ________________________________________ From: icecast-bounces at xiph.org on behalf of Albert Sindjui Sent: Thursday, May 21, 2015 5:58 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows The ip 127.0.0.1 will work; that's the default ip of any server. You can either use localhost, 127.0.0.1, the external IP, or your example.com domain name. they are all the same thing and will all work. For the file permissions, that's limitation of windows servers; Hope I've helped Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 9:55 AM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows Ok. I installed icecast win_32 2.4.1 with no problem. The problems arrive when I try changing things... Why are the folders for icecast write protected? I made changes to the icecast.xml file & tried saving it, but got errors saying the file is read only! Then, I scanned the sub-folders in the download folder & found another icecast.xml file! I couldn't make changes that either! I found a sleezy work-a-round: save the file as a different name in a different folder then copy it to the icecast folder, then delete the original file & rename the modified file to icecast.xml. Next: When looking at the icecast.xml, what does the IP address do? The default is http://127.0.0.1. Do I change this to match the IP address of the machine that is providing the stream source? Thanks in advance for any help!! ________________________________________ From: icecast-bounces at xiph.org on behalf of Marvin Scholz Sent: Thursday, May 14, 2015 2:46 PM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>> Desert Radio Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose some priorities, given that we never got >> much feedback from windows users and we are just very few developers, >> a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would get a lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From sindjui at sibopa.com Sat May 23 02:54:43 2015 From: sindjui at sibopa.com (Albert Sindjui) Date: Fri, 22 May 2015 22:54:43 -0400 Subject: [Icecast] Icecast install under Windows In-Reply-To: <1432300091503.40716@students.tntech.edu> References: <5554C276.5080106@kpov.org> <00a701d08e62$1127bae0$337730a0$@com> <5554CF16.8050702@kpov.org> <5554EFE2.7050305@kpov.org>, <1432216513015.95229@students.tntech.edu>, <006d01d09422$0fc87a20$2f596e60$@sibopa.com> <1432265514728.53125@students.tntech.edu>, <002e01d09445$ca7f77b0$5f7e6710$@sibopa.com> <1432300091503.40716@students.tntech.edu> Message-ID: <00b601d09503$d292c920$77b85b60$@sibopa.com> If you have 2 machine, I will recommend installing a linux virtual machine in one of them to run the radio. What linux? For a starter, Ubuntu is recommended, as it is easier to use. However, I prefer centos, that is just red hat with a different logo. It is more enterprise oriented. For streaming, I'm not expert; I'm currently building a radio as well. I'm planning to use Icecast (I've balanced with shoutcast and decided for Icecast), and icegenerator or ezstream. I don't know yet for sure If it will be icegenerator or ezstream. I need more automation for my radio. I want to feed Icecast from a database. Since I'm a drupal specialist, I want to use drupal to upload music in database, and feed Icecast from that database. So I don't need to worry about my slow internet connection and everything around. But my project is still at design stage. -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Friday, May 22, 2015 9:08 AM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows Yes, I think you might be on to something there. I'm tempted to switch to Linux for the streaming part of this setup... I have 2 Windows machines that I use now, 1 for the radio automation & the other for streaming & editing audio files. What Linux OS do you recommend? Ubuntu? What radio automation software do you recommend? I had Icecast working last year but when we upgraded from Window 8.0 to 8.1, the streaming stopped working. I have been fiddling with it ever since but can't get it working! ________________________________________ From: icecast-bounces at xiph.org on behalf of Albert Sindjui Sent: Thursday, May 21, 2015 10:14 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows I'm glad it worked. About Windows, I just think, and this is personal, that open source works better on linux. I also have some windows installation, but with virtual linux server installed. This gives me more flexibility. Good luck! Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 11:32 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows Thanks, Albert, for the help on the IP address! I'm not sure what you mean about the Windows server. I'm running Windows 8.1 on my PC that runs the radio station... I figured out that the icecast.xml file in the sub-folder is the one that the icecast GUI uses for configuration. ________________________________________ From: icecast-bounces at xiph.org on behalf of Albert Sindjui Sent: Thursday, May 21, 2015 5:58 PM To: 'Icecast streaming server user discussions' Subject: Re: [Icecast] Icecast install under Windows The ip 127.0.0.1 will work; that's the default ip of any server. You can either use localhost, 127.0.0.1, the external IP, or your example.com domain name. they are all the same thing and will all work. For the file permissions, that's limitation of windows servers; Hope I've helped Albert -----Original Message----- From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On Behalf Of Donald E Limbaugh Sent: Thursday, May 21, 2015 9:55 AM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows Ok. I installed icecast win_32 2.4.1 with no problem. The problems arrive when I try changing things... Why are the folders for icecast write protected? I made changes to the icecast.xml file & tried saving it, but got errors saying the file is read only! Then, I scanned the sub-folders in the download folder & found another icecast.xml file! I couldn't make changes that either! I found a sleezy work-a-round: save the file as a different name in a different folder then copy it to the icecast folder, then delete the original file & rename the modified file to icecast.xml. Next: When looking at the icecast.xml, what does the IP address do? The default is http://127.0.0.1. Do I change this to match the IP address of the machine that is providing the stream source? Thanks in advance for any help!! ________________________________________ From: icecast-bounces at xiph.org on behalf of Marvin Scholz Sent: Thursday, May 14, 2015 2:46 PM To: Icecast streaming server user discussions Subject: Re: [Icecast] Icecast install under Windows On 14 May 2015, at 20:56, that Jack Elliott wrote: > Hi Marvin, > > I followed the wiki instructions and they went w/o any issues until > > C:\Users\username> nssm start Icecast > Can't open service! > OpenService(): Access is denied! > > Probably a good idea to mention that the command window needs to be > Run as administrator. Then it works. Thanks for pointing that out! (My Windows XP has no UAC so I did not noticed this) > Many thanks! > > -- > Jack Elliott > > On 5/14/2015 10:07 AM, Marvin Scholz wrote: >> On 14 May 2015, at 18:36, Jack Elliott 541 848 7021 wrote: >> >>> Oh dear. >>> >>> Okay, can anyone suggest how to install Icecast under Windows as a >>> service, and to be able to bring up some kind of console to >>> start/stop it? >> I just wrote a Wiki page detailing how to install Icecast as service >> using NSSM, you can find it here >> http://wiki.xiph.org/Icecast_Server/Setup_Windows_Service >> >>> I can launch Icecast using the installed .bat file, but it's clunky. >>> >>> -- >>> that Jack Elliott >>> 541 848 7021 >>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>> Desert Radio Audio geek >>> >>> On 05/14/2015 09:21 AM, Ross Levis wrote: >>>> Most if not all of the developers don't use the operating >>>> system 90% of the population use and don't really care. It works on >>>> Linux. >> Well it is not that we ignore Windows, but most servers are running >> Linux and we have to choose some priorities, given that we never got >> much feedback from windows users and we are just very few developers, >> a Windows Service was not one of the top priorities. >> But we will investigate re-adding this functionality. >> >>>> I too would like to see a proper GUI with proper installers. It >>>> would get a lot more users that way. >>>> >>>> -----Original Message----- >>>> From: icecast-bounces at xiph.org [mailto:icecast-bounces at xiph.org] On >>>> Behalf Of Jack Elliott 541 848 7021 >>>> Sent: Friday, 15 May 2015 3:43 a.m. >>>> To: icecast at xiph.org >>>> Subject: [Icecast] Icecast install under Windows >>>> >>>> Windows 7, Icecast 2.4.1 >>>> >>>> Installer downloaded from >>>> http://downloads.xiph.org/releases/icecast/icecast_win32_2.4.1.exe >>>> >>>> Referring to http://en.flossmanuals.net/icecast/windows/ >>>> >>>> The installation process goes as described, but doesn't offer the >>>> "Create a desktop icon" option. >>>> >>>> Nor am I offered the option to "Install Icecast as a Windows >>>> service" >>>> as >>>> shown. >>>> >>>> I can't "start Icecast by clicking on the handy icon" because of no >>>> icon. >>>> Because of that, I can't start the final window as shown on the >>>> document. >>>> (Start server, etc.) >>>> >>>> I tried installing Icecast twice, same results. >>>> >>>> -- >>>> that Jack Elliott >>>> 541 848 7021 >>>> Producer Wednesday Point, Host, The Sunday Classics KPOV 88.9, High >>>> Desert Radio Audio geek >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>>> >>>> >>>> _______________________________________________ >>>> Icecast mailing list >>>> Icecast at xiph.org >>>> http://lists.xiph.org/mailman/listinfo/icecast >>> _______________________________________________ >>> Icecast mailing list >>> Icecast at xiph.org >>> http://lists.xiph.org/mailman/listinfo/icecast >> _______________________________________________ >> Icecast mailing list >> Icecast at xiph.org >> http://lists.xiph.org/mailman/listinfo/icecast > > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast _______________________________________________ Icecast mailing list Icecast at xiph.org http://lists.xiph.org/mailman/listinfo/icecast From rajil.s at gmail.com Sat May 23 18:19:30 2015 From: rajil.s at gmail.com (Rajil Saraswat) Date: Sat, 23 May 2015 13:19:30 -0500 Subject: [Icecast] Ices encode stops using Hauppauge pvr usb2 Message-ID: <4120726.EtQseGDRsH@desktop> Hello, I have a version 29 of Hauppauge pvr usb2 which i am using as a fm receiver. It is connected to an Intel NUC on a usb3 port running kernel linux-3.8.12. The fm audio is fed to ices encoder using mpeg2desc -a0 < /dev/radio0 | mpg123 -s - | ices /tmp/ices-stdin.xml This works well for two days. However something kills of encoding after two days of running. Ices reports in the log #tail ices.log [2015-05-23 01:20:00] EROR stream/ices_instance_stream Send error: Socket error (Broken pipe) [2015-05-23 01:20:00] DBUG input/input_flush_queue Input queue flush requested [2015-05-23 01:20:00] WARN stream/ices_instance_stream Trying reconnect after server socket error [2015-05-23 01:20:00] INFO stream/ices_instance_stream Connected to server: localhost:8000/high.ogg [2015-05-23 01:20:00] DBUG input/input_flush_queue Input queue flush requested and icecast gives up #tail error.log [2015-05-23 01:32:50] INFO source/source_shutdown Source from ::1 at "/high.ogg" exiting Interestingly 'ps' shows that ices and mpeg2desc are still running. I am not sure where the problem is. Is this an issue with pvrusb2 or with ices? Thanks Rajil From albert.bruc.ab at gmail.com Tue May 26 22:07:39 2015 From: albert.bruc.ab at gmail.com (Albert Bruc) Date: Wed, 27 May 2015 00:07:39 +0200 Subject: [Icecast] generate playlist (by day) with icecast Message-ID: Hi, I'm searching a way (a script) to print the whole song played by day by my icecast stream Do you know a way to do it ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From infoweb1 at crobiz.com Wed May 27 09:52:08 2015 From: infoweb1 at crobiz.com (infoweb1 at crobiz.com) Date: Wed, 27 May 2015 11:52:08 +0200 Subject: [Icecast] URL authentication not working Message-ID: <7200D536DA1948F192C5979809F97134@T> Icecast 2.4.1 and 2.4.2, OS: CentOS 6.6 x64 Tried to install icecast using following two different methods described in these links: (1) http://www.ukhost4u.co.uk/blog/538/install-icecast-2-centos-6-server/ (2) https://www.servint.net/university/article/taking-the-chill-out-of-installing-icecast/ Both of these resulted in working and stable icecast, but without the possibility of url authentication. Mountpoint authentication is configured as shown here: Script named stream_control.php just writes POST data received from calling site (to some file) and returns icecast-auth-user: 1. This script is never called by any of these methods by the icecast server, also in the error.log I am able to find following lines (every time I try to connect to icecast as a listener - or a stream client): INFO auth/auth_add_listener adding client for authentication INFO auth/queue_auth_client auth on /mountpoint has 1 pending INFO auth_url/url_add_listener client auth (http://some.server.org/stream_control.php) failed with "" Please advise further actions. Thanks! PS: yum update was done, without any change. -------------- next part -------------- An HTML attachment was scrubbed... URL: From thatjackelliott at kpov.org Sat May 30 16:30:55 2015 From: thatjackelliott at kpov.org (that Jack Elliott) Date: Sat, 30 May 2015 09:30:55 -0700 Subject: [Icecast] Pathing syntax for icecast.xml in Windows Message-ID: <5569E5BF.4060207@kpov.org> Hi, Icecast.xml shows a sample path to a mountpoint fallback file as /example2.ogg Under Windows, will this next work? "C:\Users\username\Desktop\foldername\subfoldername\fallback.mp3" Also, the usage of a fallback mount is only shown in the sample icecast.xml under a commented-out section, about 3/4 of the way down: Can I use the fallback mountpoint syntax up at the top where my normal mount is defined? I.e., /mymount "C:\Users\username\Desktop\foldername\subfoldername\fallback.mp3" 1 1 -- Jack Elliott Producer, The Point Wednesday Host, The Sunday Classics KPOV 88.9 High Desert Radio kpov.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From lion at lion.leolix.org Sun May 31 12:12:55 2015 From: lion at lion.leolix.org (Philipp Schafft) Date: Sun, 31 May 2015 12:12:55 +0000 Subject: [Icecast] Pathing syntax for icecast.xml in Windows In-Reply-To: <5569E5BF.4060207@kpov.org> References: <5569E5BF.4060207@kpov.org> Message-ID: <20150531121257.8D9E0130BE@grassland.keep-cool.org> reflum, On Sat, 2015-05-30 at 09:30 -0700, that Jack Elliott wrote: > Hi, > > Icecast.xml shows a sample path to a mountpoint fallback file as > > /example2.ogg > > Under Windows, will this next work? > > "C:\Users\username\Desktop\foldername\subfoldername > \fallback.mp3" > [...] No. I think you misunderstanding fallbacks a bit: Those are not files but actual mounts (which may be files within the webroot). I would suggest to read docs for more info: http://icecast.org/docs/icecast-2.4.1/config-file.html#mountsettings -- Philipp. (Rah of PH2) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 490 bytes Desc: This is a digitally signed message part URL: