Batch script for converting mp4 to gif using ffmpeg
Here is the batch script: @echo off for %%i in (*.mp4) do ( ffmpeg.exe -i "%%i" "%%i".gif move "%%i".gif gif move "%%i" mp4 )
Here is the batch script: @echo off for %%i in (*.mp4) do ( ffmpeg.exe -i "%%i" "%%i".gif move "%%i".gif gif move "%%i" mp4 )
All You need is to call in terminal this: grep Revision /proc/cpuinfo After You get something like this: Revision : a22082 Go to page https://www.raspberrypi.org/documentation/hardware/raspberrypi/revision-codes/README.md and search it in text.…
Go to %AppData%\Notepad++\themes Place Material-Black.xml inside that folder and restart Notepad++ Dracula will be available in Settings > Style Configurator Download file Material-Black.xml
Run it in terminal or powershell: ie4uinit.exe -ClearIconCache And then restart explorer.exe After all you should see updated icon in taskbar.
du -xh / |grep '^\S*\+G'|sort -rn More info here.
ffmpeg -i input.mkv -c:v libx265 -crf 23 output.mkv If selecting video and audio is important for us, then we call first the code below to find out on what…
In the terminal type: sudo nano /etc/wpa_supplicant/wpa_supplicant.conf Delete the relevant wifi network block (including the ‘network=’ and opening/closing braces.
for %%f in (*.m4a) do ( ffmpeg -i "%%f" -acodec libmp3lame -ab 320k "%%f.mp3" )
for %%f in (*.m4a) do ( ffmpeg -loop 1 -i bear.jpg -i "%%f" -c:a aac -c:v libx264 -crf 0 -preset veryfast -shortest "video-%%f.mp4" )
Enable rc.local if missing sudo touch /etc/rc.local sudo chmod +x /etc/rc.local sudo systemctl start rc-local sudo systemctl status rc-local Insert Your script command into rc.local, my was like below. You can delete sample…