In short, here is the snippet converting parameter from POST/GET to boolean:
Batch script for converting mp4 to gif using ffmpeg
Here is the batch script:
ffmpeg Converting i.e 10GB movie into 2GB
ffmpeg -i input.mkv -c:v libx265 -crf 23 output.mkv If selecting video and audio is […]
ffmpeg converting m4a to mp3 – windows batch script
for %%f in (*.m4a) do ( Â ffmpeg -i “%%f” -acodec libmp3lame -ab 320k “%%f.mp3” ) […]
ffmpeg converting music to video (for youtube) – windows batch script
for %%f in (*.m4a) do ( ffmpeg -loop 1 -i bear.jpg -i “%%f” -c:a aac […]
ffmpeg add hardcoded subtitles to video
This command converts video to video with hardcoded subtitles with forced font size 30 with […]
Helper to compare i.e two months in different years
This method will help in comparing two dates by trimming date format to our specific […]
Simple script epub to mobi
Here is simple script in bash to covert epub to mobi. #!/bin/bash clear; for entry […]
Converting transparency color to hex
Here is very interesting post I have found on stackoverflow. I though it is worth […]