User:Camilo/issue15: Difference between revisions

From XPUB & Lens-Based wiki
Line 27: Line 27:


===<span style="color:black; font-family: Alike Angular; font-weight: bold;">Liquid Soap</span>===
===<span style="color:black; font-family: Alike Angular; font-weight: bold;">Liquid Soap</span>===
* icecast: http://echo.lurk.org:999/
* icecast: http://echo.lurk.org:999/
* Liquidsoap documentation: https://www.liquidsoap.info/doc-1.4.3/quick_start.html


You have to have 3 files
You have to have 3 files

Revision as of 17:21, 27 May 2021

Radio.gif

✶.

SUMMARY

RESEARCH

SPECIAL ISSUE 15 RESEARCH EXPLORATION

PADS:

Session 1:

Session 2:

https://www.semantic-mediawiki.org/wiki/Semantic_MediaWiki http://www.warpweftmemory.net/#/notes https://en.wikipedia.org/wiki/Nepantla

PROTOTYPING

Liquid Soap

You have to have 3 files

  • myradio.liq*
set("log.file",false)
set("log.stdout",true)

myradio = audio_to_stereo(playlist("playlist.m3u", mode="normal"))
myradio = normalize(myradio)

%include "/srv/radio/passwords.liq"

output.icecast(%vorbis,
     host = ICECAST_SERVER_HOST, port = ICECAST_SERVER_PORT,
     password = ICECAST_SERVER_PASSWORD, mount = "myradio.ogg",
     mksafe(myradio))
  • myradio.m3u*

(file: the playlist written)

</syntaxhighlight> ./myfile.mp3 ./secondfile.mp3 </syntaxhighlight>

  • index.html*

audio tag:

<audio controls>
        <source src="http://echo.lurk.org:999/myradio.ogg" type="audio/ogg" controls autoplay>
</audio>

COLLECTIVE