Posts

test new

 // 1. اختيار دولة

const country = "Germany";


// 2. جلب محطات الدولة

fetch(`https://de1.api.radio-browser.info/json/stations/bycountry/${country}`)

  .then(response => response.json())

  .then(stations => {

    

    // 3. اختيار محطة عشوائية

    const randomStation = stations[Math.floor(Math.random() * stations.length)];

    

    // 4. تشغيل المحطة

    const audioPlayer = new Audio(randomStation.url_resolved);

    audioPlayer.play();

    

    console.log(`Now playing: ${randomStation.name}`);

  });