Re: icecast and accessible source clients?

2020-06-13 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I am unfortunately not very good with the code, but I can imagine you could do something like:music1 = playlist.safe("~/music/slow")music2 = playlist.safe("~/music/fast")radio = random(weights = [3, 3][music1,music2])and then set up the rest from there, but you have to experiment. Or you could probably ask on their mailing list too.

URL: https://forum.audiogames.net/post/540828/#p540828




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-06-13 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I am unfortunately not very good with the code, but I can imagine you could do something like:music1 = playlist.safe("~/music/slow")music2 = playlist.safe("~/music/fast")radio = random(weights = [1, 4][music1,music2])and then set up the rest from there, but you have to experiment. Or you could probably ask on their mailing list too.

URL: https://forum.audiogames.net/post/540828/#p540828




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-06-12 Thread AudioGames . net Forum — Off-topic room : Yukie via Audiogames-reflector


  


Re: icecast and accessible source clients?

hi. it is possible to use 2 or more playlist in liquidsoap? I want to do something like this. in my music folder, there are 2 playlist. named, slo, and fast. i want to play 3 songs in first playlist.  and after playing 3 songs, switch to second playlist. after, play three songs again, and after, the process repeat itself. it is posible? can you givve me code sample? sorry for my english.

URL: https://forum.audiogames.net/post/540570/#p540570




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I am happy! finally figured out how to do what I wanted to do, although I know it can be done more gracefullythis will do the following:1. Get all the files inside a folder named music and play them in random order, reloading them every 24 hours.2. When you use anything to connect to your icecast using live.mp3 as the mountpoint, the main mountpoint, in this case mine is named jam,  will pause whatever it is playing, and switch to that immediately, abruptly, no transition sound, no warning. You are now live!3. when you disconnect from your client, it will resume playing, or continue exactly where it left of. Of course, your listeners will never get dropped or anything, and they won't need or have to do anything, either.start of main.liq file:# Music playlistsmusic1 = playlist.safe(reload=86400,"~/music")radio = random([music1])#Add support for live streams.full =  fallback(track_sensitive=false,           [input.http("http://localhost:8000/live.mp3"),            radio])# Stream it outoutput.icecast(%mp3,host = "localhost", port = 8000,password = "YourIcecastSourcePassword", mount = "jam",name="jams radio", description="experimental", full)end of main.liqso now, a few remarks: This is really sad because there should be a different port probably for connection, and also it should be done using the propper harvor input feature so that you can use a different password, protect your radio from anyone  that knows your source icecast username and pass that you have configured there, from just interrupting your stream and whatever... but it gets the job done. For now, its what I need. Hope it helps someone as well.

URL: https://forum.audiogames.net/post/532788/#p532788




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

awesome that is working for you!as noted, I think the documentation provides great examples and really shows off the impressive features of such a robust great software, but, the lack of a more detailed explanation of the code really is something that sets anyone back. Especially, the syntax of this and that, and why should you enclose things into braces and how you have to put a  variable inside of another (like radio inside full) to achieve the desired outcome... in this case, full is a source that also goes to the same output, shares the output of radio, so that is why they have to be nested. But that is not specified anywhere in docs and not all of us really are that familiar with that kind of programming language.

URL: https://forum.audiogames.net/post/532812/#p532812




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I am happy! finally figured out how to do what I wanted to do, although I know it can be done more gracefullythis will do the following:1. Get all the files inside a folder named music and play them in random order, reloading them every 24 hours.2. When you use anything to connect to your icecast using live.mp3 as the mountpoint, the main mountpoint, in this case mine is named jam,  will pause whatever it is playing, and switch to that immediately, abruptly, no transition sound, no warning. You are now live!3. when you disconnect from your client, it will resume playing, or continue exactly where it left of. Of course, your listeners will never get dropped or anything, and they won't need or have to do anything, either.start of main.liq file:# Music playlistsmusic1 = playlist.safe(reload=86400,"~/music")radio = random([music1])#Add support for live streams.full =  fallback(track_sensitive=false,           [input.http("http://localhost:8000/live.mp3"),            radio])# Stream it outoutput.icecast(%mp3,host = "localhost", port = 8000,password = "YourIcecastSourcePassword", mount = "jam",name="jams radio", description="experimental", full)end of main.liqso now, a few remarks: This is really sad because there should be a different port probably for connection, and also it should be done using the propper harvor input feature so that you can use a different password, protect your radio from anyone  that knows your source icecast pass from just interrupting your stream and whatever... but it gets the job done. For now, its what I need. Hope it helps someone as well.

