Quantcast
Channel: Active questions tagged youtube-api - Stack Overflow
Viewing all articles
Browse latest Browse all 3831

How can I edit the preconfigured stream at studio.youtube.com/video/*************/livestreaming through the youtube data api?

$
0
0

I made an insert request to the api in order to create a new livestream, my code:

request = youtube.liveStreams().insert(    part="snippet,cdn,contentDetails,status",    body={"contentDetails": {"isReusable": True        },"cdn": {"frameRate": "60fps","ingestionType": "rtmp","resolution": "1080p"        },"snippet": {"title": "test title","description": "test description"        }    })

However, this isn't updating at https://studio.youtube.com/video/*************/livestreaming

How can I edit the preconfigured stream at that link?


Viewing all articles
Browse latest Browse all 3831

Trending Articles