taylorsheridanking
Newbie
- Feb 28, 2023
- 34
- 33
To use this commands, you need install free ffmpeg software.
The first command its for zoom in and zoom out
actually,this 2 works better
modify +50 and -40 for best result.
The second one to create "radio" effect on audio
separate audio and video -
The first command its for zoom in and zoom out
ffmpeg -i VIDEO.mp4 -vf "zoompan=z='if(lte(mod(time,10),3),2,1)':d=1:x=iw/2-(iw/zoom/2):y=ih/2-(ih/zoom/2):fps=29.97" video_result.mp4
actually,this 2 works better
modify +50 and -40 for best result.
ffmpeg -i input.mp4 -vf "zoompan=z='if(lte(mod(time,10),3),2,1)':d=1:x=iw/3.5-(iw/zoom/3.5)+50:y=ih/3.5-(ih/zoom/3.5)-40:fps=29.97" -an zomed.mp4
ffmpeg -i input.mp4 -vf "zoompan=z='if(lte(mod(time,10),4),2,1)':d=1:x=iw/2-(iw/zoom/2):y=ih/2-(ih/zoom/2):fps=29.97" zoomed.mp4
The second one to create "radio" effect on audio
ffmpeg -i AUDIO.mp3 -filter:a "highpass=f=1375.4,volume=12.3dB" audio_result.mp3
separate audio and video -
ffmpeg -i input.mp4 audio.mp3