CLI utility to ingest embedded json metadata from yt-dlp downloads to a SQLite database file
yt-dlp
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: Add example query for `video_metadata_view` view

0xBA5E64 edf30df8 de90b3b9

+8
+8
readme.md
··· 21 21 LIMIT 32; 22 22 ``` 23 23 24 + The `video_metadata_view` view can also be queried for simpler overviews: 25 + 26 + ```sql 27 + SELECT * FROM video_metadata_view 28 + ORDER BY duration DESC 29 + LIMIT 32; 30 + ``` 31 + 24 32 ## Reasoning for design decisions 25 33 26 34 ### Why not deconstruct the json metadata into database columns?