A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
// sleep.js | |
const sleep = async (time = 1000) => | |
{ | |
return await new Promise((res) => { | |
setTimeout(() => { | |
res(); | |
}, time); | |
}); | |
}; |
#!/bin/zsh -df | |
# Et voila! | |
# No more typing in the same repository owner/repo twice after running | |
#`gh repo create` | |
function copy_that_last_repo_address() { | |
if ! command -v gh &>/dev/null; then | |
echo "gh command not found. Please install GitHub CLI." |
#!/usr/bin/env node | |
// Open ("Google") Search in your default browser from your CLI. | |
// Check if search terms were provided | |
if (process.argv.length <= 2) { | |
console.log('Usage: gsearch [search terms]'); | |
process.exit(1); | |
} |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html