google-api-python-client
google-api-python-client copied to clipboard
[Support] Is it possible to upload a short youtube video?
I'm trying to upload a short video from youtube. I added the hashtag #shorts to the title and description of the video, but both didn't help.
Is there any feature to upload shorts?
For a video to be a short it has to have the proper aspect ratio of 1080 x 1920 as well as have a #shorts hashtag
What size did you upload?
Just wanted to check on this issue, is there any specific changes had to be made to publish a short media?
# Set TITLE to the title of the video.
TITLE = "My YouTube Short #Shorts"
# Set DESCRIPTION to the description of the video.
DESCRIPTION = "This is my YouTube Short."
# Create a YouTube object.
youtube = build("youtube", "v3", developerKey=DEVELOPER_KEY)
# Set the video snippet.
snippet = {
"title": TITLE,
"description": DESCRIPTION,
"tags": ["#Shorts"],
}
will this hashtag work? Or which changes should be made?