Created
December 4, 2024 19:01
-
-
Save swanson/eb30f9febdeaa5f460f407e6be94cd86 to your computer and use it in GitHub Desktop.
Find top 5 most watched youtube videos in 2024 from your Google Takeout json export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jq ' | |
[.[] | select(.time | startswith("2024")) | select(.titleUrl != null)] | |
| group_by(.titleUrl) | |
| map({titleUrl: .[0].titleUrl, title: .[0].title, count: length}) | |
| sort_by(-.count) | |
| .[0:5] | |
' watch-history.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment