Apply Sliding Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter

Default Featured Image

Sliding Transition Between Multiple Videos Using xfade Filter Syntax/Format of Command Explanation Here video1.mp4 is the first video and video2.mp4 is the second video And in place of duration you can replace how much seconds you need to put of transition time And in place of offset you need to replace the offset time in seconds And then in place of fade_type you can replace many effects that xfade supports. They are listed … Read more

Apply Diagonal & Split Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter

Default Featured Image

Diagonal & Split Transition Between Multiple Videos Using xfade Filter Syntax/Format of Command Explanation Here video1.mp4 is the first video and video2.mp4 is the second video And in place of duration you can replace how much seconds you need to put of transition time And in place of offset you need to replace the offset time in seconds And then in place of fade_type you can replace many effects that xfade supports. They … Read more

Apply Circle Transition Effect Between Multiple Videos Using FFMPEG Command and xfade Filter

Default Featured Image

Circle Transition Between Multiple Videos Using xfade Filter Syntax/Format of Command Explanation Here video1.mp4 is the first video and video2.mp4 is the second video And in place of duration you can replace how much seconds you need to put of transition time And in place of offset you need to replace the offset time in seconds And then in place of fade_type you can replace many effects that xfade supports. They are listed … Read more

Export SVG to PNG/JPEG Image Using Node.js Express.js and SVGExport Module

Default Featured Image

What is svgexport? svgexport is a Node.js module and command-line tool for exporting SVG files to PNG and JPEG, it uses Puppeteer for rendering SVG files. Installation Usage Scale 1.5x proportionally: Scale proportionally to set output width to 32px: Scale proportionally and pad output to set output width:height to 32px:54px: Export -1:-1:24:24 (left:top:width:height) of input.svg to output.png: … Read more

PHP 7 Compile SCSS to CSS Code in Command Line Using scssphp Library

Default Featured Image

scssphp is a free and open source compiler for SCSS that is written using PHP programming language. Basically, SCSS is a CSS preprocessor language that gives us additional features like variables, functions, mixins, imports, control directives, nesting, and color manipulation. You can easily use scssphp in any existing or new PHP-based project. It is packed with a command line … Read more

Python Elasticsearch Autocomplete Input Example Source Code

Python Elasticsearch Autocomplete Input Example Source Code

In this tutorial, you’ll learn how to create an autocomplete functionality for search engines. Just like Google or Bing has implemented on their websites. The frontend is developed using Python Flask and HTML5 whereas the backend is powered by Elasticsearch. Folder Structure Backend api.py Frontend templates home.html app.py Backend/api.py Frontend/templates/home.html Frontend/app.py

Carbon Language Tutorial with Syntax and Code Examples

Carbon Language Tutorial with Syntax and Code Examples

Carbon is an open-source programming language developed by Google as a successor to C++. At the time of writing this tutorial, Carbon language is an experimental project. There is no working compiler or toolchain. You can see the demo interpreter for Carbon on compiler-explorer.com. Carbon Declarations Functions/Methods are declared using fn keyword. Variables are declared using var keyword. Variable names … Read more