<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=3706&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [HowTo] Merge videos with ffmpeg]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=3706</link>
		<description><![CDATA[The most recent posts in [HowTo] Merge videos with ffmpeg.]]></description>
		<lastBuildDate>Wed, 29 Jul 2020 12:30:59 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[[HowTo] Merge videos with ffmpeg]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=23694#p23694</link>
			<description><![CDATA[<p>FFmpeg is a collection of open source software intended for processing audio or video streams. <a href="https://ffmpeg.org/" rel="nofollow">Source</a></p><p><span style="color: #00BF00">Be sure that you have the last version of ffmpeg:</span></p><div class="codebox"><pre><code>ffmpeg -version</code></pre></div><p>You will see an output of your version, in my case i have the last stable version 4.1.6.</p><p><span style="color: #00BF00">No output??? Whaaaat!!! Don&#039;t panic on the Titanic, we need just to install the package:</span></p><div class="codebox"><pre><code>sudo apt update &amp;&amp; sudo apt upgrade -y
sudo apt install ffmpeg -y</code></pre></div><p><span style="color: #00BF00">Go to the Videos folder and we create an file like this, necessary to concat later:</span></p><div class="codebox"><pre><code>file &#039;/path_to_my_file/part1.mp4&#039;
file &#039;//path_to_my_file/part2.mp4&#039;
file &#039;/=/path_to_my_file/part3.mp4&#039;</code></pre></div><p>then save the file with a name of your choice in .txt output, in my example merge.txt.</p><p><span style="color: #40BF00">Now we can merge our vids, the per-file main options retained are:</span></p><p>-f input/output with the concat option<br />-i input file or url<br />-c codec or stream output with the copy option</p><div class="codebox"><pre><code> ffmpeg -f concat -safe 0 -i merge.txt -c copy my_vids.mp4</code></pre></div><p>After a few moments you can see your new merged video.</p><p>Enjoy! <img src="https://dev1galaxy.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p><a href="https://askubuntu.com/a/1174458" rel="nofollow">Source</a></p>]]></description>
			<author><![CDATA[dummy@example.com (wingcommander1999)]]></author>
			<pubDate>Wed, 29 Jul 2020 12:30:59 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=23694#p23694</guid>
		</item>
	</channel>
</rss>
