Tags: kidmam/youtube
Tags
info: add bitrate Currently, the Quality is not enough to differentiate some files. For example with this link: https://www.youtube.com/watch?v=wHvgUD5uKPk Among others you get these: +------+---------+--------------------------------------------+ | ITAG | QUALITY | MIMETYPE | +------+---------+--------------------------------------------+ | 249 | tiny | audio/webm; codecs="opus" | | 250 | tiny | audio/webm; codecs="opus" | | 251 | tiny | audio/webm; codecs="opus" | +------+---------+--------------------------------------------+ These appear exactly the same. After this change, will look like this: +------+---------+---------+--------------------------------------------+ | ITAG | QUALITY | BITRATE | MIMETYPE | +------+---------+---------+--------------------------------------------+ | 249 | tiny | 56255 | audio/webm; codecs="opus" | | 250 | tiny | 75972 | audio/webm; codecs="opus" | | 251 | tiny | 149560 | audio/webm; codecs="opus" | +------+---------+---------+--------------------------------------------+
PreviousNext