<?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: Will2 Qiu</title>
    <description>The latest articles on DEV Community by Will2 Qiu (@will2_qiu_81397e6bffd2014).</description>
    <link>https://dev.to/will2_qiu_81397e6bffd2014</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%2F3886847%2F0b6598e5-7aa5-41e2-8c01-557e305011db.png</url>
      <title>DEV Community: Will2 Qiu</title>
      <link>https://dev.to/will2_qiu_81397e6bffd2014</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/will2_qiu_81397e6bffd2014"/>
    <language>en</language>
    <item>
      <title>Split Videos in Your Browser Without Uploading Files</title>
      <dc:creator>Will2 Qiu</dc:creator>
      <pubDate>Tue, 07 Jul 2026 06:03:46 +0000</pubDate>
      <link>https://dev.to/will2_qiu_81397e6bffd2014/split-videos-in-your-browser-without-uploading-files-ip7</link>
      <guid>https://dev.to/will2_qiu_81397e6bffd2014/split-videos-in-your-browser-without-uploading-files-ip7</guid>
      <description>&lt;p&gt;Sometimes you only need to cut a short clip out of a longer video: a product demo, a meeting recording, a lecture, a screen capture, or a quick social media clip.&lt;/p&gt;

&lt;p&gt;The usual online workflow is simple, but it has a hidden tradeoff:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;upload the video to a server,&lt;/li&gt;
&lt;li&gt;wait for the server to process it,&lt;/li&gt;
&lt;li&gt;download the result.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That is convenient, but not always ideal. Large uploads are slow, and private videos may not be something you want to send to a third-party server.&lt;/p&gt;

&lt;p&gt;This post walks through a lighter workflow: &lt;strong&gt;split the video locally in the browser&lt;/strong&gt;, without uploading the file.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why local browser processing matters
&lt;/h2&gt;

&lt;p&gt;For small video edits, the browser is often enough.&lt;/p&gt;

&lt;p&gt;A local-first browser workflow has a few practical advantages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;no large video upload step;&lt;/li&gt;
&lt;li&gt;less dependency on network speed;&lt;/li&gt;
&lt;li&gt;better fit for private or internal videos;&lt;/li&gt;
&lt;li&gt;no extra desktop editor to install;&lt;/li&gt;
&lt;li&gt;fast enough for simple trimming and splitting tasks.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is not a replacement for a full video editor. If you need multi-track editing, subtitles, transitions, color correction, or complex timeline work, a dedicated editor is still the better tool.&lt;/p&gt;

&lt;p&gt;But for quick splitting and trimming, local browser processing is often the simplest option.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tool used in this workflow
&lt;/h2&gt;

&lt;p&gt;I used &lt;strong&gt;AI Toolbox Video Splitter&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ai-toolbox.ai/tools/video-splitter" rel="noopener noreferrer"&gt;https://ai-toolbox.ai/tools/video-splitter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There is also a Japanese version here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ai-toolbox.ai/ja/tools/video-splitter" rel="noopener noreferrer"&gt;https://ai-toolbox.ai/ja/tools/video-splitter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AI Toolbox is a collection of browser-based tools for video, audio, and image tasks. The goal is to make common media operations simple and lightweight, with many tasks handled locally in the browser.&lt;/p&gt;

&lt;h2&gt;
  
  
  Example workflow
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Open the video splitter
&lt;/h3&gt;

&lt;p&gt;Go to:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ai-toolbox.ai/tools/video-splitter" rel="noopener noreferrer"&gt;https://ai-toolbox.ai/tools/video-splitter&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Choose a video file
&lt;/h3&gt;

&lt;p&gt;Select the video you want to split.&lt;/p&gt;

&lt;p&gt;Because the workflow is browser-based, the file does not need to be uploaded in the same way as a traditional server-side video editor. This is useful for personal clips, internal recordings, or unpublished material.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Pick the time range
&lt;/h3&gt;

&lt;p&gt;Choose the start and end time for the part you want to keep.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;cut &lt;code&gt;00:10&lt;/code&gt; to &lt;code&gt;01:20&lt;/code&gt; from a longer recording;&lt;/li&gt;
&lt;li&gt;remove the beginning of a screen recording;&lt;/li&gt;
&lt;li&gt;export only the useful part of a meeting or tutorial;&lt;/li&gt;
&lt;li&gt;make a shorter clip for social media.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Run the split
&lt;/h3&gt;

&lt;p&gt;Start the processing step and wait for the result.&lt;/p&gt;

&lt;p&gt;Because the work happens in the browser, performance depends on your device. A desktop browser will usually be more stable for larger or longer files than an older phone.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Download the result
&lt;/h3&gt;

