{"id":2753,"date":"2022-08-10T00:53:24","date_gmt":"2022-08-09T19:53:24","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=2753"},"modified":"2022-08-10T03:16:53","modified_gmt":"2022-08-09T22:16:53","slug":"apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/","title":{"rendered":"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Sliding Transition Between Multiple Videos Using xfade Filter<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Syntax\/Format of Command<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;null&quot;,&quot;mime&quot;:&quot;text\/plain&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Plain Text&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;text&quot;}\">ffmpeg \\\n-i video1.mp4 \\\n-i video2.mp4 \\\n-filter_complex xfade=transition=&lt;FADE_TYPE&gt;:\\\nduration=&lt;TRANSITION_DURATION_IN_SECONDS&gt;:\\\noffset=&lt;OFFSET_RELATIVE_TO_FIRST_STREAM_IN_SECONDS&gt; \\\noutputVideo.mp4<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Explanation<\/h3>\n\n\n\n<p>Here&nbsp;<code>video1.mp4<\/code>&nbsp;is the first video and&nbsp;<code>video2.mp4<\/code>&nbsp;is the second video<\/p>\n\n\n\n<p>And in place of&nbsp;<code>duration<\/code>&nbsp;you can replace how much&nbsp;<code>seconds<\/code>&nbsp;you need to put of&nbsp;<code>transition<\/code>&nbsp;time<\/p>\n\n\n\n<p>And in place of&nbsp;<code>offset<\/code>&nbsp;you need to replace the&nbsp;<code>offset<\/code>&nbsp;time in seconds<\/p>\n\n\n\n<p>And then in place of&nbsp;<code>fade_type<\/code>&nbsp;you can replace many effects that&nbsp;<code>xfade<\/code>&nbsp;supports. They are listed are as follows<\/p>\n\n\n\n<p><code>Sliding<\/code>&nbsp;filter :-&gt; One such filter is&nbsp;<code>Sliding<\/code>&nbsp;<code>transition<\/code>&nbsp;filter. The command will look something like this<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">slidedown Transition using FFmpeg<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">ffmpeg -i inputVideo1.mp4 -i inputVideo2.mp4 -filter_complex xfade=transition=slidedown:duration=5:offset=0 slidedownVideo.mp4<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">slideup transition command in FFMPEG<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">ffmpeg -i inputVideo1.mp4 -i inputVideo2.mp4 -filter_complex xfade=transition=slideup:duration=5:offset=0 slideupVideo.mp4<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">slideleft transition command in FFMPEG<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">ffmpeg -i inputVideo1.mp4 -i inputVideo2.mp4 -filter_complex xfade=transition=slideleft:duration=5:offset=0 slideleftVideo.mp4<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">slideright transition command in FFMPEG<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">ffmpeg -i inputVideo1.mp4 -i inputVideo2.mp4 -filter_complex xfade=transition=slideright:duration=5:offset=0 sliderightVideo.mp4<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Sliding Transition Between Multiple Videos Using xfade Filter Syntax\/Format of Command Explanation Here&nbsp;video1.mp4&nbsp;is the first video and&nbsp;video2.mp4&nbsp;is the second video And in place of&nbsp;duration&nbsp;you can replace how much&nbsp;seconds&nbsp;you need to put of&nbsp;transition&nbsp;time And in place of&nbsp;offset&nbsp;you need to replace the&nbsp;offset&nbsp;time in seconds And then in place of&nbsp;fade_type&nbsp;you can replace many effects that&nbsp;xfade&nbsp;supports. They are listed &#8230; <a title=\"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/\" aria-label=\"Read more about Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-2753","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter<\/title>\n<meta name=\"description\" content=\"Sliding Transition Between Multiple Videos Using xfade Filter Syntax\/Format of Command ffmpeg  -i video1.mp4  -i video2.mp4  -filter_complex\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter\" \/>\n<meta property=\"og:description\" content=\"Sliding Transition Between Multiple Videos Using xfade Filter Syntax\/Format of Command ffmpeg  -i video1.mp4  -i video2.mp4  -filter_complex\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-09T19:53:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-09T22:16:53+00:00\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter","description":"Sliding Transition Between Multiple Videos Using xfade Filter Syntax\/Format of Command ffmpeg  -i video1.mp4  -i video2.mp4  -filter_complex","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/","og_locale":"en_US","og_type":"article","og_title":"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter","og_description":"Sliding Transition Between Multiple Videos Using xfade Filter Syntax\/Format of Command ffmpeg  -i video1.mp4  -i video2.mp4  -filter_complex","og_url":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-08-09T19:53:24+00:00","article_modified_time":"2022-08-09T22:16:53+00:00","author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter","datePublished":"2022-08-09T19:53:24+00:00","dateModified":"2022-08-09T22:16:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/"},"wordCount":137,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/","url":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/","name":"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-08-09T19:53:24+00:00","dateModified":"2022-08-09T22:16:53+00:00","description":"Sliding Transition Between Multiple Videos Using xfade Filter Syntax\/Format of Command ffmpeg \\ -i video1.mp4 \\ -i video2.mp4 \\ -filter_complex","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/apply-sliding-transition-effect-between-multiple-videos-using-ffmpeg-command-and-xfade-filter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2753","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=2753"}],"version-history":[{"count":0,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2753\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=2753"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=2753"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=2753"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}