Fuck IMDB

First you needed to create an account to view reviews on their website.

As of today, the same has now been implemented for the mobile app. So far it was excluded from the enshittification but fuck IMDB and fuck Amazon who own IMDB.

What is another good movie / series review app that does not need an anal swab to look at some reviews?

66 points · 16 comments · view on lemmy.world

16 Comments

remon@ani.social · 39 pts · 46d (1 reply)

themoviedb.org

victorz@lemmy.world · 1 pts · 45d

Is there a good way to move all of my shows abd movies and stuff from my Watch List to themoviedb? Does that page have that kind of thing?

PattyMcB@lemmy.world · 8 pts · 46d (1 reply)

Yeah... it's been going through enshittification for a while now.

homik@slrpnk.net · 2 pts · 38d

30 years or so.

luthis@lemmy.nz · 5 pts · 46d (2 replies)

I've never needed an account to view reviews?

stumu415@lemmy.zip · 11 pts · 46d (1 reply)

Me neither until today.

luthis@lemmy.nz · 9 pts · 46d

Confirmed. Dam that's annoying.

janonymous@lemmy.world · 3 pts · 46d (2 replies)

There really needs to be a proper federated alternative to imdb and co

ItsAlwaysDNS@sh.itjust.works · 11 pts · 46d

NeoDB exists (and has non-zero users)

myrmidex@belgae.social · 8 pts · 46d

Not sure federated is the way to go for this, as the matching of movies across instances might be problematic. This could depend on movie lookups from tmdb and use that id consistently, so all federated reviews land on the same movie.

Not sure if Bookwyrm solved this for books, they seem just user-added, thus having the same issue.

somegeek@programming.dev · 3 pts · 46d (5 replies)

Screw that.

I rate movies that I watch on my website with a text format I'm developing (wip). It's my own mini IMDB.

I'm creating parsers and compilers for the format so I just write plain, readable text, and it can be compiked to rich HTML tables with different views, DBs, etc.

https://alavi.me/lists#movies

victorz@lemmy.world · 5 pts · 45d (4 replies)

A new format! Insert xkcd here.

somegeek@programming.dev · 2 pts · 44d (3 replies)

hehe. I personally really needed this. It's just plaintext markup like calendar.txt or todo.txt

the thing you see on my website currently is just it being rendered with markdown so it's nothing special. But the format itself is pretty simple and self explanatory for rankings and lists.

(Name, Director, Year)
- Inglorious Bastards - Quentin Tarantino - 2009 : 8.9/10
    #tag1 #tag2
    - con 1
    - con 2
    + pro 1
    + pro2
    * description
victorz@lemmy.world · 3 pts · 44d (2 replies)

Pretty simple!

Are you deciding the order of the data in those parentheses? Like, could you change the order if you like? (Year, Director, Name)?

somegeek@programming.dev · 3 pts · 44d (1 reply)

Yes. You can add any custom fields to it or you can just omit the header if you want, and the list would still be fine, they would just not have names.

victorz@lemmy.world · 3 pts · 44d

Interesting, thanks for sharing!