Skip to content

Instantly share code, notes, and snippets.

@SaiKDot
SaiKDot / gist:b2a4528a97dea68d6fa927cccfbb865c
Created July 11, 2025 17:54 — forked from tayvano/gist:6e2d456a9897f55025e25035478a3a50
complete list of ffmpeg flags / commands
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full.
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…
Getting help:
-h — print basic options
-h long — print more options
-h full — print all options (including all format and codec specific options, very long)
@SaiKDot
SaiKDot / iconextractor.cs
Created December 27, 2020 05:38 — forked from jbasinger/iconextractor.cs
Icon Extraction in Windows using NodeJS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Drawing;
using System.IO;
using Newtonsoft.Json;
@SaiKDot
SaiKDot / Program.cs
Last active December 27, 2020 05:32 — forked from bruceburge/Program.cs
Single file example of how to extract a higher resolution (256x256) png from windows file extension, note for this to compile, "allow unsafe code" flag will have to be checked [credit to : http://stackoverflow.com/a/28530403/1572750]
using System;
using System.Runtime.InteropServices;
using System.Drawing;
using System.Drawing.Imaging;
namespace ExtractBase64ExtIcon
{
class Program
{
//Working example as of 2017/05/19 on windows 10 x64