Results 1 to 5 of 5

Thread: Botun sonundaki type m3u8

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

    Info

    Go to Top of Post

    Default Botun sonundaki type m3u8

    Selamlar,

    show max için aşağıdaki botu calıstıyorum ve m3u8 dosyasını alıyorum. Buradaki sorun [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..

    type=m3u8 yazıldıgında player algılamıyor php dosyası olarak goruyor. Kodun ıcıne ne eklemelıyım kı bu soru ısaretınden sonrakı kısmı algılamalı



    PHP Code:
    1. <?php
    2. function ara($bas$son$yazi)    {      @preg_match_all('/' preg_quote($bas'/') .      '(.*?)'preg_quote($son'/').'/i'$yazi$m);      return @$m[1];    }    
    3. $site "http://showmax.com.tr/canliyayin";$icerik file_get_contents($site);
    4. $m3u8link ara('playlist.m3u8?e=''","ht_live"'$icerik);
    5. ?>
    6. <meta http-equiv="refresh" content="0;URL=https://ciner-live.ercdn.net/showmax/playlist.m3u8?e=<?php echo $m3u8link[0];?>">




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

  3. Go to Thank YouDownload #2
    Go to Thank You
    Yeni Üye İsyankes's Avatar

    Info

    Go to Top of Post

    Php tagının içinde şu şekilde yönlendirme yapabilirsin.

    header("Location: https://ciner-live.ercdn.net/showmax/playlist.m3u8?e=". $m3u8link[0]);


  4. The Following 6 Users Say Thank You to İsyankes For This Useful Post:

  5. Go to Thank YouDownload #3
    Go to Thank You
    Kıdemli Üye ergün's Avatar

    Info

    Go to Top of Post

    vlc playerde calistiramadim ama crome de caliyor kod da birsey eksik belki yilmaz ustam halleder


  6. The Following 3 Users Say Thank You to ergün For This Useful Post:

  7. Go to Thank YouDownload #4
    Go to Thank You
    Yeni Üye tolan's Avatar

    Info

    Go to Top of Post

    Quote Originally Posted by İsyankes View Post
    Php tagının içinde şu şekilde yönlendirme yapabilirsin.

    header("Location: https://ciner-live.ercdn.net/showmax/playlist.m3u8?e=". $m3u8link[0]);
    yönlendirmede sorun yok ama player bunu algılamıyor maalesef.


  8. The Following 3 Users Say Thank You to tolan For This Useful Post:

  9. Go to Thank YouDownload #5
    Go to Thank You
    Super Moderatör markclark's Avatar

    Info

    Go to Top of Post

    PHP Code:
    1. <?php
    2. $ch curl_init('http://showmax.com.tr/canliyayin');
    3. curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);
    4. curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    5. curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    6. curl_setopt($chCURLOPT_HTTPHEADER, array( 
    7. 'Host: showmax.com.tr',
    8. 'Connection: keep-alive',
    9. 'Upgrade-Insecure-Requests: 1',
    10. 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',
    11. 'Referer: https://www.google.com/',
    12. ));
    13. $site curl_exec($ch);
    14. curl_close ($ch);
    15. $site str_replace('\\','',$site);
    16. preg_match('#"ht_stream_m3u8":"(.*?)"#'$site$icerik);
    17. $Link $icerik[1];
    18. header ("Location: $Link");
    19. ?>


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

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
  •