Irfan
Irfan
thanks its working ``` import ffmpeg stream = ffmpeg.input('test.mp4') thumbnail = ffmpeg.input('test.png') ( ffmpeg .output(stream, thumbnail, 'test_thumbnail.mp4', c='copy', **{'c:v:1': 'png'}, **{'disposition:v:1': 'attached_pic'}) .global_args('-map', '0') .global_args('-map', '1') .run() ) ```
here piece of code what i know how to live on youtube ``` import ffmpeg payload = { 'video': 'test.mp4', 'fps': 'original', 'size': 'original', 'rtmp': 'output.mp4', # change to rtmp://a.rtmp.youtube.com/live2/...
i success intercepeting response body ;3 ``` async def request_interception(response): """ await page.setRequestInterception(True) would block the flow, the interception is enabled individually """ # enable interception response.__setattr__('_allowInterception', True) # print(response.ok)...
i had same issue in version 1.3.0 always access denied when i uninstall and install lower version 1.2.3 its working on python 3.10 (win10)