Skip to content
Discussion options

You must be logged in to vote

Since NewPipe doesn't allow you to search through your watch history I opened up the database to do it manually.

I also usually do the same (and I agree that a way to search through already watched videos is missing).

It's a 13 digit number that doesn't seem to represent a real date format.

In fact it is a unixepoch with the milliseconds included. What you can do is to format this to something more readable with these queries:

select *, strftime('%Y-%m-%d %H:%M:%S', datetime(substr(upload_date, '1', 10)||'.'||substr(upload_date, 11), 'unixepoch', 'localtime')) as human_date from streams;
select *, strftime('%Y-%m-%d %H:%M:%S', datetime(substr(access_date, '1' ,10)||'.'||substr(access_…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Pauler221
Comment options

Answer selected by ShareASmile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
database Issue and PRs related to database operations
2 participants