Skip to content

Instantly share code, notes, and snippets.

View arnabanimesh's full-sized avatar

Arnab Animesh Das arnabanimesh

View GitHub Profile

Since we're dealing with simpler AV1 encoding, that does mean we'll be eskewing aomenc-av1, since it requires 2-pass encoding to be able to take advantage of it, and I use it externally since I have access to a special build.

Now, let's get on with the simple guide.

You'll first need to be reasonably competent with command line builds or use a recent up to date ffmpeg GUI with support for SVT-AV1.

As such, I would recommend getting a master git ffmpeg build for the operating system of your choice right here:

https://github.com/BtbN/FFmpeg-Builds

@arnabanimesh
arnabanimesh / read_data.c
Last active January 10, 2023 20:59
read a file with three tab separated columns. Ignore the first column, the second column is a string, the third column is a number.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LINE_LENGTH 1024
typedef struct
{
char *SKU;
long *count;
@arnabanimesh
arnabanimesh / tsp_ortools.ipynb
Last active March 4, 2024 10:31
tsp implementations in or_tools (single core only, ORTools v9.9.3903, Ubuntu 22.04 LTS WSL2)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.