Skip to content

Instantly share code, notes, and snippets.

View JeffIrwin's full-sized avatar
:octocat:
tacocattacocat

Jeff Irwin JeffIrwin

:octocat:
tacocattacocat
View GitHub Profile
@BjoernSchilberg
BjoernSchilberg / create_wave_file.c
Created December 23, 2023 19:36
How to Write a Wav File in C
// main.c
// https://www.youtube.com/watch?v=8nOi-0kBv2Y
// gcc create_wave_file.c -o create_wave_file -lm
// or clang create_wave_file.c -lm
#include <math.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
@n-s-k
n-s-k / OOP_F2003_Part_1.md
Last active November 25, 2025 15:33
Object-Oriented Programming in Fortran 2003 Part 1: Code Reusability
@mikoim
mikoim / README.md
Last active October 2, 2025 02:55
[Updated! Aug 14 2020] YouTube recommended encoding settings on ffmpeg (+ libx264)

Parameters

Container: MP4

Parameter YouTube recommends setting
-movflags faststart moov atom at the front of the file (Fast Start)

Video codec: H.264