Add nsfw option for Peertube only, YT api does not support it at the moment

This commit is contained in:
LecygneNoir 2018-03-12 10:38:59 +01:00
parent 0295402194
commit 7c12bcbc31
3 changed files with 12 additions and 9 deletions

View file

@ -64,7 +64,7 @@ def upload_video(oauth, config, options):
("licence", "1"),
("description", options.get('--description') or "default description"),
# look at the list numbers at /videos/privacies
("nsfw", "0"),
("nsfw", str(int(options.get('--nsfw')) or "0")),
("channelId", get_userinfo()),
("videofile", get_videofile(path))
]