URL: https://forum.audiogames.net/post/532788/#p532788




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: icecast and accessible source clients?

Oh boy, it's working! Thanks a lot.

URL: https://forum.audiogames.net/post/532792/#p532792




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I am happy! finally figured out how to do what I wanted to do, although I know it can be done more gracefullythis will do the following:1. Get all the files inside a folder named music and play them in random order, reloading them every 24 hours.2. When you use anything to connect to your icecast using live.mp3 as the mountpoint, the main mountpoint, in this case mine is named jam,  will pause whatever it is playing, and switch to that immediately, abruptly, no transition sound, no warning. You are now live!3. when you disconnect from your client, it will resume playing, or continue exactly where it left of.start of main.liq file:# Music playlistsmusic1 = playlist.safe(reload=86400,"~/music")radio = random([music1])#Add support for live streams.full =  fallback(track_sensitive=false,           [input.http("http://localhost:8000/live.mp3"),            radio])# Stream it outoutput.icecast(%mp3,host = "localhost", port = 8000,password = "YourIcecastSourcePassword", mount = "jam",name="jams radio", description="experimental", full)end of main.liqso now, a few remarks: This is really sad because there should be a different port probably for connection, and also it should be done using the propper harvor input feature so that you can use a different password, protect your radio from anyone  that knows your source icecast pass from just interrupting your stream and whatever... but it gets the job done. For now, its what I need. Hope it helps someone as well.

URL: https://forum.audiogames.net/post/532788/#p532788




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

