• 18-04-2026, 21:13:36
    #1
    Token linkini m3u linkine çevirmek için bir uygulaması olan varmı veya nasıl çevrilir
  • 18-04-2026, 21:22:32
    #2
    PHP ile denediniz mi?

    <?php
    header("Content-Type: audio/x-mpegurl");
    header("Content-Disposition: attachment; filename=playlist.m3u");
    
    $token_link = 'http://ornek-yayin-adresi.com/playlist.m3u8?token=SENIN_GIZLI_TOKENIN';
    
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $token_link);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_USERAGENT, 'VLC/3.0.11 LibVLC/3.0.11'); 
    
    $m3u_content = curl_exec($ch);
    
    if(curl_errno($ch)){
        echo "Bağlantı hatası: " . curl_error($ch);
    } else {
        echo $m3u_content;
    }
    
    curl_close($ch);
    ?>