Results 1 to 1 of 1

Thread: Show Turk php

  1. Go to Thank YouDownload #1
    Go to Thank You
    Yeni Üye yasiniyigun's Avatar

    Info

    Go to Top of Post

    Mesaj Show Turk php

    Local ve remote olarak çalışır

    PHP Code:
    1. <?php
    2. $url "https://www.showturk.com.tr/canli-yayin";
    3. $kaynak = @file_get_contents($url);
    4. if ($kaynak === FALSE) { 
    5.    die("Sayfa içeriği alınamadı");}
    6. // M3U8 dosyasının başlangıç ve bitiş işaretlerini temizle
    7. $kaynak str_replace('\"''"'$kaynak);
    8. $kaynak str_replace('\\/''/'$kaynak);
    9. // M3U8 dosyasının başlangıç URL'sini bulma
    10. $start strpos($kaynak'https://ciner-live.ercdn.net/');
    11. if ($start !== false) {
    12.     $end strpos($kaynak'"'$start);
    13.     $m3u8_url substr($kaynak$start$end $start);
    14.     // HTTP başlıklarını ayarla 
    15.    header("Content-type: application/vnd.apple.mpegurl");
    16.     header("Location: $m3u8_url");
    17. } else {    
    18. // Hata ayıklama    
    19.    echo "M3U8 dosyası bulunamadı. Kaynak kod:<br>"
    20.    echo htmlentities($kaynak);
    21. }
    22. ?>




  2. The Following 7 Users Say Thank You to yasiniyigun For This Useful Post:

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •