Skip to content

Instantly share code, notes, and snippets.

View micielski's full-sized avatar

micielski micielski

  • Poland
  • 20:43 (UTC +02:00)
View GitHub Profile
@gsilano
gsilano / Instructions_FFMPEG.md
Last active November 20, 2023 21:13
This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program

Overview

This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program

To install ffmpeg

sudo apt-get update
sudo apt-get install ffmpeg
@leommoore
leommoore / file_magic_numbers.md
Last active June 17, 2024 09:39
File Magic Numbers

File Magic Numbers

Magic numbers are the first bits of a file which uniquely identify the type of file. This makes programming easier because complicated file structures need not be searched in order to identify the file type.

For example, a jpeg file starts with ffd8 ffe0 0010 4a46 4946 0001 0101 0047 ......JFIF.....G ffd8 shows that it's a JPEG file, and ffe0 identify a JFIF type structure. There is an ascii encoding of "JFIF" which comes after a length code, but that is not necessary in order to identify the file. The first 4 bytes do that uniquely.

This gives an ongoing list of file-type magic numbers.

Image Files