1234567891011121314151617181920212223242526272829303132333435 |
- from simple_youtube_api.Channel import Channel
- from simple_youtube_api.LocalVideo import LocalVideo
- channel = Channel()
- channel.login("c:\\keys\\client_secret_244642730545-m6s4um0g6p3289ig7k92oseusisibnfp.apps.googleusercontent.com.json",storage_path="c:\\tmp\\storage.json")
- video = LocalVideo(file_path="C:\\data\\demo\\test.mp4")
- video.set_title("My Title")
- video.set_description("This is a description")
- video.set_tags(["this", "tag"])
- video.set_category("gaming")
- video.set_default_language("en-US")
- video.set_embeddable(True)
- video.set_license("creativeCommon")
- video.set_privacy_status("private")
- video.set_public_stats_viewable(True)
- video = channel.upload_video(video)
- print(video.id)
- print(video)
- video.like()
|