JuanBindez / pytubefix

Python3 library for downloading YouTube Videos.
http://pytubefix.rtfd.io/
MIT License
454 stars 67 forks source link

streams.py bug #210

Open bajiegegememeda123 opened 1 week ago

bajiegegememeda123 commented 1 week ago

streams.py

Source code: class Stream: if 'width' in stream: self.width = stream["width"] if 'height' in stream: self.width = stream["height"]

Correct code: class Stream: if 'width' in stream: self.width = stream["width"] if 'height' in stream: self.height = stream["height"]

JuanBindez commented 1 week ago

due to lack of information this will be closed

bajiegegememeda123 commented 1 week ago

I want to get the width and height of the video stream. Currently, the video stream only has the width property

felipeucelli commented 6 days ago

The fix is ​​now available in version 6.15.4.