Page 5 of 11 FirstFirst ... 34567 ... LastLast
Results 21 to 25 of 51

Thread: Original YouTUBE

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

    Info

    Go to Top of Post

    Quote Originally Posted by ergün View Post
    yokmu bunun cözümü smart iptv üzeri calistiralim hadi ustalarim
    <?php

    $_id=$_GET['id'];


    function getir2($baslangic, $son, $cekilmek_istenen)
    {
    @preg_match_all('/' . preg_quote($baslangic, '/') .
    '(.*?)'. preg_quote($son, '/').'/i', $cekilmek_istenen, $m);
    return @$m[1];
    }

    $url = "https://m.youtube.com/watch?v=$_id";

    $icerik = file_get_contents($url);

    $film_adi = getir2('hlsManifestUrl":"','"},"heartb',$icerik);

    $metin = "$film_adi[0]";

    $eski = "\u0026";

    $yeni = "&";


    $metin = str_replace($eski, $yeni, $metin);


    header("Location: $metin");
    ?>

    Bunu dene


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

  3. Go to Thank YouDownload #22
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    PHP Code:
    1. <?php
    2. $Live $_GET['id'];
    3. $Playlist '{
    4. "videoId": "'.$Live.'",
    5. "context": {
    6. "client": {
    7. "clientName": "IOS",
    8. "clientVersion": "16.46",
    9. "hl": "en"
    10. }
    11. },
    12. "playbackContext": {
    13. "contentPlaybackContext": {
    14. "html5Preference": "HTML5_PREF_WANTS",
    15. "signatureTimestamp": "19096"
    16. }
    17. },
    18. "racyCheckOk": true,
    19. "contentCheckOk": true
    20. }';
    21. $ch curl_init('https://www.youtube.com/youtubei/v1/player');
    22. curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);
    23. curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    24. curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    25. curl_setopt($chCURLOPT_POSTtrue);
    26. curl_setopt($chCURLOPT_POSTFIELDS"$Playlist");
    27. curl_setopt($chCURLOPT_HTTPHEADER, array(
    28. 'Origin: https://www.youtube.com',
    29. 'X-YouTube-Client-Version: 16.46',
    30. 'X-Goog-PageId: Vd95c53d6',
    31. 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0',
    32. 'X-YouTube-Client-Name: 5',
    33. 'Content-Type: application/json; charset=utf-8',
    34. 'Host: www.youtube.com',
    35. 'Connection: Keep-Alive',
    36. 'Cache-Control: no-cache',
    37. ));
    38. $site curl_exec($ch);
    39. curl_close ($ch);
    40. $site str_replace('\\','',$site);
    41. preg_match('#"hlsManifestUrl": "(.*?)"#'$site$icerik);
    42. $Link $icerik[1];
    43. header ("Location: $Link");
    44. ?>
    Selam ve Saygılarla İyi Forumlar...



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

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

    Info

    Go to Top of Post

    tesekkürler
    Last edited by ergün; 03.05.22 at 01:24.


  6. The Following User Says Thank You to ergün For This Useful Post:

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

    Info

    Go to Top of Post

    Quote Originally Posted by cemillo View Post
    <?php

    $_id=$_GET['id'];


    function getir2($baslangic, $son, $cekilmek_istenen)
    {
    @preg_match_all('/' . preg_quote($baslangic, '/') .
    '(.*?)'. preg_quote($son, '/').'/i', $cekilmek_istenen, $m);
    return @$m[1];
    }

    $url = "https://m.youtube.com/watch?v=$_id";

    $icerik = file_get_contents($url);

    $film_adi = getir2('hlsManifestUrl":"','"},"heartb',$icerik);

    $metin = "$film_adi[0]";

    $eski = "\u0026";

    $yeni = "&";


    $metin = str_replace($eski, $yeni, $metin);


    header("Location: $metin");
    ?>

    Bunu dene
    ustam cok tesekkürler cok kanal oluyor ama malesef atv , show gibi kanallar engelleniyor sanirim onlar olmuyor


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

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

    Info

    Go to Top of Post

    Quote Originally Posted by yilmaz View Post
    PHP Code:
    1. <?php
    2. $Live $_GET['id'];
    3. $Playlist '{
    4. "videoId": "'.$Live.'",
    5. "context": {
    6. "client": {
    7. "clientName": "IOS",
    8. "clientVersion": "16.46",
    9. "hl": "en"
    10. }
    11. },
    12. "playbackContext": {
    13. "contentPlaybackContext": {
    14. "html5Preference": "HTML5_PREF_WANTS",
    15. "signatureTimestamp": "19096"
    16. }
    17. },
    18. "racyCheckOk": true,
    19. "contentCheckOk": true
    20. }';
    21. $ch curl_init('https://www.youtube.com/youtubei/v1/player');
    22. curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);
    23. curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
    24. curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    25. curl_setopt($chCURLOPT_POSTtrue);
    26. curl_setopt($chCURLOPT_POSTFIELDS"$Playlist");
    27. curl_setopt($chCURLOPT_HTTPHEADER, array(
    28. 'Origin: https://www.youtube.com',
    29. 'X-YouTube-Client-Version: 16.46',
    30. 'X-Goog-PageId: Vd95c53d6',
    31. 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0',
    32. 'X-YouTube-Client-Name: 5',
    33. 'Content-Type: application/json; charset=utf-8',
    34. 'Host: www.youtube.com',
    35. 'Connection: Keep-Alive',
    36. 'Cache-Control: no-cache',
    37. ));
    38. $site curl_exec($ch);
    39. curl_close ($ch);
    40. $site str_replace('\\','',$site);
    41. preg_match('#"hlsManifestUrl": "(.*?)"#'$site$icerik);
    42. $Link $icerik[1];
    43. header ("Location: $Link");
    44. ?>
    cok tesekkürler büyük usta yanliz verdigin kod sadece bilgisayarda oluyor


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

Page 5 of 11 FirstFirst ... 34567 ... 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
  •