<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Video-Editing on Raveen Kumar</title>
    <link>https://raveenkumar.com/tags/video-editing/</link>
    <description>Recent content in Video-Editing on Raveen Kumar</description>
    <generator>Hugo</generator>
    <language>en-US</language>
    <copyright>Raveen Kumar</copyright>
    <lastBuildDate>Sat, 18 Feb 2023 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://raveenkumar.com/tags/video-editing/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>FFMPEG notes</title>
      <link>https://raveenkumar.com/library/programming/ffmpeg/</link>
      <pubDate>Sat, 18 Feb 2023 00:00:00 +0000</pubDate>
      <guid>https://raveenkumar.com/library/programming/ffmpeg/</guid>
      <description>&lt;h2 id=&#34;basic-usage&#34;&gt;Basic usage&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;ffmpeg -i input.mp4 output.mp4&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;scale-video-to-height-1080p&#34;&gt;Scale video to height 1080p&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;ffmpeg -i input.mp4 -vf &amp;quot;scale=-2:1080&amp;quot; output.mp4&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;remove-audio-track-from-a-video-file&#34;&gt;Remove audio track from a video file&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;ffmpeg -i input.mp4 -an output.mp4&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;slow-down-a-video&#34;&gt;Slow down a video&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video&#34;&gt;https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;ffmpeg -i &amp;quot;$infile&amp;quot; -filter:v &amp;quot;setpts=2.0*PTS&amp;quot; &amp;quot;slowmo-$infile&amp;quot;&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;interpolate-videos-to-high-fps&#34;&gt;Interpolate videos to high fps&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;ffmpeg -i input.mkv -filter:v &amp;quot;minterpolate=&#39;mi_mode=mci:mc_mode=aobmc:vsbmc=1:fps=120&amp;quot; output.mkv&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;concat-video-files&#34;&gt;Concat video files&lt;/h2&gt;&#xA;&lt;pre&gt;&lt;code&gt;# mylist.txt file format&#xA;# this is a comment&#xA;file &#39;/path/to/file1.mp4&#39;&#xA;file &#39;/path/to/file2.mp4&#39;&#xA;file &#39;/path/to/file3.mp4&#39;&#xA;&#xA;ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;h2 id=&#34;cut-video-files&#34;&gt;Cut video files&lt;/h2&gt;&#xA;&lt;p&gt;Following example cuts a video from 5 seconds to 10 seconds and exports&#xA;it. Alternatively, use this software&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
