master
Luka Prinčič 2020-05-20 23:28:25 +02:00
parent c3f89e896f
commit ccdaa686d0
1 changed files with 4 additions and 2 deletions

@ -61,7 +61,9 @@ Now you need to get some audio to the server. You need software that will encode
What software should you use? It depends on the operating system, but many people recommend the *Broadcast Using This Tool (B.U.T.T.)* <http://danielnoethen.de/butt/> for Mac & Win. You can also search for Ladiocast in Apple Store or Mixxx DJ software to stream to an Icecast. On linux I use *DarkIce* that also has a GUI called *DarkSnow*. It's also possible to use something like ffmpeg on the commandline:
`ffmpeg -f jack -i ffmpeg_in -c:a flac -f ogg -content_type 'application/ogg' icecast://source:hackme12@134.209.249.117:8000/mystream.ogg`
`
ffmpeg -f jack -i ffmpeg_in -c:a flac -f ogg -content_type 'application/ogg' icecast://source:hackme12@134.209.249.117:8000/mystream.ogg
`
More apps are on [icecast.org page](https://icecast.org/apps/).
@ -71,7 +73,7 @@ After you configured the client and 'seemingly' started streaming you can check
Now, the direct stream url is http://IP.OF.THE.SERVER:8000/mountpoint.ogg - whatever you have chosen for mountpoint. You can embed this address in another page (like on a blog) with some simple html tags for audio to have a player ready:
```
```html
<audio controls="controls" preload="none">
<source src="http://IP.OF.THE.SERVER:8000/mountpoint.ogg" type="audio/ogg">
Your browser does not support the audio tag.