I want to download YouTube videos in c.How I can download it.I am using YouTube API v3.Now I am able to get video title, views, description, video length etc.But I don't know how i download it. I don't know about a library in c to download YouTube videos.If anyone knows please help.I am using this API request to get the video information.
https://www.googleapis.com/youtube/v3/videos?part=snippet&key={your-api-key}&id={your-youtube-video-id}
{"kind": "youtube#videoListResponse","etag": "6a0ft8cI2XyM5s752pwug_grG3s","items": [ {"kind": "youtube#video","etag": "C2lc6XAs6HMCMn1PR8WVeEebvds","id": "Ih2WTyY62J4","snippet": {"publishedAt": "2020-04-26T01:36:25Z","channelId": "UCX6OQ3DkcsbYNE6H8uQQuVA","title": "$250,000 Influencer Rock, Paper, Scissors Tournament","description": "This rock, paper, scissors tournament consists of 32 of the worlds biggest influencers! $250,000 will go to a charity of the winner's choice. :D\n\nGame 1 - David Dobrik vs Tana Mongeau\nGame 2 - Jeffree Star vs Casey Neistat \nGame 3 - Faze Rug vs iJustine\nGame 4 - Mini Ladd vs Chris Ramsay\nGame 5 - Valkyrae vs Kwebble\nGame 6 - Matt Dajer (of Yes Theory) vs KSI\nGame 7 - Mark Rober vs LaurDIY (Lauren)\nGame 8 - Matpat (of The Game Theorists) vs Matt Stonie\nGame 9 - Ninja vs Lazarbeam\nGame 10 - Tfue vs Pokimane\nGame 11 - Nadeshot vs Jack Black\nGame 12 - Marques Brownlee vs Addison Rae\nGame 13 - Zach King vs LaurenZside\nGame 14 - Dallmyd vs Jaiden Animations\nGame 15 - Preston vs Juanpa\nGame 16 - Rosanna Pansino vs Juca\n\n0:00 Intro\n0:45 Rock Paper Scissors Challenge\n5:00 Rock Paper Scissors Challenge Pt II\n10:13 Rock Paper Scissors Challenge Pt III\n14:30 Rock Paper Scissors Challenge Pt IV\n19:10 Rock Paper Scissors Challenge Pt V\n25:18 Finale","thumbnails": {"default": {"url": "https://i.ytimg.com/vi/Ih2WTyY62J4/default.jpg","width": 120,"height": 90 },"medium": {"url": "https://i.ytimg.com/vi/Ih2WTyY62J4/mqdefault.jpg","width": 320,"height": 180 },"high": {"url": "https://i.ytimg.com/vi/Ih2WTyY62J4/hqdefault.jpg","width": 480,"height": 360 },"standard": {"url": "https://i.ytimg.com/vi/Ih2WTyY62J4/sddefault.jpg","width": 640,"height": 480 },"maxres": {"url": "https://i.ytimg.com/vi/Ih2WTyY62J4/maxresdefault.jpg","width": 1280,"height": 720 } },"channelTitle": "MrBeast","categoryId": "24","liveBroadcastContent": "none","localized": {"title": "$250,000 Influencer Rock, Paper, Scissors Tournament","description": "This rock, paper, scissors tournament consists of 32 of the worlds biggest influencers! $250,000 will go to a charity of the winner's choice. :D\n\nGame 1 - David Dobrik vs Tana Mongeau\nGame 2 - Jeffree Star vs Casey Neistat \nGame 3 - Faze Rug vs iJustine\nGame 4 - Mini Ladd vs Chris Ramsay\nGame 5 - Valkyrae vs Kwebble\nGame 6 - Matt Dajer (of Yes Theory) vs KSI\nGame 7 - Mark Rober vs LaurDIY (Lauren)\nGame 8 - Matpat (of The Game Theorists) vs Matt Stonie\nGame 9 - Ninja vs Lazarbeam\nGame 10 - Tfue vs Pokimane\nGame 11 - Nadeshot vs Jack Black\nGame 12 - Marques Brownlee vs Addison Rae\nGame 13 - Zach King vs LaurenZside\nGame 14 - Dallmyd vs Jaiden Animations\nGame 15 - Preston vs Juanpa\nGame 16 - Rosanna Pansino vs Juca\n\n0:00 Intro\n0:45 Rock Paper Scissors Challenge\n5:00 Rock Paper Scissors Challenge Pt II\n10:13 Rock Paper Scissors Challenge Pt III\n14:30 Rock Paper Scissors Challenge Pt IV\n19:10 Rock Paper Scissors Challenge Pt V\n25:18 Finale" },"defaultAudioLanguage": "en-US" } } ],"pageInfo": {"totalResults": 1,"resultsPerPage": 1 }}But I want to get formats information for downloading video.If anyone knows please help.