Skip to content

Instantly share code, notes, and snippets.

View brotherkaif's full-sized avatar

Kaif Ahmed brotherkaif

View GitHub Profile
@brotherkaif
brotherkaif / settings.json
Created September 12, 2023 17:19
LazyVim keymappings for VSCode
{
"vim.showMarksInGutter": false,
"vim.foldfix": true,
"vim.surround": true,
"vim.easymotion": true,
"vim.easymotionKeys": "asdghklqwertyuiopzxcvbnmfj",
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [":", "w", "<CR>"],
@brotherkaif
brotherkaif / 20170804_LearningFFmpeg_004
Created August 4, 2017 11:02
Snippet 4 for the blog post.
ffmpeg -ss 00:01:00 -i inputVIDEO.mp4 -i inputAUDIO.mp3 -map 0:0 -map 1:0 -vf "scale=iw*sar:ih,yadif,fps=fps=25,crop=in_h:in_h,scale=720:720" -shortest output.webm
@brotherkaif
brotherkaif / 20170804_LearningFFmpeg_003
Created August 4, 2017 11:01
Snippet 3 for the blog post.
ffmpeg -ss 00:01:00 -i inputVIDEO.mp4 -i inputAUDIO.mp3 -map 0:0 -map 1:0 -shortest output.webm
@brotherkaif
brotherkaif / 20170804_LearningFFmpeg_002
Created August 4, 2017 11:00
Snippet 2 for the blog post.
ffmpeg -ss 00:01:00 -i inputVIDEO.mp4 -t 00:00:30 output.webm
@brotherkaif
brotherkaif / 20170804_LearningFFmpeg_001
Created August 4, 2017 10:58
Snippet 1 for the blog post.
ffmpeg -i inputVIDEO.mp4 output.webm