Page 3 of 6 FirstFirst 12345 ... LastLast
Results 11 to 15 of 26

Thread: FOX TV sitesinden => PHP streamlink alma

  1. Go to Thank YouDownload #11
    Go to Thank You
    Üye meteakyol's Avatar

    Info

    Go to Top of Post

    Merhaba

    ben bu php kodu diyorum

    <?php
    $Live = $_GET['HLS'];
    $ch = curl_init('https://www.fox.com.tr/'.$Live.'');
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Host: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..',
    'Connection: keep-alive',
    'Upgrade-Insecure-Requests: 1',
    'User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko',
    'Referer: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..',
    ));
    $site = curl_exec($ch);
    curl_close ($ch);
    $site = str_replace('\\','',$site);
    preg_match('#source : \'(.*?)\'#', $site, $icerik);
    $Link = $icerik[1];
    header ("Location: $Link");
    ?>

    Bunu nasil düzelttim yani nasil streamlinkini fox sayfasindan alabiliriz!

    Simdiden tesekkür ederim.

    Selam
    Mete


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

  3. Go to Thank YouDownload #12
    Go to Thank You
    Kıdemli Üye Hayallerinresmi's Avatar

    Info

    Go to Top of Post

    FOX TV M3U8 LİNK HD SACECE
    [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Last edited by Hayallerinresmi; 18.12.22 at 09:37.


  4. The Following 4 Users Say Thank You to Hayallerinresmi For This Useful Post:

  5. Go to Thank YouDownload #13
    Go to Thank You
    Üye meteakyol's Avatar

    Info

    Go to Top of Post

    Quote Originally Posted by responsiveuser View Post
    FOX TV M3U8 LİNK HD SACECE
    [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Merhaba arkadasim,

    biz burda PHP koduyla ilgili sorduk, yani php kodu nasil olmali, sayfadaki linki alabilmek icin.
    Yinede tesekkür ederim.

    Selam
    Mete


  6. The Following 3 Users Say Thank You to meteakyol For This Useful Post:

  7. Go to Thank YouDownload #14
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    Quote Originally Posted by meteakyol View Post
    Merhaba arkadasim,

    biz burda PHP koduyla ilgili sorduk, yani php kodu nasil olmali, sayfadaki linki alabilmek icin.
    Yinede tesekkür ederim.

    Selam
    Mete
    PHP Code:
    1. <?php
    2. header("Content-Type: audio/mpegurl");
    3. header("Content-Disposition: attachment; filename=foxtv.m3u");
    4. $ch curl_init('https://www.fox.com.tr/canli-yayin');
    5. curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);
    6. curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    7. curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    8. curl_setopt($chCURLOPT_HTTPHEADER, array(
    9. 'Host: www.fox.com.tr',
    10. 'Connection: keep-alive',
    11. 'Upgrade-Insecure-Requests: 1',
    12. 'User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko',
    13. 'Referer: https://www.fox.com.tr/',
    14. ));
    15. $site curl_exec($ch);
    16. curl_close ($ch);
    17. $site str_replace('\\','',$site);
    18. preg_match('#source : \'(.*?)\'#'$site$icerik);
    19. $Link $icerik[1];
    20. echo $Link;
    21. ?>
    Bu şekil çalışıyor
    Demo [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Selam ve Saygılarla İyi Forumlar...



  8. The Following 5 Users Say Thank You to yilmaz For This Useful Post:

  9. Go to Thank YouDownload #15
    Go to Thank You
    Üye meteakyol's Avatar

    Info

    Go to Top of Post

    Quote Originally Posted by yilmaz View Post
    PHP Code:
    1. <?php
    2. header("Content-Type: audio/mpegurl");
    3. header("Content-Disposition: attachment; filename=foxtv.m3u");
    4. $ch curl_init('https://www.fox.com.tr/canli-yayin');
    5. curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);
    6. curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    7. curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    8. curl_setopt($chCURLOPT_HTTPHEADER, array(
    9. 'Host: www.fox.com.tr',
    10. 'Connection: keep-alive',
    11. 'Upgrade-Insecure-Requests: 1',
    12. 'User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko',
    13. 'Referer: https://www.fox.com.tr/',
    14. ));
    15. $site curl_exec($ch);
    16. curl_close ($ch);
    17. $site str_replace('\\','',$site);
    18. preg_match('#source : \'(.*?)\'#'$site$icerik);
    19. $Link $icerik[1];
    20. echo $Link;
    21. ?>
    Bu şekil çalışıyor
    Demo [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Tesekkür ederim Yilmaz usta!

    Demo calisiyor, süphesiz, bende bu php kodu denedim, bende böyle bir hata geliyor:
    Parse error: syntax error, unexpected ')' in ... on line 14

    Bunu nasil düzeltirebiliriz?

    Selam
    Mete


  10. The Following User Says Thank You to meteakyol For This Useful Post:

Page 3 of 6 FirstFirst 12345 ... LastLast

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
  •