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 python_ffmpeg_video_streaming import Input, Output, Filter input = Input('http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4') filter = Filter('transpose', 4) output = Output(input, filter, 'out.mp4').run()