RD5 GOLD WEB EDITOR
π 0.gif
π 11.jpg
π 22.jpg
π AVISO-ALEX.PNG
π AVISO-ALEX2.PNG
π LOGUITO.JPG
π MUSICA.jpg
π OXODISCO-PLAY.gif
π OXODISCO2-STOP.gif
π XVOL1.gif
π XVOL2.gif
π aa4.html
π alex1.mp3
π aviso-evento.jpg
π barra0.gif
π barra1.gif
π barra2.gif
π barra3.gif
π barra4.gif
π binicio1.gif
π binicio2.gif
π canal.php.php
π centenax.gif
π click.mp3
π contacto.html
π cuenta.html
π decenax.gif
π decimax.gif
π dinero.html
π disco-c5d.html
π disco-d2.gif
π disco-oxo.gif
π disco-visitantes.html
π discob00.html
π discob000.html
π discob1.html
π donaciones.html
π donaciones.mp3
π donaciones.txt
π eliminar_video.php
π enapodcast.mp3
π eventos.html
π eventos.jpg
π filtro1.jpg
π filtro2.jpg
π fondo.jpg
π fondo2.jpg
π franja.GIF
π franja.gif
π franja2.GIF
π franja2.gif
π gold10-2.php
π gold10.php
π gold62.php
π gold93.php
π gp.php
π gw.php
π index.html
π index2.html
π index3.html
π index4.html
π logo.jpg
π manager3.php
π mdq lado 2.wav.
π meditacion-7.mp3
π mic.jpg
π minib2x2.html
π mm.php
π monitor.html
π musica.html
π oxoradio-play1.gif
π oxoradio-stop.gif
π pod-rlv.html
π pod-rlv2.html
π podcast-play.gif
π podcast-stops.gif
π podcast-visitantes.mp3
π podcast.jpg
π podcast2.jpg
π podcast2.mp3
π probando.html
π prueba.html
π prueba3.html
π publi-ing.jpg
π radio-c5d.html
π radio-rlv.html
π radio.GIF
π radio.jpg
π radio00.gif
π radio01.html
π radio02.html
π red.html
π repro2.html
π repros.html
π repros2.html
π repros4.html
π repros5.html
π repros6.html
π repros7.html
π repros8.html
π rlv-
π rlv-fresia.html
π rlv-logo2.gif
π rlv.html
π rlvv.html
π robots.txt
π rr.html
π sarita1.mp4
π sitemap.xml
π social.sqlite
π solo-podcast.html
π t-rlv.html
π titulo2.jpg
π unidadx.gif
π videos.html
π videos.jpg
π vinilo.mp3
π volumen-mas.jpg
π volumen-menos.jpg
π xrepros8.html
CΓDIGO (OSCURO GOLD)
VISTA PREVIA
πΎ GUARDAR
Tema: Monokai
Tema: Dracula
Tema: Material
Tema: Blackboard
Tema: Abyss
Monospace
Courier
12px
14px
16px
18px
20px
22px
24px
26px
28px
30px
32px
β· Rehacer
βΆ Deshacer
π BUSCAR
+ REPRO RADIO
SIG.
X
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Radio Ultra RΓ‘pida</title> <style> body{ background:black; color:white; font-family:Arial; padding:10px; } h2{margin-bottom:15px;} #controls{ display:flex; gap:20px; align-items:center; flex-wrap:wrap; } button{ padding:10px 25px; background:red; border:1px solid #555; color:black; cursor:pointer; } .slider-box{ display:flex; flex-direction:column; gap:5px; } input[type=range]{ width:150px; height:12px; } #vumeter{ width:100%; height:25px; background:#111; margin-top:20px; border-radius:10px; overflow:hidden; } #vumeter-fill{ height:100%; width:0%; background:linear-gradient(90deg,lime,yellow,red); transition:width 0.08s linear; } </style> </head> <body> <h2>π RLV - Carga rapida de seΓ±al</h2> <div id="controls"> <button id="playBtn">PLAY</button> <div class="slider-box"> <label>Volumen</label> <input type="range" min="0" max="1" step="0.01" value="0.8" id="vol"> </div> <div class="slider-box"> <label>Graves</label> <input type="range" min="-15" max="15" value="0" id="bass"> </div> <div class="slider-box"> <label>Agudos</label> <input type="range" min="-15" max="15" value="0" id="treble"> </div> </div> <div id="vumeter"><div id="vumeter-fill"></div></div> <script> const audio = new Audio("https://stream.zeno.fm/yw17eqsypg8uv"); audio.preload = "none"; audio.crossOrigin = "anonymous"; let ctx, analyser, gainNode, bassFilter, trebleFilter, source; let playing = false; const playBtn = document.getElementById("playBtn"); const vumeter = document.getElementById("vumeter-fill"); // Inicializa solo al tocar PLAY (mΓ‘xima velocidad) function initAudio(){ if(ctx) return; ctx = new (window.AudioContext || window.webkitAudioContext)(); analyser = ctx.createAnalyser(); analyser.fftSize = 64; gainNode = ctx.createGain(); bassFilter = ctx.createBiquadFilter(); bassFilter.type = "lowshelf"; bassFilter.frequency.value = 120; trebleFilter = ctx.createBiquadFilter(); trebleFilter.type = "highshelf"; trebleFilter.frequency.value = 6000; source = ctx.createMediaElementSource(audio); source.connect(bassFilter); bassFilter.connect(trebleFilter); trebleFilter.connect(gainNode); gainNode.connect(analyser); analyser.connect(ctx.destination); startVumeter(); } // PLAY / STOP playBtn.onclick = () => { initAudio(); if(!playing){ audio.play(); playBtn.textContent = "STOP"; playing = true; }else{ audio.pause(); playBtn.textContent = "PLAY"; playing = false; } }; // Controles vol.oninput = e => gainNode.gain.value = e.target.value; bass.oninput = e => bassFilter.gain.value = e.target.value; treble.oninput = e => trebleFilter.gain.value = e.target.value; // VΓΊmetro ultra liviano function startVumeter(){ const data = new Uint8Array(analyser.frequencyBinCount); function loop(){ analyser.getByteFrequencyData(data); let level = data.reduce((a,b)=>a+b,0) / data.length; vumeter.style.width = level + "%"; requestAnimationFrame(loop); } loop(); } </script> </body> </html>