<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: BHARGAV REDDY SATTI</title>
    <description>The latest articles on DEV Community by BHARGAV REDDY SATTI (@bhargav_reddysatti_b8d7e).</description>
    <link>https://dev.to/bhargav_reddysatti_b8d7e</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4013779%2F942c35db-a96a-4d4d-b74e-edc34c96613d.png</url>
      <title>DEV Community: BHARGAV REDDY SATTI</title>
      <link>https://dev.to/bhargav_reddysatti_b8d7e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bhargav_reddysatti_b8d7e"/>
    <language>en</language>
    <item>
      <title>I Built a Free Bluesky Video Downloader — Here's How It Works</title>
      <dc:creator>BHARGAV REDDY SATTI</dc:creator>
      <pubDate>Fri, 03 Jul 2026 15:05:32 +0000</pubDate>
      <link>https://dev.to/bhargav_reddysatti_b8d7e/i-built-a-free-bluesky-video-downloader-heres-how-it-works-e87</link>
      <guid>https://dev.to/bhargav_reddysatti_b8d7e/i-built-a-free-bluesky-video-downloader-heres-how-it-works-e87</guid>
      <description>&lt;p&gt;Bluesky is growing fast, but there's still no built-in way to download videos from posts. So I built &lt;a href="https://bskyvideo.com" rel="noopener noreferrer"&gt;bskyvideo.com&lt;/a&gt; — a free, lightning-fast tool that lets you save any video, GIF, or image from Bluesky directly to your device.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;If you've ever tried to save a video from Bluesky, you know the pain:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Right-click &amp;gt; "Save Video" doesn't exist&lt;/li&gt;
&lt;li&gt;Screen recording loses quality&lt;/li&gt;
&lt;li&gt;Most third-party tools serve broken &lt;code&gt;.ts&lt;/code&gt; files that won't play on iPhones&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  My Solution
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://bskyvideo.com" rel="noopener noreferrer"&gt;bskyvideo.com&lt;/a&gt; using Next.js 16 and the Bluesky AT Protocol. Here's how it works under the hood:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. URL Parsing
&lt;/h3&gt;

&lt;p&gt;The user pastes a Bluesky post URL like &lt;code&gt;https://bsky.app/profile/user.bsky.social/post/abc123&lt;/code&gt;. The backend parses the handle and post ID.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. AT Protocol Resolution
&lt;/h3&gt;

&lt;p&gt;Using the public AT Protocol API, the tool resolves the handle to a DID (Decentralized Identifier), then fetches the full post thread to find embedded media.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Media Detection
&lt;/h3&gt;

&lt;p&gt;The extraction engine recursively scans the post for any media type:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.embed.video#view&lt;/code&gt; → Video&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.embed.images#view&lt;/code&gt; → Images (up to 4)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;app.bsky.embed.recordWithMedia#view&lt;/code&gt; → Quote posts with media&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Server-Side FFmpeg Remuxing
&lt;/h3&gt;

&lt;p&gt;For videos, Bluesky serves HLS streams (fragmented MPEG-TS). Most downloaders just hand you the raw &lt;code&gt;.ts&lt;/code&gt; file, which won't play on iPhones or QuickTime. &lt;/p&gt;

&lt;p&gt;I injected FFmpeg into a Vercel serverless function that remuxes the stream into a proper MP4 container in real-time. The result is a universally compatible video file.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Image Proxy
&lt;/h3&gt;

&lt;p&gt;For images, I built a proxy that adds &lt;code&gt;Content-Disposition: attachment&lt;/code&gt; headers, forcing the browser to download the file instead of opening it in a new tab.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Result
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;⚡ Videos extract in under 2 seconds&lt;/li&gt;
&lt;li&gt;📱 MP4 files play on every device (iPhone, Android, Mac, Windows)&lt;/li&gt;
&lt;li&gt;🖼️ Images download in original HD resolution&lt;/li&gt;
&lt;li&gt;💰 100% free, no signup required&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://bskyvideo.com" rel="noopener noreferrer"&gt;bskyvideo.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you have any feedback or feature requests, drop them in the comments!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>nestjs</category>
      <category>javascript</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
