Skip to content

Instantly share code, notes, and snippets.

View Palakis's full-sized avatar

Stéphane Lepin Palakis

View GitHub Profile
@BlueSwordM
BlueSwordM / Simple SVT-AV1 Beginner Guide Part 1.md
Last active July 19, 2025 04:59
Simple SVT-AV1 Beginner Guide Part 1

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

@bugproof
bugproof / Program.cs
Last active February 6, 2023 00:52
Reverse engineered spotify realtime player notifications https://user-images.githubusercontent.com/3116731/60773452-3ace8700-a106-11e9-9092-782aab26626a.png Works only with discord and official spotify access token (capture with chrome or firefox DevTools)
using System;
using System.Threading;
using System.Threading.Tasks;
using System.Net.WebSockets;
using Websocket.Client;
using Newtonsoft.Json;
using System.Net.Http;
using System.Net.Http.Headers;
namespace SpotifyPlayerState