Wwwcinewoodnet
As streaming services continue to fragment (Netflix has one library, Max another, Criterion Channel another, etc.), the need for a "search engine for movies" grows. www.cinewood.net is well-positioned to evolve into a Universal Streaming Guide.
Imagine searching for a movie on Cinewood and instantly seeing: "Available on Netflix in the US, but on Amazon Prime in the UK; Not currently streaming in Canada." This "JustWatch" style integration, combined with Cinewood's deep reviews, would create the ultimate tool. wwwcinewoodnet
Furthermore, with the rise of AI and algorithm fatigue, users are craving human curation. They want to read a review written by someone who loves noir films, not a bot that thinks "algorithmically similar" means the same thing. As streaming services continue to fragment (Netflix has
CREATE TABLE rooms (
id UUID PRIMARY KEY,
title TEXT NOT NULL,
host_id UUID REFERENCES users(id),
movie_id UUID REFERENCES movies(id),
start_time TIMESTAMPTZ NOT NULL,
status TEXT CHECK (status IN ('SCHEDULED','LIVE','ENDED')) NOT NULL,
join_code VARCHAR(8) UNIQUE NOT NULL,
created_at TIMESTAMPTZ DEFAULT now()
);
CREATE TABLE messages (
id UUID PRIMARY KEY,
room_id UUID REFERENCES rooms(id) ON DELETE CASCADE,
user_id UUID REFERENCES users(id),
content TEXT NOT NULL,
sent_at TIMESTAMPTZ DEFAULT now(),
video_ts DOUBLE PRECISION -- seconds into the video when sent
);
CREATE TABLE reactions (
id UUID PRIMARY KEY,
room_id UUID REFERENCES rooms(id) ON DELETE CASCADE,
user_id UUID REFERENCES users(id),
emoji VARCHAR(8),
video_ts DOUBLE PRECISION,
created_at TIMESTAMPTZ DEFAULT now()
);
CREATE TABLE polls (
id UUID PRIMARY KEY,
room_id UUID REFERENCES rooms(id) ON DELETE CASCADE,
question TEXT NOT NULL,
options JSONB NOT NULL, -- [text:"A", votes:0, …]
created_at TIMESTAMPTZ DEFAULT now(),
closed_at TIMESTAMPTZ
);
We live in the era of "Peak TV" and "Content Overload." With hundreds of new shows and movies released every month across dozens of streaming services, viewers suffer from decision paralysis. www.cinewood.net attempts to solve this problem through curation. We live in the era of "Peak TV" and "Content Overload
