<?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: Hugo</title>
    <description>The latest articles on DEV Community by Hugo (@destr0code).</description>
    <link>https://dev.to/destr0code</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%2F4013674%2F7663edd8-0c6b-47b8-848f-27db5031ab28.png</url>
      <title>DEV Community: Hugo</title>
      <link>https://dev.to/destr0code</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/destr0code"/>
    <language>en</language>
    <item>
      <title>Building MiraVault: a local-first media library app for Windows</title>
      <dc:creator>Hugo</dc:creator>
      <pubDate>Fri, 03 Jul 2026 13:10:31 +0000</pubDate>
      <link>https://dev.to/destr0code/building-miravault-a-local-first-media-library-app-for-windows-50o3</link>
      <guid>https://dev.to/destr0code/building-miravault-a-local-first-media-library-app-for-windows-50o3</guid>
      <description>&lt;h1&gt;
  
  
  Building MiraVault: a local-first media library app for Windows
&lt;/h1&gt;

&lt;p&gt;I have been working on &lt;strong&gt;MiraVault&lt;/strong&gt;, an open-source desktop app for Windows focused on organizing and watching local media libraries.&lt;/p&gt;

&lt;p&gt;The idea came from a simple problem: many people keep series, movies, IPTV playlists, subtitles, and downloads spread across different folders and drives. Existing solutions are powerful, but they often expect a server, an account, a cloud service, or a very specific library structure.&lt;/p&gt;

&lt;p&gt;MiraVault tries to solve a smaller, more local problem:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Take the media files you already have and make them easier to organize, browse, play, and continue watching.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Repository:&lt;br&gt;
&lt;a href="https://github.com/Destr0code/MiraVault" rel="noopener noreferrer"&gt;https://github.com/Destr0code/MiraVault&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What MiraVault does
&lt;/h2&gt;

&lt;p&gt;MiraVault is still in beta, but it already includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A visual library for local series and movies.&lt;/li&gt;
&lt;li&gt;Automatic watch progress.&lt;/li&gt;
&lt;li&gt;Watched and unwatched episode tracking.&lt;/li&gt;
&lt;li&gt;Folder organization for series, seasons, and episodes.&lt;/li&gt;
&lt;li&gt;Metadata enrichment without private API keys.&lt;/li&gt;
&lt;li&gt;Covers, synopsis, ratings, cast, and episode information where available.&lt;/li&gt;
&lt;li&gt;VLC integration for robust playback.&lt;/li&gt;
&lt;li&gt;IPTV playlist support from M3U/M3U8 sources.&lt;/li&gt;
&lt;li&gt;Subtitle handling.&lt;/li&gt;
&lt;li&gt;Early torrent/download management experiments.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It does &lt;strong&gt;not&lt;/strong&gt; provide media content, IPTV lists, torrent indexes, trackers, or providers.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why local-first?
&lt;/h2&gt;

&lt;p&gt;I wanted MiraVault to work without an account and without a hosted backend.&lt;/p&gt;

&lt;p&gt;The app stores user data locally: library paths, settings, watch progress, metadata cache, and preferences. External requests only happen when a feature needs them, such as checking GitHub releases, fetching metadata, resolving subtitles, or loading a user-provided IPTV playlist.&lt;/p&gt;

&lt;p&gt;That design keeps the project simple and transparent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech stack
&lt;/h2&gt;

&lt;p&gt;MiraVault is built with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Electron&lt;/li&gt;
&lt;li&gt;React 19&lt;/li&gt;
&lt;li&gt;Vite&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;li&gt;Zustand&lt;/li&gt;
&lt;li&gt;better-sqlite3&lt;/li&gt;
&lt;li&gt;electron-store&lt;/li&gt;
&lt;li&gt;hls.js&lt;/li&gt;
&lt;li&gt;WebTorrent experiments&lt;/li&gt;
&lt;li&gt;Electron Builder&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The app is currently Windows-focused.&lt;/p&gt;

&lt;h2&gt;
  
  
  Some technical challenges
&lt;/h2&gt;

&lt;p&gt;A few parts turned out to be more interesting than expected.&lt;/p&gt;

&lt;h3&gt;
  
  
  Organizing messy folders
&lt;/h3&gt;

&lt;p&gt;Detecting series from filenames is harder than it sounds. MiraVault has to handle different naming styles, season/episode formats, quality tags, subtitle files, incomplete downloads, duplicated episodes, and residual files like &lt;code&gt;.txt&lt;/code&gt;, &lt;code&gt;.url&lt;/code&gt;, or archives.&lt;/p&gt;

&lt;p&gt;The organizer now uses a preview-first approach so users can see planned changes before applying them.&lt;/p&gt;

&lt;h3&gt;
  
  
  Playback
&lt;/h3&gt;

&lt;p&gt;I originally explored internal playback more deeply, but codec support quickly became a practical issue. VLC is still the most reliable fallback for MKV, HEVC/H.265, multichannel audio, subtitles, and some IPTV streams.&lt;/p&gt;

&lt;p&gt;The current direction is: use internal playback where possible, but integrate VLC for serious compatibility.&lt;/p&gt;

&lt;h3&gt;
  
  
  Metadata without API keys
&lt;/h3&gt;

&lt;p&gt;I want the project to stay easy to clone and run, so I avoided private API keys. MiraVault uses public/fallback metadata sources where possible and caches results locally.&lt;/p&gt;

&lt;p&gt;This is not perfect, especially with movies or shows that share the same name, but it keeps the app open-source friendly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current status
&lt;/h2&gt;

&lt;p&gt;MiraVault is beta software. It has public releases, a Windows installer, a privacy policy, changelog, and GitHub Actions build workflow.&lt;/p&gt;

&lt;p&gt;There is still a lot to improve before &lt;code&gt;1.0&lt;/code&gt;, especially around:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;metadata matching&lt;/li&gt;
&lt;li&gt;large libraries&lt;/li&gt;
&lt;li&gt;torrent/download stability&lt;/li&gt;
&lt;li&gt;IPTV edge cases&lt;/li&gt;
&lt;li&gt;installer signing&lt;/li&gt;
&lt;li&gt;screenshots and onboarding&lt;/li&gt;
&lt;li&gt;tests and release checks&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I would like feedback on
&lt;/h2&gt;

&lt;p&gt;I would appreciate feedback from other developers and users around:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Electron packaging for Windows&lt;/li&gt;
&lt;li&gt;local-first architecture&lt;/li&gt;
&lt;li&gt;metadata matching strategies&lt;/li&gt;
&lt;li&gt;folder organization edge cases&lt;/li&gt;
&lt;li&gt;UI/UX for media libraries&lt;/li&gt;
&lt;li&gt;how to make the project easier to trust before downloading&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Repository:&lt;br&gt;
&lt;a href="https://github.com/Destr0code/MiraVault" rel="noopener noreferrer"&gt;https://github.com/Destr0code/MiraVault&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Latest releases:&lt;br&gt;
&lt;a href="https://github.com/Destr0code/MiraVault/releases" rel="noopener noreferrer"&gt;https://github.com/Destr0code/MiraVault/releases&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Privacy policy:&lt;br&gt;
&lt;a href="https://github.com/Destr0code/MiraVault/blob/main/PRIVACY.md" rel="noopener noreferrer"&gt;https://github.com/Destr0code/MiraVault/blob/main/PRIVACY.md&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading. Any feedback, issues, or ideas are welcome.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>electron</category>
      <category>react</category>
      <category>desktopapp</category>
    </item>
  </channel>
</rss>