&lt;p&gt;When processing is complete, download the split video file.&lt;/p&gt;

&lt;p&gt;For important videos, keep the original file unchanged and treat the output as a new copy.&lt;/p&gt;

&lt;h2&gt;
  
  
  When this approach works well
&lt;/h2&gt;

&lt;p&gt;This workflow is useful when you want to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;quickly trim a screen recording;&lt;/li&gt;
&lt;li&gt;split a lecture, meeting, or tutorial into a smaller clip;&lt;/li&gt;
&lt;li&gt;prepare a short video for social media;&lt;/li&gt;
&lt;li&gt;avoid uploading private video files;&lt;/li&gt;
&lt;li&gt;do a simple edit without installing desktop software.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Practical limitations
&lt;/h2&gt;

&lt;p&gt;Browser-based processing is convenient, but it has limits:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;very large videos can use a lot of memory;&lt;/li&gt;
&lt;li&gt;long videos may be slower on low-end devices;&lt;/li&gt;
&lt;li&gt;closing the browser tab can interrupt the process;&lt;/li&gt;
&lt;li&gt;advanced timeline editing is outside the scope of this workflow.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For heavier editing, use a dedicated video editor. For quick splitting, a local browser tool can be enough.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final thoughts
&lt;/h2&gt;

&lt;p&gt;Not every video task needs a full editing suite or an upload-heavy online service.&lt;/p&gt;

&lt;p&gt;For simple splitting and trimming, a browser-local workflow can be faster, simpler, and more privacy-friendly.&lt;/p&gt;

&lt;p&gt;AI Toolbox Video Splitter is one way to do that:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ai-toolbox.ai/tools/video-splitter" rel="noopener noreferrer"&gt;https://ai-toolbox.ai/tools/video-splitter&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>I Found a The Boys Face Swap Gallery That Actually Makes GIF and Video Edits Fast</title>
      <dc:creator>Will2 Qiu</dc:creator>
      <pubDate>Sun, 19 Apr 2026 03:49:22 +0000</pubDate>
      <link>https://dev.to/will2_qiu_81397e6bffd2014/i-found-a-the-boys-face-swap-gallery-that-actually-makes-gif-and-video-edits-fast-1ejo</link>
      <guid>https://dev.to/will2_qiu_81397e6bffd2014/i-found-a-the-boys-face-swap-gallery-that-actually-makes-gif-and-video-edits-fast-1ejo</guid>
      <description>&lt;p&gt;If you have spent any time on TikTok, Reddit, or group chats lately, you have probably seen the same pattern: someone takes a dead-serious shot from &lt;em&gt;The Boys&lt;/em&gt;, swaps in a friend’s face, and suddenly the whole clip becomes funnier than it has any right to be.&lt;/p&gt;

&lt;p&gt;Homelander is especially good for this. The stare. The clap. The weird half-smile that already feels unhinged before anyone edits it. Butcher works too, and group scenes get even better when you can assign a different face to each character.&lt;/p&gt;

&lt;p&gt;That is why I liked seeing a dedicated The Boys face swap gallery go live here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://aifacesswap.com/face-swap/the-boys?utm_source=devto&amp;amp;utm_medium=backlink&amp;amp;utm_campaign=theboys_launch" rel="noopener noreferrer"&gt;The Boys face swap gallery&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Instead of forcing you to search around for separate assets, it puts the useful formats in one place: GIFs, still images, short video clips, and multi-face scenes. You pick a template, upload a face, and jump straight into the right tool with the scene already loaded.&lt;/p&gt;

&lt;p&gt;A few formats that stand out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GIF face swaps for reaction memes and looping edits&lt;/li&gt;
&lt;li&gt;Video face swaps for short scene clips&lt;/li&gt;
&lt;li&gt;Multiple face swaps for cast posters and chaotic group shots&lt;/li&gt;
&lt;li&gt;Single-image swaps for quick The Boys-style portraits&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is also a more detailed walkthrough here if you want the step-by-step version:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://aifacesswap.com/blog/the-boys-face-swap?utm_source=devto&amp;amp;utm_medium=backlink&amp;amp;utm_campaign=theboys_launch" rel="noopener noreferrer"&gt;The Boys face swap tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What I like most is that this does not feel like a generic upload-anything demo. It is clearly built around recognizable The Boys-style moments, which makes the results more immediately meme-friendly.&lt;/p&gt;

&lt;p&gt;If you only try one thing, start with a Homelander GIF or a group-scene template. Those are usually the easiest ways to get something funny fast.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Unofficial fan-made tool. Not affiliated with Amazon, Sony, or the creators of The Boys.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>showdev</category>
      <category>webdev</category>
      <category>tv</category>
    </item>
  </channel>
</rss>
