{"id":6,"date":"2026-07-12T00:24:34","date_gmt":"2026-07-12T03:24:34","guid":{"rendered":"https:\/\/djsenaccion.club\/?page_id=6"},"modified":"2026-07-12T02:50:58","modified_gmt":"2026-07-12T05:50:58","slug":"inicio","status":"publish","type":"page","link":"https:\/\/djsenaccion.club\/","title":{"rendered":"Inicio"},"content":{"rendered":"\n<div id=\"djs-club\">\n \n  <img decoding=\"async\" class=\"djs-logo\"\n       src=\"https:\/\/djsenaccion.club\/wp-content\/uploads\/logo.png\"\n       alt=\"Logo DJS en Acci\u00f3n Club\"\n       onerror=\"this.style.display='none'\">\n \n  <h1 class=\"djs-title\">DJS EN ACCI\u00d3N CLUB<\/h1>\n  <p class=\"djs-sub\">Plataforma de Demostraci\u00f3n de Streaming Multimedia HD<\/p>\n \n  <!-- ---------- SE\u00d1AL TV ---------- -->\n  <section class=\"djs-card\">\n    <h2 class=\"djs-h2 djs-h2--tv\">\n      <span class=\"djs-dot\"><\/span> \ud83d\udcfa SE\u00d1AL TV (Video HD 1080p \/ OBS Live)\n    <\/h2>\n \n    <div class=\"djs-video-wrap\">\n      <video id=\"djs-tv\"\n             data-hls=\"https:\/\/tv.djsenaccion.club\/hls\/stream.m3u8\"\n             controls playsinline muted poster=\"\"><\/video>\n      <div id=\"djs-tv-offline\" class=\"djs-offline\">Se\u00f1al fuera del aire<\/div>\n    <\/div>\n \n    <p class=\"djs-note\">\n      Par\u00e1metros exigidos para DJs: 1080p @ 30 FPS \/ Bitrate: 4000 Kbps fijos en OBS.\n    <\/p>\n  <\/section>\n \n  <!-- ---------- SE\u00d1AL RADIO ---------- -->\n  <section class=\"djs-card djs-card--left\">\n    <h2 class=\"djs-h2 djs-h2--radio\">\ud83d\udcfb SE\u00d1AL RADIO (Solo Audio HQ)<\/h2>\n \n    <div class=\"djs-radio-row\">\n      <audio id=\"djs-radio\"\n             data-radio=\"https:\/\/radio.djsenaccion.club\/stream\"\n             controls preload=\"none\"><\/audio>\n \n      <div class=\"djs-radio-info\">\n        <span class=\"djs-ok\">\u2714 Estabilidad 24\/7<\/span><br>\n        <span class=\"djs-dim\">Formato: MP3 \/ 192 Kbps Digital<\/span>\n      <\/div>\n    <\/div>\n  <\/section>\n \n<\/div>\n \n<style>\n  #djs-club{\n    font-family:'Helvetica Neue',Arial,sans-serif;\n    background:#0b0b0f;color:#fff;text-align:center;\n    padding:40px 20px;border-radius:16px;border:1px solid #1f1f2e;\n    max-width:800px;margin:20px auto;box-shadow:0 10px 30px rgba(0,0,0,.5);\n    box-sizing:border-box;\n  }\n  #djs-club *{box-sizing:border-box;}\n  .djs-logo{width:64px;height:auto;margin:0 auto 10px;display:block;}\n  .djs-title{font-size:28px;margin:0 0 10px;letter-spacing:1px;color:#00ffcc;}\n  .djs-sub{color:#8a8a9e;font-size:14px;margin:0 0 30px;}\n \n  .djs-card{\n    background:#13131a;padding:20px;border-radius:12px;\n    border:1px solid #2a2a3a;margin-bottom:24px;\n  }\n  .djs-card:last-child{margin-bottom:0;}\n  .djs-card--left{text-align:left;}\n \n  .djs-h2{font-size:18px;margin:0 0 15px;text-align:left;\n          display:flex;align-items:center;gap:10px;}\n  .djs-h2--tv{color:#ff007f;}\n  .djs-h2--radio{color:#00ffcc;}\n \n  .djs-dot{\n    width:10px;height:10px;background:#f00;border-radius:50%;\n    flex:0 0 auto;animation:djs-pulse 1.4s infinite;\n  }\n  @keyframes djs-pulse{0%,100%{opacity:1}50%{opacity:.25}}\n \n  .djs-video-wrap{position:relative;border-radius:8px;overflow:hidden;background:#000;}\n  #djs-tv{display:block;width:100%;aspect-ratio:16\/9;background:#000;}\n  .djs-offline{\n    position:absolute;inset:0;display:none;\n    align-items:center;justify-content:center;\n    color:#6c6c7d;font-size:15px;letter-spacing:1px;\n    background:#000;\n  }\n  .djs-offline.on{display:flex;}\n \n  .djs-note{color:#6c6c7d;font-size:12px;margin:10px 0 0;text-align:left;}\n \n  .djs-radio-row{display:flex;flex-wrap:wrap;align-items:center;gap:20px;}\n  #djs-radio{flex:1 1 250px;min-width:250px;}\n  .djs-radio-info{font-size:13px;color:#8a8a9e;}\n  .djs-ok{color:#00ffcc;}\n  .djs-dim{color:#6c6c7d;}\n \n  @media (max-width:600px){\n    #djs-club{padding:24px 14px;}\n    .djs-title{font-size:22px;}\n  }\n<\/style>\n \n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/hls.js@1\"><\/script>\n<script>\n(function () {\n  var video   = document.getElementById('djs-tv');\n  var offline = document.getElementById('djs-tv-offline');\n  var radio   = document.getElementById('djs-radio');\n  if (!video) return;\n \n  \/\/ Radio: se toma la URL del atributo data-radio\n  if (radio) radio.src = radio.dataset.radio;\n \n  var src = video.dataset.hls;\n \n  function showOffline(){ offline.classList.add('on'); }\n \n  if (window.Hls && window.Hls.isSupported()) {\n    var hls = new Hls({ lowLatencyMode: true });\n    hls.loadSource(src);\n    hls.attachMedia(video);\n    hls.on(Hls.Events.ERROR, function (e, data) {\n      if (data.fatal) showOffline();\n    });\n  } else if (video.canPlayType('application\/vnd.apple.mpegurl')) {\n    \/\/ Safari \/ iOS reproducen HLS de forma nativa\n    video.src = src;\n    video.addEventListener('error', showOffline);\n  } else {\n    showOffline();\n  }\n})();\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>DJS EN ACCI\u00d3N CLUB Plataforma de Demostraci\u00f3n de Streaming Multimedia HD \ud83d\udcfa SE\u00d1AL TV (Video HD 1080p \/ OBS Live) Se\u00f1al fuera del aire Par\u00e1metros exigidos para DJs: 1080p @ 30 FPS \/ Bitrate: 4000 Kbps fijos en OBS. \ud83d\udcfb SE\u00d1AL RADIO (Solo Audio HQ) \u2714 Estabilidad 24\/7 Formato: MP3 \/ 192 Kbps Digital<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/pages\/6","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/comments?post=6"}],"version-history":[{"count":9,"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/pages\/6\/revisions"}],"predecessor-version":[{"id":18,"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/pages\/6\/revisions\/18"}],"wp:attachment":[{"href":"https:\/\/djsenaccion.club\/index.php\/wp-json\/wp\/v2\/media?parent=6"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}