egbertbouman / youtube-comment-downloader

Simple script for downloading Youtube comments without using the Youtube API
MIT License
881 stars 223 forks source link

YouTube's New "Paid-Comment-Chip" #100

Closed d0tN3t closed 2 years ago

d0tN3t commented 2 years ago

I just noticed YouTube has added a badge for paid comments. Anyway of extracting this as well?

https://www.youtube.com/watch?v=9SmWpqbV9KA&ab_channel=GamersNexus Screen Shot 2022-03-06 at 10 57 07 PM

ikkysleepy commented 2 years ago

You can add this line:

'paid_amount': comment['paidCommentChipRenderer']['pdgCommentChipRenderer']['chipText'].get('simpleText','0') if 'paidCommentChipRenderer' in comment else 0,

egbertbouman commented 2 years ago

Thanks! I've just updated the script to include this.