Skip to content

Instantly share code, notes, and snippets.

@qaosipov
qaosipov / webm-2-mp4.sh
Created July 8, 2020 17:27
Converting WebM to MP4 Using FFmpeg
# https://blog.addpipe.com/converting-webm-to-mp4-with-ffmpeg/
ffmpeg -i video.webm video.mp4
@qaosipov
qaosipov / hide_bash_output.sh
Created June 24, 2020 12:06
Hide bash output
command &>/dev/null # best way
command >/dev/null 2>&1 # longer way
: $(command) # do nothing with STDOUT
true $(command) # longer way