FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How We Added Video Playlists to SendRec
How-ToWeb Development

How We Added Video Playlists to SendRec

via Dev.to WebdevAlex Neamtu1mo ago

Folders group videos by project. Tags cross-label them. But neither solves a common request: "I want to send someone five videos in a specific order and have them play through automatically." We added playlists to SendRec in v1.57.0 . Create a playlist, add videos, drag them into order, share the link. Viewers get a dark-themed watch page with a sidebar, auto-advance, and watched badges. Two tables The migration adds two tables: CREATE TABLE playlists ( id UUID PRIMARY KEY DEFAULT gen_random_uuid (), user_id UUID NOT NULL REFERENCES users ( id ) ON DELETE CASCADE , title TEXT NOT NULL , description TEXT , share_token TEXT UNIQUE , is_shared BOOLEAN NOT NULL DEFAULT false , share_password TEXT , require_email BOOLEAN NOT NULL DEFAULT false , position INTEGER NOT NULL DEFAULT 0 , created_at TIMESTAMPTZ NOT NULL DEFAULT now (), updated_at TIMESTAMPTZ NOT NULL DEFAULT now () ); CREATE TABLE playlist_videos ( playlist_id UUID NOT NULL REFERENCES playlists ( id ) ON DELETE CASCADE , video_id

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
24 views

Related Articles

Vibe Coding Isn’t for Everyone (And That’s the Point)
How-To

Vibe Coding Isn’t for Everyone (And That’s the Point)

Medium Programming • 8h ago

Sometimes We Make Mistakes (Meta’s Cost $80 Billion)
How-To

Sometimes We Make Mistakes (Meta’s Cost $80 Billion)

Medium Programming • 8h ago

Gate.io vs KuCoin — Which Crypto Exchange Is Better? (2026)
How-To

Gate.io vs KuCoin — Which Crypto Exchange Is Better? (2026)

Dev.to Beginners • 9h ago

How to Build a Real Multi-Agent Engineering Workflow With oh-my-claudecode
How-To

How to Build a Real Multi-Agent Engineering Workflow With oh-my-claudecode

Medium Programming • 10h ago

Clean Code Principles Every Software Engineer Should Follow
How-To

Clean Code Principles Every Software Engineer Should Follow

Medium Programming • 11h ago

Discover More Articles