Page 4 of 6 FirstFirst ... 23456 LastLast
Results 16 to 20 of 26

Thread: FOX TV sitesinden => PHP streamlink alma

  1. Go to Thank YouDownload #16
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    @[Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız.. usta, 14. satırda hata var diyor, el ile kopyala yapıştır, sanırım hepsini kopyala deyince kod bozuluyor, şuan çepten yazdım, laptop a geçince tekrar incelerim.
    Selam ve Saygılarla İyi Forumlar...



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

  3. Go to Thank YouDownload #17
    Go to Thank You
    Üye meteakyol's Avatar

    Info

    Go to Top of Post

    Quote Originally Posted by yilmaz View Post
    @[Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız.. usta, 14. satırda hata var diyor, el ile kopyala yapıştır, sanırım hepsini kopyala deyince kod bozuluyor, şuan çepten yazdım, laptop a geçince tekrar incelerim.
    Merhaba Yilmaz usta,
    öncellikle allah senden ve burda bütün ustalardan ve paylasan arkadaslardan razi olsun!
    Tek tek copy paste yaptim ama yinede ayni hata veriyor!
    Selam ve saygilar seninle olsun
    Mete
    Last edited by meteakyol; 04.12.22 at 00:08. Reason: düzeltme


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

  5. Go to Thank YouDownload #18
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    @[Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız.. ustam
    Birde böyle deneyin.

    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. $headers = array(
    6.   'Host: www.fox.com.tr',
    7.   'Connection: keep-alive',
    8.   'Upgrade-Insecure-Requests: 1',
    9.   'User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko',
    10.   'Referer: https://www.fox.com.tr/'
    11. );
    12. curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);
    13. curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    14. curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    15. curl_setopt($chCURLOPT_HTTPHEADER$headers);
    16. $site curl_exec($ch);
    17. curl_close ($ch);
    18. $site str_replace('\\','',$site);
    19. preg_match('#source : \'(.*?)\'#'$site$icerik);
    20. $Link $icerik[1];
    21. echo $Link;
    22. ?>
    Selam ve Saygılarla İyi Forumlar...



  6. The Following User Says Thank You to yilmaz For This Useful Post:

  7. Go to Thank YouDownload #19
    Go to Thank You
    Üye meteakyol's Avatar

    Info

    Go to Top of Post

    Günaydin ve hayirli pazar günü diliyorum sana Yilmaz usta ve diger herkese! :)

    Copy paste, sonuc:
    Parse error: syntax error, unexpected ''Host: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..'' (T_CONSTANT_ENCAPSED_STRING), expecting ',' or ')' in on line 6

    Bu hata php versionuyla ilgili olabilirmi?
    Bazen öyle yaziyor google arastirmamda?

    Selam?
    Mete
    Last edited by meteakyol; 04.12.22 at 09:47. Reason: düzeltme


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

  9. Go to Thank YouDownload #20
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    file_get_contents fonksiyon ilede çalışıyor
    PHP Code:
    1. <?php
    2. $site file_get_contents("https://www.fox.com.tr/canli-yayin");
    3. $site str_replace('\\','',$site);
    4. preg_match('#source : \'(.*?)\'#'$site$icerik);
    5. $Link $icerik[1];
    6. header ("Location: $Link");
    7. ?>
    [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...



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

Page 4 of 6 FirstFirst ... 23456 LastLast

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 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
  •