Skip to content

Instantly share code, notes, and snippets.

@jangid
jangid / Devanagari
Created March 10, 2019 08:03
Devanagari Characters
अ आ इ ई
उ ऊ ए ऐ
अं अः
क ख ग घ ड़
च छ ज झ ञ
ट ठ ड ढ ण
त थ द ध न
य र ल व
स श ष ह
Verifying my identity on Peepeth.com 0x04b518178aca18cdfed87dc908b1e78975718710

Keybase proof

I hereby claim:

  • I am jangid on github.
  • I am jangid (https://keybase.io/jangid) on keybase.
  • I have a public key whose fingerprint is 0B62 7424 3B26 A911 052A DDE6 7C95 6E6F F858 7689

To claim this, I am signing this object:

@jangid
jangid / ffmpeg
Created February 24, 2015 05:58
ffmpeg options I learned
1. To convert *.MOV file to *.MP4 i.e. changing the container format keeping the video encoding same and changing audio to aac
For single file
ffmpeg -i file.MOV -vcodec copy -acodec aac -strict experimental -b:a 256k file.MP4
For multiple files
for i in *.MOV ; do ffmpeg -i $i -vcodec copy -acodec aac -strict experimental -b:a 256k ${i%.MOV}.MP4; done