blob: fc8a23ef21566fe04742355a660e1d8102b551a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
title: "Stream chill radio"
url: stream-chill-radio.html
date: 2023-06-01T22:10:36+02:00
type: notes
draft: false
tags: [audio]
---
Just click play to listen to the stream.
<audio id="stream-chill-radio" controls>
<source src="http://radio.stereoscenic.com/mod-s" type="audio/ogg">
</audio>
<script>
const streamChillRadio = document.getElementById('stream-chill-radio');
streamChillRadio.volume = 0.5;
</script>
Source: https://ambientmodern.com
|