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

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

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

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

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

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

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

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

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

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

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

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

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&qu

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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