Page 3 of 4 FirstFirst 1234 LastLast
Results 11 to 15 of 17

Thread: Curl ile sitedeki m3u8 linkleri çekme (Kodlar aşağıda)

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

    Info

    Go to Top of Post

    selam ustalar,


    örnegin bu sekil yapsam bu sayifadan "https://www.canlitv.me/atv-avrupa-canli" cekme imkanim var mi?


    Code:
    1. <?php
    2. // URL der Seite, von der wir den M3U-Stream extrahieren möchten
    3. $url = "https://www.canlitv.me/atv-avrupa-canli";
    4. // cURL-Verbindung aufbauen
    5. $ch = curl_init();
    6. curl_setopt($ch, CURLOPT_URL, $url);
    7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    8. $html = curl_exec($ch);
    9. curl_close($ch);
    10. // Die URL des M3U-Streams extrahieren
    11. preg_match('/https?:\/\/.*\.m3u8/', $html, $matches);
    12. $m3u_url = $matches[0];
    13. // M3U-Datei schreiben
    14. file_put_contents("atv_avrupa_canli.m3u", $m3u_url);
    15. ?>
    Saygilar


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

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

    Info

    Go to Top of Post

    kardes [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız.. sitesi gibi sitelerden yayin eskiden aliliniyordu ama adamlar simdi ip adressi eklediler ve artik calismiyor


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

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

    Info

    Go to Top of Post

    Kardeşim kolay gelsin emeğine sağlık ama bunu bir php olarak versen daha anlaşılır olsa


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

  7. Go to Thank YouDownload #14
    Go to Thank You
    Yeni Üye Kali's Avatar

    Info

    Go to Top of Post

    Eline sağlik usta, ama Ben hiç anlamiyom.hazir php olsa daha iyi olur.cok tesekur ederim


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

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

    Info

    Go to Top of Post

    ah ah nerde o güzel günler kalmadi artik belki vardir ama kimse paylasmiyor php


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

Page 3 of 4 FirstFirst 1234 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
  •