Aditya KrishnanforAditya Krishnan's Bloggetschwfty.hashnode.net·Jan 31, 2023Video Editors & Timeline Filmstrips - Part 1Hi there everyone, this is going to be my first blog on Hashnode among many. I like writing about niche topics, and today we will discuss one. Something that I have recently been working on. FILMSTRIPS! and how major online video editors like Kapwing...Discuss·60 likes·126 readsIn The DepthsFrontend Development
Donald FeuryforDonald Feurydfeury.hashnode.net·Jun 27, 2021Who even needs a GUI video editor when you have FFmpegSo I've been messing around with FFmpeg a lot to see how much video editing I can do without using an actual GUI video editor, so far it turns out that the answer is quite a bit. I go over three main common tasks I've needed to do recently with only ...DiscussFFmpeg
Donald FeuryforDonald Feurydfeury.hashnode.net·Jun 27, 2021Add Fade In and Fade Out Effects With FFmpegI figured out that you don't need to use a full-fledged video editor to apply some basic transition effects to video and audio. Using FFmpeg, you can apply basic fade in and fade out to video using the fade filter. For audio, the afade filter can b...Discuss·56 readsFFmpeg
Aditya KrishnanforAditya Krishnan's Bloggetschwfty.hashnode.net·Jan 31, 2023Video Editors & Timeline Filmstrips - Part 1Hi there everyone, this is going to be my first blog on Hashnode among many. I like writing about niche topics, and today we will discuss one. Something that I have recently been working on. FILMSTRIPS! and how major online video editors like Kapwing...Discuss·60 likes·126 readsIn The DepthsFrontend Development
Jeremy FielforGarage XPjeremyfiel.hashnode.net·Jan 7, 2023ffmpeg: download streams, trim video, concat filesDownload individual stream files ffmpeg -i <input-file> -c <codec> <output-file> Start with the ffmpeg command -i = input file <input-file> either a stream url or local file -c = codec to be used <codec>\= I always use copy to use the same codec as ...Discuss·29 readsconcat-files
Vishnu GRforxKern Dev Blogxkernroot-1650854343191.hashnode.net·Jan 2, 2023FFmpeg for common media tasks - converting, cutting, splicing, splitting, merging and moreDigital media consumption is an essential part of our lives today. You might use your digital camera or smartphone to take videos that you later decide to send to someone or keep them saved on your hard drive. But most new smartphones, by default rec...DiscussFFmpeg
Shane DuffyforShane Duffycppshane.hashnode.net·Dec 31, 2022Framr - Give Your Demo Video a Fancy Gaussian Blur FrameInitially I wrote an FFmpeg script to give my YouTube videos a Gaussian blur frame, but I realized FFmpeg had actually been ported to WebAssembly, so I made a little web app to do it all from the browser. Links Web App: framr.dev FFmpeg Script: fram...Discuss·26 readswebdev
PatriciaforNanoblogpati.hashnode.net·Dec 18, 20224 FFmpeg Tips: convert animated GIF to MP4 and back to animated GIFAbstract This tutorial provides a step-by-step guide on how to use FFmpeg, a free and open-source command-line tool, to convert an animated GIF to MP4 and back to animated GIF. The goal is to reduce the file size of the animated GIF while maintaining...Discuss·78 readsFFmpeg
Zimo LiforZimo Lizimo.hashnode.net·Dec 7, 2022Why is my Rust code blocking???Rust is a low-level programming language known for its performance and safety. We'll look at why my first attempt to use std::process resulted in blocking. Problem The code snippet below is an example of a Rust program that can potentially block. It ...Discuss·63 readsRust
EthanforDevelopment Diaryethan91.hashnode.net·Sep 24, 2022How to record webcam video and audio using ffmpegIntroduction Hello! 👋 In this tutorial I will show you how to use the ffmpeg command to record your webcams video and audio to an mp4 file. The Command The command is a pretty simple one liner. (Please note my machine is Linux so the format/input m...Discuss·55 readsFFmpeg
Donald FeuryforDonald Feurydfeury.hashnode.net·Aug 17, 2021How to replicate the output of the FullScreen template from StreamLadderStreamLadder is a nifty little tool for creating vertical versions of your Twitch clips for platforms like Tiktok and YouTube Shorts. However, I like tinkering with FFmpeg so I replicated the output with a simple command. If we look at the Fullscreen...DiscussFFmpeg
Donald FeuryforDonald Feurydfeury.hashnode.net·Jun 27, 2021Add Random Looping Background Music Using FFmpegSo recently I decided to try adding some background music to my videos so it isn't just me blathering the whole time. Naturally, I turn to my weapon of choice in these cases, FFmpeg. The music I use for this is from a project called StreamBeats, you ...DiscussFFmpeg
Donald FeuryforDonald Feurydfeury.hashnode.net·Jun 27, 2021Replace the Audio in a Video Using FFmpegI had someone email me asking how to solve the following problem: I would like to take video A, video B, and replace the audio in video A with the audio from video B The approach they were trying was as follows: Extract only the video from video A...DiscussFFmpeg