Google Video no longer able to retrieve captions?

Captions in default language (single available or English it seems): To get captions of a YouTube video just use this Linux command (using curl and base64): curl -s ‘https://www.youtube.com/youtubei/v1/get_transcript?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8’ -H ‘Content-Type: application/json’ –data-raw “{\”context\”:{\”client\”:{\”clientName\”:\”WEB\”,\”clientVersion\”:\”2.2021111\”}},\”params\”:\”$(printf ‘\n\x0bVIDEO_ID’ | base64)\”}” Change the VIDEO_ID parameter with the one interesting you. Note: the key isn’t a YouTube Data API v3 … Read more

How to check if YouTube channel is streaming live

You can do this by using search.list and specifying the channel ID, setting the type to video, and setting eventType to live. For example, when I searched for: https://www.googleapis.com/youtube/v3/search?part=snippet&channelId=UCXswCcAMb5bvEUIDEzXFGYg&type=video&eventType=live&key=[API_KEY] I got the following: { “kind”: “youtube#searchListResponse”, “etag”: “\”sGDdEsjSJ_SnACpEvVQ6MtTzkrI/gE5P_aKHWIIc6YSpRcOE57lf9oE\””, “pageInfo”: { “totalResults”: 1, “resultsPerPage”: 5 }, “items”: [ { “kind”: “youtube#searchResult”, “etag”: “\”sGDdEsjSJ_SnACpEvVQ6MtTzkrI/H-6Tm7-JewZC0-CW4ALwOiq9wjs\””, “id”: { “kind”: … Read more