create a python program to stream video from m3u8 url to youtube using python-ffmpeg-video-streaming module (do not create function)(do not use subprocess)
from youtube_live_stream import youtube_live_stream stream = youtube_live_stream() stream.login(username='username', password='password') stream.start_stream(url=url) stream.stop_stream()