<?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: Levi Enama</title>
    <description>The latest articles on DEV Community by Levi Enama (@levi_enama_2026).</description>
    <link>https://dev.to/levi_enama_2026</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%2F4068281%2Fc46cd895-d8bd-4609-bc38-286d2dd62e28.png</url>
      <title>DEV Community: Levi Enama</title>
      <link>https://dev.to/levi_enama_2026</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/levi_enama_2026"/>
    <language>en</language>
    <item>
      <title>Mediax: FFmpeg's Cooler Cousin 🚀</title>
      <dc:creator>Levi Enama</dc:creator>
      <pubDate>Sat, 08 Aug 2026 18:34:24 +0000</pubDate>
      <link>https://dev.to/levi_enama_2026/mediax-ffmpegs-cooler-cousin-a99</link>
      <guid>https://dev.to/levi_enama_2026/mediax-ffmpegs-cooler-cousin-a99</guid>
      <description>&lt;p&gt;FFmpeg is powerful, but the syntax? A nightmare.&lt;/p&gt;

&lt;p&gt;So I built Mediax.&lt;/p&gt;

&lt;p&gt;36 intuitive verbs. Interactive TUI. One-line install.&lt;/p&gt;

&lt;p&gt;Convert, compress, trim, crop, rotate, add watermarks... all with simple commands.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
mediax convert input.mov output.mp4&lt;br&gt;
mediax compress large.mp4 small.mp4 --quality medium&lt;br&gt;
mediax trim video.mp4 clip.mp4 --start 00:01:30 --duration 10&lt;br&gt;
Just run mediax for the interactive terminal interface.&lt;/p&gt;

&lt;p&gt;One-line install&lt;br&gt;
bash&lt;br&gt;
curl -sSL &lt;a href="https://raw.githubusercontent.com/robert-sarah/mediax/main/install.sh" rel="noopener noreferrer"&gt;https://raw.githubusercontent.com/robert-sarah/mediax/main/install.sh&lt;/a&gt; | sh&lt;br&gt;
Built with Go&lt;br&gt;
Single binary — no dependencies&lt;/p&gt;

&lt;p&gt;Cross-platform: Windows, macOS, Linux&lt;/p&gt;

&lt;p&gt;Open source (MIT)&lt;/p&gt;

&lt;p&gt;36 verbs for everything&lt;br&gt;
Conversion: convert, compress, gif&lt;/p&gt;

&lt;p&gt;Audio: extract-audio, mute, volume, replace-audio&lt;/p&gt;

&lt;p&gt;Video: trim, crop, resize, rotate, flip, concat, split&lt;/p&gt;

&lt;p&gt;Effects: speed, reverse, blur, sharpen, fade-in, fade-out&lt;/p&gt;

&lt;p&gt;Advanced: watermark, subtitle, thumbnail, template, batch&lt;/p&gt;

&lt;p&gt;Examples&lt;br&gt;
bash&lt;/p&gt;

&lt;h1&gt;
  
  
  Resize for Instagram
&lt;/h1&gt;

&lt;p&gt;mediax template video.mp4 insta_video.mp4 --platform instagram&lt;/p&gt;

&lt;h1&gt;
  
  
  Extract audio from 1:30 to 1:40
&lt;/h1&gt;

&lt;p&gt;mediax extract-audio video.mp4 clip.mp3 --start 00:01:30 --duration 10&lt;/p&gt;

&lt;h1&gt;
  
  
  Detect video issues
&lt;/h1&gt;

&lt;p&gt;mediax wtf video.mp4&lt;br&gt;
Why I built it&lt;br&gt;
I was tired of copying FFmpeg commands from Stack Overflow and breaking files because I forgot a flag.&lt;/p&gt;

&lt;p&gt;Mediax makes FFmpeg accessible for beginners and faster for pros.&lt;/p&gt;

&lt;p&gt;Try it today&lt;br&gt;
bash&lt;br&gt;
curl -sSL &lt;a href="https://raw.githubusercontent.com/robert-sarah/mediax/main/install.sh" rel="noopener noreferrer"&gt;https://raw.githubusercontent.com/robert-sarah/mediax/main/install.sh&lt;/a&gt; | sh&lt;br&gt;
Repo: github.com/robert-sarah/mediax&lt;/p&gt;

