Anurag
Anurag

Reputation: 21

How can I upload youtube video in python or any other language without using YouTube data api?

I written a code(In python) to automatically upload videos to YouTube Now, the problem: I can only upload 6 videos (quota limit = 10,000/day)

Is there any way to upload video on YouTube by python or any other language

Thx in advance

Upvotes: 2

Views: 8561

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 117146

There are two ways to upload videos to YouTube. You can do it manually though the YouTube web application or you can do it programmatically though the YouTube data api.

The YouTube data api has a cost based quota system. Which means that you are given a default of 10000 quota points, and each request you make costs something against that quota. Inserting videos for example costs 1600 quota points.

Is there any way to upload video on YouTube by python or any other language

The programming language you use does not matter, the quota will be the same. So no there is no other way of uploading videos to YouTube using the api.

You should just request a quota extension if you need to upload more videos.

Upvotes: 1

Related Questions