Jump to content
  • הצטרפו למשפחה

    היי, היי אתה (או את) שם!

    אנחנו יודעים, נחמד להיות אנונימי, ולמי בכלל יש כוח להירשם או להיות עכשיו "החדשים האלה".

    אבל בתור חברי פורום רשומים תוכלו להנות ממערכת הודעות פרטיות, לנהל מעקב אחרי כל הנושאים בהם הייתם פעילים, ובכלל, להיות חלק מקהילת הרכב הכי גדולה, הכי מגניבה, וכן - גם הכי שרוטה, באינטרנט הישראלי. 

    אז קדימה, למה אתם מחכים? בואו והצטרפו ותהיו חלק מהמשפחה הקצת דפוקה שלנו.
     

הפקת רשימת Liked Videos מ YouTube


פוסטים מומלצים

פורסם

היי האם מישהו מכיר דרך להפיק רשימה

של כל הפלייליסט של Liked Videos מחשבון יוטיוב?

 

ניסיתי כל מיני דרכים דרך חשבון הגוגל,

שהפיקו רק רשימה חלקית מפליליסטים אחרים

אבל לא מהפלייליסט הזה

 

תודה

פורסם

שאלה קלאסית ל- ChatGPT:

Yes, you can create a list of videos you've liked on YouTube in several ways. Here are a few options:

1. Using Your YouTube Liked Videos Playlist

YouTube automatically creates a playlist of all videos you've liked. You can access and share this playlist if you want:

  1. Go to YouTube: Open YouTube and sign in with your account.
  2. Navigate to Library: On the left side of the page, click on "Library."
  3. Find "Liked videos": Under "Playlists," you'll see "Liked videos." This is a playlist of all the videos you've liked.
  4. Make it a Shareable Playlist:
    • By default, your "Liked videos" playlist is private, but you can use it as a personal reference or manually create another playlist with selected videos from this list that you want to share.

2. Create a New Public or Private Playlist

If you prefer to create a customized list:

  1. Go to the Video: Find the video you’ve liked that you want to add to a new playlist.
  2. Click the "Save" Button: Below the video, click "Save."
  3. Create a New Playlist: You can create a new playlist and add this video. Name your playlist, and select whether you want it to be "Public," "Unlisted," or "Private."
  4. Add More Videos: Repeat the process for other videos from your "Liked videos" list to add them to this new playlist.

3. Using YouTube API for Custom Lists (Advanced Option)

If you're comfortable with some coding or automation tools, you could use the YouTube Data API to create a list of videos that you've liked. This method allows more flexibility, such as exporting the list to a different format:

  1. Set Up API Access: Go to Google Developers Console, create a project, and enable the YouTube Data API.

  2. Get Your Liked Videos: Use a script to call the API and list the videos you've liked. Here’s a simple example in Python:

     
    python
    Copy code
    from googleapiclient.discovery import build api_key = "YOUR_YOUTUBE_API_KEY" youtube = build('youtube', 'v3', developerKey=api_key) request = youtube.videos().list( part="snippet,contentDetails,statistics", myRating="like" ) response = request.execute() for item in response['items']: print(f"Title: {item['snippet']['title']}, URL: https://www.youtube.com/watch?v={item['id']}")

This script will give you a list of liked videos, and you can further modify it to export to a file or create a custom list.

Summary

  • You can use YouTube's default "Liked videos" playlist.
  • Create a custom playlist to share or categorize liked videos.
  • Use YouTube's API to create a more customized list programmatically.

If you want more detailed steps on any of these methods, let me know!

פורסם

ראשית, תודה

אז זה כנראה לא כל כך פשוט..

נראה אי אפשר עם API Key,

צריך OAuth 2

יצרתי כזה id ו secret

אבל גם אי אפשר צריך לעשות publish ולחכות שגוגל יאשרו את הapp הזה

כי כאשר זה על מצב טסטינג אי אפשר כי מה שמנסים לקרוא, ה api אליו מנסים לגשת, נחשב פרמטר "פרטי"..

אז עשיתי משהו כזה וצריך לחכות 3-5 ימים שוגגל יאשרו, נחייה ונראה..

 

אם יש למישהו עוד רעיון בנתיים, פתוח להצעות

פורסם

באמצעות זה הצלחתי תהתקדם, אפשר להוריד את הרשימה, אני אנסה לחפש אופציה רק להוריד את הרשימה שמית ולא ממש להוריד כל וידאו כי יש שם איזה 3000 

 

 

 

×
×
  • תוכן חדש...