&lt;p&gt;Contributions welcome! 🙏&lt;/p&gt;

</description>
      <category>cli</category>
      <category>opensource</category>
      <category>ffmpeg</category>
      <category>go</category>
    </item>
    <item>
      <title>I built a friendlier FFmpeg with 36 verbs and a TUI (and it's one line to install)</title>
      <dc:creator>Levi Enama</dc:creator>
      <pubDate>Sat, 08 Aug 2026 18:33:09 +0000</pubDate>
      <link>https://dev.to/levi_enama_2026/i-built-a-friendlier-ffmpeg-with-36-verbs-and-a-tui-and-its-one-line-to-install-1km7</link>
      <guid>https://dev.to/levi_enama_2026/i-built-a-friendlier-ffmpeg-with-36-verbs-and-a-tui-and-its-one-line-to-install-1km7</guid>
      <description>&lt;p&gt;Mediax: FFmpeg's Cooler Cousin 🚀&lt;br&gt;
FFmpeg is powerful, but the syntax? A nightmare.&lt;/p&gt;

&lt;p&gt;So I built Mediax.&lt;/p&gt;

&lt;p&gt;36 intuitive verbs. Interactive TUI. One-line install.&lt;/p&gt;

&lt;p&gt;Convert, compress, trim, crop, rotate, add watermarks... all with simple commands.&lt;/p&gt;

&lt;p&gt;bash&lt;br&gt;
mediax convert input.mov output.mp4&lt;br&gt;
mediax compress large.mp4 small.mp4 --quality medium&lt;br&gt;
mediax trim video.mp4 clip.mp4 --start 00:01:30 --duration 10&lt;br&gt;
Just run mediax for the interactive terminal interface.&lt;/p&gt;

&lt;p&gt;One-line install&lt;br&gt;
curl -sSL &lt;a href="https://raw.githubusercontent.com/robert-sarah/mediax/main/install.sh" rel="noopener noreferrer"&gt;https://raw.githubusercontent.com/robert-sarah/mediax/main/install.sh&lt;/a&gt; | sh&lt;br&gt;
Built with Go&lt;br&gt;
Single binary — no dependencies&lt;/p&gt;

&lt;p&gt;Cross-platform: Windows, macOS, Linux&lt;/p&gt;

&lt;p&gt;Open source (MIT)&lt;/p&gt;

&lt;p&gt;36 verbs for everything&lt;br&gt;
Conversion: convert, compress, gif&lt;/p&gt;

&lt;p&gt;Audio: extract-audio, mute, volume, replace-audio&lt;/p&gt;

&lt;p&gt;Video: trim, crop, resize, rotate, flip, concat, split&lt;/p&gt;

&lt;p&gt;Effects: speed, reverse, blur, sharpen, fade-in, fade-out&lt;/p&gt;

&lt;p&gt;Advanced: watermark, subtitle, thumbnail, template, batch&lt;/p&gt;

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

&lt;h1&gt;
  
  
  Resize for Instagram
&lt;/h1&gt;

&lt;p&gt;mediax template video.mp4 insta_video.mp4 --platform instagram&lt;/p&gt;

&lt;h1&gt;
  
  
  Extract audio from 1:30 to 1:40
&lt;/h1&gt;

&lt;p&gt;mediax extract-audio video.mp4 clip.mp3 --start 00:01:30 --duration 10&lt;/p&gt;

&lt;h1&gt;
  
  
  Detect video issues
&lt;/h1&gt;

&lt;p&gt;mediax wtf video.mp4&lt;br&gt;
Why I built it&lt;br&gt;
I was tired of copying FFmpeg commands from Stack Overflow and breaking files because I forgot a flag.&lt;/p&gt;

&lt;p&gt;Mediax makes FFmpeg accessible for beginners and faster for pros.&lt;/p&gt;

&lt;p&gt;Try it today&lt;br&gt;
Repo: github.com/robert-sarah/mediax&lt;/p&gt;

&lt;p&gt;Contributions welcome! 🙏&lt;/p&gt;

</description>
      <category>go</category>
      <category>cli</category>
      <category>ffmpeg</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
