mirror of
https://git.lecygnenoir.info/LecygneNoir/prismedia.git
synced 2025-10-05 18:24:19 +02:00
Displaying video URL after upload
This commit is contained in:
parent
f3e0369710
commit
1975704954
2 changed files with 9 additions and 3 deletions
|
@ -110,7 +110,12 @@ def upload_video(oauth, secret, options):
|
|||
headers=headers)
|
||||
if response is not None:
|
||||
if response.status_code == 200:
|
||||
print('Peertube : Video was successfully uploaded.')
|
||||
uuid = response.json()
|
||||
uuid = uuid['video']
|
||||
uuid = uuid['uuid']
|
||||
template = ('Peertube : Video was successfully uploaded.\n'
|
||||
'Watch it at %s/videos/watch/%s.')
|
||||
print(template % (url, uuid))
|
||||
else:
|
||||
exit(('Peertube : The upload failed with an unexpected response: '
|
||||
'%s') % response)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue