Some practical applications of ffmpeg

Creating a blank video source ffmpeg -f lavfi -i color=c=black:s=1366×768:r=25/1 -f lavfi -i anullsrc=cl=mono:r=48000 -c:v h264 -c:a pcm_s16be -t 3 out.mov -y -c:v copy video -c:a copy audio for mp4 remove ‘-c:a pcm_s16be’ Because of Error Could not find tag for codec pcm_s16be ffmpeg -f lavfi -i color=c=black:s=1366×768:r=25/1 -f lavfi -i anullsrc=cl=mono:r=48000 -c:v h264 -t…

Solving common Issues with ffmpeg

Solving common Issues with ffmpeg Painfully slow file operations on ogg and opus files issue Whatsapp recorded files is saved as .ogg When downloaded to windows, it slows windows explorer Solution is Open Cmd go to downloads folder (C:\Users\user\Downloads) convert it to mp3 via ffmpeg delete original ogg file eg: cd downloads ffmpeg -i What.ogg…