well, I see that you have some extra white spaces after the line output.icecast(%mp3, Make sure that there are no extra spaces in the code at the end of lines (apparently liquidsoap does not need them anyway) and run it again, its the only difference I see from your code versus mine.Or just literally copy and paste the whole thing leaving the comments in, then remove them little by little, they will do no harm anyway.

URL: https://forum.audiogames.net/post/532661/#p532661




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

well, I see that you have some extra white spaces after output.icecastMake sure that there are no extra spaces in the code at the end of lines (apparently liquidsoap does not need them anyway) and run it again, its the only difference I see from your code versus mine.Or just literally copy and paste the whole thing leaving the comments in, then remove them little by little, they will do no harm anyway.

URL: https://forum.audiogames.net/post/532661/#p532661




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-23 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: icecast and accessible source clients?

It says error char 8-17, syntax error!Yeah, the SFTP thing is pretty useful I don't install any third party software to manage file on my server.

URL: https://forum.audiogames.net/post/532582/#p532582




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-22 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

and, what error do you get when you doliquidsoap yourFile.liq?apparently its complaining on line 5 which has to do with the host setup, but as far as I can see its all correct therethanks for the sftp thing on win 10, had no idea about it.

URL: https://forum.audiogames.net/post/532501/#p532501




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-22 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: icecast and accessible source clients?

Hi there,My liquidsoap configuration starts below:# music playlistsmusic1 = playlist.safe(reload=86400,"~/music)radio = random([music1])output.icecast(%mp3, host = "localhost", port = 8000,password = "MySourcePassword", mount = "test", name="The radio test", description ="This is my radio test", radio)# configuration endAlso, you don't need to use WinScp. You can use SFTP (secure transfer protocol) that are preinstalled on Mac, Linux, and recently windows 10.

URL: https://forum.audiogames.net/post/532499/#p532499




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-22 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I normally use win scp to edit the file in one window, and then have the terminal open in another one.The integrated win scp editor is good enough and you can use it normally, and NVDA object nav or a jaws cursor review can tell you which line you are on.If anything, you could paste your code here. I also guess it depends on what version of liquidsoap you are using, i installed liquidsoap by using opam (about 4 days ago as of this writing) which has apparently the latest one with as many dependencies as possible, which in total was about half a gig if I remember correctly.

URL: https://forum.audiogames.net/post/532316/#p532316




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-22 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: icecast and accessible source clients?

Well, I got an error on line 5, char 3-17. I don't know what the problem is though. I also have a look in liquidsoap quickstart, and my code has written exactly that. Will debug it again tomorrow, now need sometimes to sleep.

URL: https://forum.audiogames.net/post/532295/#p532295




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-21 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

Socheat wrote:Can I play the files from the folder instead of a playlist? If I can, could anyone give me an example code?hi, my code on post 6 plays files from a directory and all subfolders. I have changed the reload times because 600 seconds can get the thing to reload the folder every 10 minutes but it will repeat many things over and over, so its better to put something like 24 hours, or 86400 seconds.I will change this code soon because I want a jingle or some sound to play just before I go live and also when I finish the live stream, and want to also do it without restarting the liquidsoap server, and will share my progress, but feel free to use the one I have in post 6. It assumes you have songs in the directory home/YourUser/musicif you need to change that then change the line like this:music1 = playlist.safe(reload=86400,"path/to/songs/folder")and that's it.playlist.safe is a command that tells liquidsoap that the files will be there no matter what, and  music1 is sort of a variable we assign to the first pseudo playlist because we will need to use it later to tell liquidsoap that it is a feed called radio, that will  be going to an icecast output. Hope that last bit made sense!also, the mount = can be changed to whatever (remember to respect quotation) and that will be the end of your URLlike, if your mount is snoring, then your stream URL will behttp://my.radio.net:8000/snoring

URL: https://forum.audiogames.net/post/532158/#p532158




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-21 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

Socheat wrote:Can I play the files from the folder instead of a playlist? If I can, could anyone give me an example code?hi, my code on post 6 plays files from a directory and all subfolders. I have changed the reload times because 600 seconds can get the thing to reload the folder every 10 minutes but it will repeat many things over and over, so its better to put something like 24 hours, or 86400 seconds.I will change this code soon because I want a jingle or some sound to play just before I go live and also when I finish the live stream, and want to also do it without restarting the liquidsoap server, and will share my progress, but feel free to use the one I have in post 6. It assumes you have songs in the directory home/YourUser/musicif you need to change that then change the line like this:music1 = playlist.safe(reload=86400,"path/to/songs/folder")and that's it.playlist.safe is a command that tells liquidsoap that the files will be there no matter what, and  music1 is sort of a variable we assign to the first pseudo playlist because we will need to use it later to tell liquidsoap that it it is a feed that will  be going to an icecast output called radio. Hope that last bit made sense!also, the mount = can be changed to whatever (remember to respect quotation) and that will be the end of your URLlike, if your mount is snoring, then your stream URL will behttp://my.radio.net:8000/snoring

URL: https://forum.audiogames.net/post/532158/#p532158




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-21 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

Socheat wrote:Can I play the files from the folder instead of a playlist? If I can, could anyone give me an example code?hi, my code on post 6 plays files from a directory and all subfolders. I have changed the reload times because 600 seconds can get the thing to reload the folder every 10 minutes but it will repeat many things over and over, so its better to put something like 24 hours, or 86400 seconds.I will change this code soon because I want a jingle or some sound to play just before I go live and also when I finish the live stream, and want to also do it without restarting the liquidsoap server, and will share my progress, but feel free to use the one I have in post 6. It assumes you have songs in the directory home/YourUser/musicif you need to change that then change the line like this:music1 = playlist.safe(reload=86400,"path/to/songs/folder")and that's it.playlist.safe is a command that tells liquidsoap that the files will be there no matter what, and  music1 is sort of a variable we assign to the first pseudo playlist because we will need to use it later to tell liquidsoap that it will be going to an icecast output. Hope that last bit made sense!also, the mount = can be changed to whatever (remember to respect quotation) and that will be the end of your URLlike, if your mount is snoring, then your stream URL will behttp://my.radio.net:8000/snoring

URL: https://forum.audiogames.net/post/532158/#p532158




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-21 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

Socheat wrote:Can I play the files from the folder instead of a playlist? If I can, could anyone give me an example code?hi, my code on post 6 plays files from a directory and all subfolders. I have changed the reload times because 600 seconds can get the thing to reload the folder every 10 minutes but it will repeat many things over and over, so its better to put something like 24 hours, or 86400 seconds.I will change this code soon because I want a jingle or some sound to play just before I go live and also when I finish the live stream, and want to also do it without restarting the liquidsoap server, and will share my progress, but feel free to use the one I have in post 6. It assumes you have songs in the directory home/YourUser/musicif you need to change that then change the line like this:music1 = playlist.safe(reload=86400,"path/to/songs/folder")and that's it.playlist.safe is a command that tells liquidsoap that the files will be there no matter what, and  music1 is sort of a variable we assign to the first pseudo playlist because we will need to use it later to tell liquidsoap that it will be going to an icecast output. Hope that last bit made sense!also, the mount = can be changed to whatever (remember to respect quotation) and that will be the end of your URLlike, if your mount is snoring, then your stream URL will bemy.radio.net:8000/snoring

URL: https://forum.audiogames.net/post/532158/#p532158




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-21 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

Socheat wrote:Can I play the files from the folder instead of a playlist? If I can, could anyone give me an example code?hi, my code on post 6 plays files from a directory and all subfolders. I have changed the reload times because 600 seconds can get the thing to reload the folder every 10 minutes but it will repeat many things over and over, so its better to put something like 24 hours, or 86400 seconds.I will change this code soon because I want a jingle or some sound to play just before I go live and also when I finish the live stream, and want to also do it without restarting the liquidsoap server, and will share my progress, but feel free to use the one I have in post 6. It assumes you have songs in the directory home/YourUser/musicif you need to change that then change the line like this:music1 = playlist.safe(reload=86400,"path/to/songs/folder")and that's it.playlist.safe is a command that tells liquidsoap that the files will be there no matter what, and  music1 is sort of a variable we assign to the first pseudo playlist because we will need to use it later to tell liquidsoap that it will be going to an icecast output. Hope that last bit made sense!

URL: https://forum.audiogames.net/post/532158/#p532158




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-21 Thread AudioGames . net Forum — Off-topic room : Socheat via Audiogames-reflector


  


Re: icecast and accessible source clients?

Can I play the files from the folder instead of a playlist? If I can, could anyone give me an example code?

URL: https://forum.audiogames.net/post/532150/#p532150




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-20 Thread AudioGames . net Forum — Off-topic room : nyanchan via Audiogames-reflector


  


Re: icecast and accessible source clients?

Altacast is accessible. Very easy.

URL: https://forum.audiogames.net/post/531818/#p531818




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-20 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

thanks for that.. I am not running any web server, but I still suspect my data connection plays into this as a git issue regarding what happened to me also showed up, blank pages loading for a azuracast, even with different browsers and that was the final coment on it, so I suppose it applies for me too. Still, I need to get more familiar with liquidsoap scripting language, but it works for what I need for now as a nice auto dj type thing

URL: https://forum.audiogames.net/post/531721/#p531721




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-20 Thread AudioGames . net Forum — Off-topic room : Chris via Audiogames-reflector


  


Re: icecast and accessible source clients?

If you're configuring AzuraCast and also want to run a website, my understanding is that you should dedicate a server to AzuraCast and use another server for websites and anything else you may want to do.I messed with this for a little while and it's pretty cool. However, I'm not sure how secure this is or how to update it. I also didn't keep it up for very long as I didn't see the point. I don't really play music, and no one listened to me when I used to do Icecast streams. Still, this is a great way to stream content if all you want to do is use audio and have limited bandwidth. A 128 Kbps stereo stream shouldn't use too much data if you're using mp3 or ogg. I'd recommend mp3, as not all devices support ogg, while mp3 is ubiquitous.As for streaming clients, I used to use Altacast. For some strange reason, I had to run it as administrator. I've heard Edcast works as well, but haven't tried that. If you're using macOS, Audio Hijack can stream to servers. For iOS users, you can use Backpack Studio.

URL: https://forum.audiogames.net/post/531654/#p531654




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-20 Thread AudioGames . net Forum — Off-topic room : Chris via Audiogames-reflector


  


Re: icecast and accessible source clients?

If you're configuring AzuraCast and also want to run a website, my understanding is that you should dedicate a server to AzuraCast and use another server for websites and anything else you may want to do.I messed with this for a little while and it's pretty cool. However, I'm not sure how secure this is or how to update it. I also didn't keep it up for very long as I didn't see the point. I don't really play music, and no one listened to me when I used to do Icecast streams. Still, this is a great way to stream content if all you want to do is use audio and have limited bandwidth. A 128 Kbps stereo stream shouldn't use too much data if you're using mp3 or ogg. I'd recommend mp3, as not all devices support ogg, while mp3 is ubiquitous.

URL: https://forum.audiogames.net/post/531654/#p531654




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-20 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

oh, I have heard of AltaCast before but wouldn't have thought it was accessible for windows.Still, I plan to leave liquidsoap for 24/7 transmission and have it interrupt when live streams come in. I will give that one a try as well.

URL: https://forum.audiogames.net/post/531645/#p531645




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-20 Thread AudioGames . net Forum — Off-topic room : black_mana via Audiogames-reflector


  


Re: icecast and accessible source clients?

i used to install icecast manually before and then config   the xml file and stream  using a software called AltaCast

URL: https://forum.audiogames.net/post/531570/#p531570




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-19 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I used docker with azura cast, but I still suspect it is my connection. Still, I was finally successful with liquidsoap!not the most elegant way to do things, but I followed that guide I posted above, and updated the syntax according to the official liquidsoap documentation I found out that the error was due to error in my .liq configuration script because I went to the folder where the .liq script was, using terminal, then typedliquidsoap blahblah.liqand got descriptive errors from the program, most of them were syntax errors. Stripping the file though, gave me clues as to what was working and what was not. I still believe liquidsoap really needs to improve their explanations of the stuff, but for me it was enough to make a folder called music in my home/name directory, upload some tracks to it, and then use the script like this:beging content of file# Music playlistsmusic1 = playlist.safe("~/music")#I will take care of a default file later and this one has less tahn 10, although very long tracks #so I'm good forcing it as a safe fallible playlist for now# Start building the feed with musicradio = random([music1])#this creates a variable named radio and plays the folder in random order# Stream it outoutput.icecast(%mp3,host = "localhost", port = 8000,password = "WhatEverItMightBe", mount = "jam",name="myStation Music Service", description="ultra blahblahblah", radio)end of file contentWhen I didliquidsoap blahblah.liqit all worked. A bunch of messages were displayed with the status of each track and so on.I went to my.host:8000/jamusing various players and it was playing, using the my station music service as the artist and unknown as the title.I am sure that can of course be tweaked, but it works.

URL: https://forum.audiogames.net/post/531375/#p531375




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-19 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

I used docker with azura cast, but I still suspect it is my connection. Still, I was finally successful with liquidsoap!not the most elegant way to do things, but I followed that guide I posted above, and updated the syntax according to the official liquidsoap documentation I found out that the error was due to error in my .liq configuration script because I went to the folder where the .liq script was, using terminal, then typedliquidsoap blahblah.liqand got descriptive errors from the program, most of them were syntax errors. Stripping the file though, gave me clues as to what was working and what was not. I still believe liquidsoap really needs to improve their explanations of the stuff, but for me it was enough to make a folder called music in my home/name directory, upload some tracks to it, and then use the script like this:beging content of file# Music playlistsmusic1 = playlist.safe("~/music")#I will take care of a default file later and this one has less tahn 10, although very long tracks so I'm good #making it a safe fallible playlist for now# Start building the feed with musicradio = random([music1])#this creates a variable named radio and plays the folder in random order# Stream it outoutput.icecast(%mp3,host = "localhost", port = 8000,password = "WhatEverItMightBe", mount = "jam",name="myStation Music Service", description="ultra blahblahblah", radio)end of file contentWhen I didliquidsoap blahblah.liqit all worked. A bunch of messages were displayed with the status of each track and so on.I went to my.host:8000/jamusing various players and it was playing, using the my station music service as the artist and unknown as the title.I am sure that can of course be tweaked, but it works.

URL: https://forum.audiogames.net/post/531375/#p531375




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-19 Thread AudioGames . net Forum — Off-topic room : kaigoku via Audiogames-reflector


  


Re: icecast and accessible source clients?

As the website recommends, you can use the docker installation for AzuraCast. That'll basically take care of all the setup for you. It's recommended you have enough space on a computer and that docker can run. Also, they can deploy everything for you quickly if you use DigitalOcean or Linode.

URL: https://forum.audiogames.net/post/531337/#p531337




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-19 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

tried following a more thorough liquidsoap guide and was successful to almost every step of the way... until it tells me to run liquidsoap itself... I get the error that liquidssoap.service is not found. Googled for it, but nothing useful. I am susprised there are no more options for this but again, I guess that trying to do all of this from a mobile data connection is still too a bit ambitious.

URL: https://forum.audiogames.net/post/531330/#p531330




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-18 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


Re: icecast and accessible source clients?

wow, had a play with this azuracast and as far as I read, its very interesting. However, I guess because my connection has got a double nat and stuff going on, apparently all of the pages on the web interface show up as blank, so this is ... puzzling. I also get a sql error that denies access to a user during set up, but apparently everything is set up alright. So sadly, its impossible for me to use and configure, at least for now.

URL: https://forum.audiogames.net/post/531072/#p531072




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: icecast and accessible source clients?

2020-05-18 Thread AudioGames . net Forum — Off-topic room : kaigoku via Audiogames-reflector


  


Re: icecast and accessible source clients?

Take a look at AzuraCast. It offers a web interface to set up autoDj and other stuff. I think Station Playlist is still the standard for broadcasting. That, or Edcast if you want to do live shows.

URL: https://forum.audiogames.net/post/531050/#p531050




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


icecast and accessible source clients?

2020-05-18 Thread AudioGames . net Forum — Off-topic room : UltraLeetJ via Audiogames-reflector


  


icecast and accessible source clients?

hello, so I know that some of you run radio stations in here. I assume that you set up an icecast server remotely and then broadcast from your pc?If so, I think i have found interesting options. I know some people use programs such as radio boss for live programs, but other options would be welcome. But, For now, bandwidth constraints are a great limitation for me so I am wondering, since I do have music folders with many tracks on the same linode that I use for my icecast server if there is a way to get a program that plays those tracks in these folders randomly...I have read that one can do this by using liquidsoap as a linux program, but I followed a guide I found on their official page but the stuff they explained was way beyond what I can understand, but that would be the best way, because streaming from my pc would be a bit pointless since my provider caps a limit and then gives you really low 512 kilobits speed which is not enough for that.So, any ideas or ways of getting this to work?

URL: https://forum.audiogames.net/post/531012/#p531012




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector