Skip to content

Instantly share code, notes, and snippets.

@swanson
Created December 4, 2024 19:01
Show Gist options
  • Save swanson/eb30f9febdeaa5f460f407e6be94cd86 to your computer and use it in GitHub Desktop.
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
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