Page 1 of 13 12311 ... LastLast
Results 1 to 5 of 63

Thread: Youtube den canli yayinlardan m3u8 alma işlemi.

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

    Info

    Go to Top of Post

    Default Youtube den canli yayinlardan m3u8 alma işlemi.

    Önce bir php file yapıyoruz.

    örnek yt.php

    Youtube de canli yayin yapan kanalın id sini alip mesala haberturk [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..

    Mesala yt.php?id=iYY4F4EbWLc Bu şekil örnek haberturk kanalının id si şimdi bunun m3u8 i çiktı olarak çikacak.

    PHP Code:
    1. <?PHP
    2. $channelid $_GET["id"];
    3. ini_set("user_agent","facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)");
    4. /* gets the data from a URL */
    5. function get_data($url) {
    6.     $ch curl_init();
    7.     $timeout 5;
    8.     curl_setopt($chCURLOPT_URL$url);
    9.     curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    10.     curl_setopt($chCURLOPT_USERAGENT"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)");
    11.     curl_setopt($chCURLOPT_REFERER"http://facebook.com");
    12.     curl_setopt($chCURLOPT_RETURNTRANSFER1);
    13.     curl_setopt($chCURLOPT_CONNECTTIMEOUT$timeout);
    14.     $data curl_exec($ch);
    15.     curl_close($ch);
    16.     return $data;
    17. }
    18. $string get_data('https://www.youtube.com/watch?v=' $channelid);
    19. preg_match_all('/(hlsvp.*m3u8)/',$string,$matchesPREG_PATTERN_ORDER);
    20. $var1=$matches[1][0];
    21. $var1 substr($var18);
    22. $var1=str_replace("\/""/"$var1);
    23. #Quality Settings
    24. /* 96=1920x1080, 95=1280x720, 94=854x480, 93=640x360 */
    25. $man get_data($var1);
    26. preg_match_all('/(https:\/.*\/93\/.*index.m3u8)/U',$man,$matchesPREG_PATTERN_ORDER);
    27. $var2=$matches[1][0];
    28. //header("Content-type: application/vnd.apple.mpegurl");
    29. //header("Location: $var2");
    30. echo $var2;
    31. ?>
    Bu şekil

    [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Last edited by bahri; 11.03.18 at 23:34.




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

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

    Info

    Go to Top of Post

    uygulama güzel fakat calismiyor Youtube de sunulan canli yayinlar tokenli galiba


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

  5. Go to Thank YouDownload #3
    Go to Thank You
    Üye bahri's Avatar

    Info

    Go to Top of Post

    Selamün aleyküm gece 22.24 de denedim saat 04 00 de daha çalişıyordu. Yine en uzun bu çalişıyor.

    İlk once bir webserver olması lazım bu dosya orda yuklu olması lazım. Ordan dosya çagrıldıkça çalişması gerek.

    Bu aksam yuklerim kendi serverime. Link veririm.


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

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

    Info

    Go to Top of Post

    Link

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


    [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız.. Buruya diger kanalların iYY4F4EbWLc buna benzer id sini yaz o kanalin m3u8 çıkar.

    [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Last edited by bahri; 16.03.18 at 21:45.


  8. The Following 16 Users Say Thank You to bahri For This Useful Post:

  9. Go to Thank YouDownload #5
    Go to Thank You
    Üye bahri's Avatar

    Info

    Go to Top of Post

    Bunu bir dene [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..

    Reklama kacarsa yonetici arkadaslar silebilir.


  10. The Following 11 Users Say Thank You to bahri For This Useful Post:

Page 1 of 13 12311 ... 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
  •