Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Video Upload to youtube from app

I want to upload the recorded video from ios app directly to youtube on the click of a button.For this I tried some third party libraries like: https://github.com/youtube/yt-direct-lite-iOS https://github.com/NSRover/YouTube-API-Demo

but both are around 3 years old and shows a lot of missing files even in the sample code. One after the other files are getting missing. Is there any other way to do this out. Please help

like image 319
pooja_1205 Avatar asked Oct 30 '22 12:10

pooja_1205


1 Answers

You may check these tutorials:

  • YOUTUBE API ON IOS : UPLOADING A VIDEO
  • Upload Videos to YouTube with iPhone custom App

Basically, you need to:

  • Create a iOS project in Xcode.
  • Register an App with Google.
  • Get the YouTube Data API.
  • Integrate the API into your project.
  • Configure the API for your Google App.
  • Use the API to get Playlist data and upload a video.

Also check the official documentation regarding Videos: insert method to upload a video to YouTube.

like image 64
abielita Avatar answered Nov 15 '22 07:11

abielita