Is there any way to get the live chat replay log/history for YouTube streaming video?

Chat Downloader is a tool I developed to retrieve chat messages from livestreams, videos, clips and past broadcasts. No authentication needed! The recommended way to install is from PyPI using pip: pip install chat-downloader The program can then be accessed from the command line or using the Python module: Command line chat_downloader https://www.youtube.com/watch?v=5qap5aO4i9A For advanced … Read more

YouTube API v3 – List uploaded videos

If you are using the client then Greg’s answer is correct. To do the same thing with basic requests you make the following 2 requests: GET https://www.googleapis.com/youtube/v3/channels with parameters: part=contentDetails mine=true key={YOUR_API_KEY} and header: Authorization: Bearer {Your access token} From this you will get a JSON response like so: { “kind”: “youtube#channelListResponse”, “etag”: “\”some-string\””, “pageInfo”: … Read more

How to only find videos that can be played on mobile?

You can find various search parameter listed in YouTube API v2.0 – API Query Parameters like license, restriction, paid_content that can help filter videos that are restricted for such specific reason. Also, if you can use YouTube API v3.0 there is one more option videoSyndicated that will restrict a search to only videos that can … Read more

Youtube API upload video size and length limit

The more up-to-date answer is here: https://support.google.com/youtube/answer/71673?hl=en 15 minutes is the default max length, but that can be extended by visiting https://www.youtube.com/verify The webpage says to make sure you’re using an ‘up-to-date’ version of your browser to upload files over 20GB. The current (as of Nov 12, 2016) maximum file size is 128GB and the … Read more

How to get all comments on a YouTube video?

Believe me it works https://www.googleapis.com/youtube/v3/commentThreads?key=******************&textFormat=plainText&part=snippet&videoId=kffacxfA7G4&maxResults=50 Key will be provided by the google developer console and 50 denotes 50 comments in form of a json, video id is the id of the video. For any type of queries comment below.